sidebars.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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: 'category',
  37. label: 'LLMs',
  38. items: [{
  39. type: 'doc',
  40. label: 'Overview',
  41. id: 'usage/llms/llms',
  42. }, {
  43. type: 'doc',
  44. label: 'OpenAI',
  45. id: 'usage/llms/openai-llms',
  46. }, {
  47. type: 'doc',
  48. label: 'Azure',
  49. id: 'usage/llms/azure-llms',
  50. }, {
  51. type: 'doc',
  52. label: 'Google',
  53. id: 'usage/llms/google-llms',
  54. }, {
  55. type: 'doc',
  56. label: 'Local/ollama',
  57. id: 'usage/llms/local-llms',
  58. }],
  59. }, {
  60. type: 'category',
  61. label: 'Architecture',
  62. items: [{
  63. type: 'doc',
  64. label: 'Backend',
  65. id: 'usage/architecture/backend',
  66. }, {
  67. type: 'doc',
  68. label: 'Runtime',
  69. id: 'usage/architecture/runtime',
  70. }],
  71. }, {
  72. type: 'doc',
  73. label: 'About',
  74. id: 'usage/about',
  75. }],
  76. };
  77. export default sidebars;