mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* update badges * fix badges * better badges * move credits * more badge work * add gh logo * update some copy * update logo * fix height * update text * emdash * remove cruft * move title * update links * add hr * white logo * move some stuff to getting-started * revert logo * more copy changes * minor tweaks * fix sidebar * explicit sidebar * words * fix tag * fix how-to * more docs work * update styles * fix up custom sandbox docs * change eval title * fix up getting-started * fix getting started * update to 0.9.2 * update screenshot * add company link * fix dark mode * minor fixes * update image * update headless and cli docs * update readme * fix links * revert package * rename links * fix links * fix link * chagne to claude
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
apiSidebar: [require("./modules/python/sidebar.json")],
|
|
docsSidebar: [{
|
|
type: 'doc',
|
|
label: 'Getting Started',
|
|
id: 'usage/getting-started',
|
|
}, {
|
|
type: 'doc',
|
|
label: 'Troubleshooting',
|
|
id: 'usage/troubleshooting/troubleshooting',
|
|
}, {
|
|
type: 'doc',
|
|
label: 'Feedback',
|
|
id: 'usage/feedback',
|
|
}, {
|
|
type: 'category',
|
|
label: 'How-to Guides',
|
|
items: [{
|
|
type: 'doc',
|
|
id: 'usage/how-to/cli-mode',
|
|
}, {
|
|
type: 'doc',
|
|
id: 'usage/how-to/headless-mode',
|
|
}, {
|
|
type: 'doc',
|
|
id: 'usage/how-to/custom-sandbox-guide',
|
|
}, {
|
|
type: 'doc',
|
|
id: 'usage/how-to/evaluation-harness',
|
|
}, {
|
|
type: 'doc',
|
|
id: 'usage/how-to/openshift-example',
|
|
}]
|
|
}, {
|
|
type: 'doc',
|
|
label: 'LLMs',
|
|
id: 'usage/llms/llms',
|
|
}, {
|
|
type: 'doc',
|
|
label: 'Architecture',
|
|
id: 'usage/architecture/architecture',
|
|
}, {
|
|
type: 'doc',
|
|
label: 'About',
|
|
id: 'usage/about',
|
|
}],
|
|
};
|
|
|
|
export default sidebars;
|