sidebars.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
  2. const sidebars: SidebarsConfig = {
  3. apiSidebar: [require("./modules/python/sidebar.json")],
  4. docsSidebar: [
  5. {
  6. type: 'doc',
  7. label: 'Getting Started',
  8. id: 'usage/getting-started',
  9. },
  10. {
  11. type: 'doc',
  12. label: 'Troubleshooting',
  13. id: 'usage/troubleshooting/troubleshooting',
  14. },
  15. {
  16. type: 'doc',
  17. label: 'Feedback',
  18. id: 'usage/feedback',
  19. },
  20. {
  21. type: 'category',
  22. label: 'How-to Guides',
  23. items: [
  24. {
  25. type: 'doc',
  26. id: 'usage/how-to/cli-mode',
  27. },
  28. {
  29. type: 'doc',
  30. id: 'usage/how-to/headless-mode',
  31. },
  32. {
  33. type: 'doc',
  34. id: 'usage/how-to/custom-sandbox-guide',
  35. },
  36. {
  37. type: 'doc',
  38. id: 'usage/how-to/evaluation-harness',
  39. },
  40. {
  41. type: 'doc',
  42. id: 'usage/how-to/openshift-example',
  43. }
  44. ]
  45. },
  46. {
  47. type: 'category',
  48. label: 'LLMs',
  49. items: [
  50. {
  51. type: 'doc',
  52. label: 'Overview',
  53. id: 'usage/llms/llms',
  54. },
  55. {
  56. type: 'category',
  57. label: 'Providers',
  58. items: [
  59. {
  60. type: 'doc',
  61. label: 'OpenAI',
  62. id: 'usage/llms/openai-llms',
  63. },
  64. {
  65. type: 'doc',
  66. label: 'Azure',
  67. id: 'usage/llms/azure-llms',
  68. },
  69. {
  70. type: 'doc',
  71. label: 'Google',
  72. id: 'usage/llms/google-llms',
  73. },
  74. {
  75. type: 'doc',
  76. label: 'Groq',
  77. id: 'usage/llms/groq',
  78. },
  79. {
  80. type: 'doc',
  81. label: 'Local/ollama',
  82. id: 'usage/llms/local-llms',
  83. }
  84. ],
  85. },
  86. ],
  87. },
  88. {
  89. type: 'category',
  90. label: 'Architecture',
  91. items: [
  92. {
  93. type: 'doc',
  94. label: 'Backend',
  95. id: 'usage/architecture/backend',
  96. },
  97. {
  98. type: 'doc',
  99. label: 'Runtime',
  100. id: 'usage/architecture/runtime',
  101. }
  102. ],
  103. },
  104. {
  105. type: 'doc',
  106. label: 'About',
  107. id: 'usage/about',
  108. }
  109. ],
  110. };
  111. export default sidebars;