sidebars.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
  2. const sidebars: SidebarsConfig = {
  3. apiSidebar: [require("./modules/python/sidebar.json")],
  4. docsSidebar: [{
  5. type: 'doc',
  6. label: 'Getting Started',
  7. id: 'usage/getting-started',
  8. }, {
  9. type: 'doc',
  10. label: 'Troubleshooting',
  11. id: 'usage/troubleshooting/troubleshooting',
  12. }, {
  13. type: 'doc',
  14. label: 'Feedback',
  15. id: 'usage/feedback',
  16. }, {
  17. type: 'category',
  18. label: 'How-to Guides',
  19. items: [{
  20. type: 'doc',
  21. id: 'usage/how-to/cli-mode',
  22. }, {
  23. type: 'doc',
  24. id: 'usage/how-to/headless-mode',
  25. }, {
  26. type: 'doc',
  27. id: 'usage/how-to/custom-sandbox-guide',
  28. }, {
  29. type: 'doc',
  30. id: 'usage/how-to/evaluation-harness',
  31. }, {
  32. type: 'doc',
  33. id: 'usage/how-to/openshift-example',
  34. }]
  35. }, {
  36. type: 'doc',
  37. label: 'LLMs',
  38. id: 'usage/llms/llms',
  39. }, {
  40. type: 'doc',
  41. label: 'Architecture',
  42. id: 'usage/architecture/architecture',
  43. }, {
  44. type: 'doc',
  45. label: 'About',
  46. id: 'usage/about',
  47. }],
  48. };
  49. export default sidebars;