sidebars.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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: 'category',
  12. label: 'LLMs',
  13. items: [
  14. {
  15. type: 'doc',
  16. label: 'Overview',
  17. id: 'usage/llms/llms',
  18. },
  19. {
  20. type: 'category',
  21. label: 'Providers',
  22. items: [
  23. {
  24. type: 'doc',
  25. label: 'Azure',
  26. id: 'usage/llms/azure-llms',
  27. },
  28. {
  29. type: 'doc',
  30. label: 'Google',
  31. id: 'usage/llms/google-llms',
  32. },
  33. {
  34. type: 'doc',
  35. label: 'Groq',
  36. id: 'usage/llms/groq',
  37. },
  38. {
  39. type: 'doc',
  40. label: 'OpenAI',
  41. id: 'usage/llms/openai-llms',
  42. },
  43. {
  44. type: 'doc',
  45. label: 'OpenRouter',
  46. id: 'usage/llms/openrouter',
  47. },
  48. ],
  49. },
  50. ],
  51. },
  52. {
  53. type: 'doc',
  54. label: 'Troubleshooting',
  55. id: 'usage/troubleshooting/troubleshooting',
  56. },
  57. {
  58. type: 'doc',
  59. label: 'Feedback',
  60. id: 'usage/feedback',
  61. },
  62. {
  63. type: 'category',
  64. label: 'How-to Guides',
  65. items: [
  66. {
  67. type: 'doc',
  68. id: 'usage/how-to/cli-mode',
  69. },
  70. {
  71. type: 'doc',
  72. id: 'usage/how-to/headless-mode',
  73. },
  74. {
  75. type: 'doc',
  76. id: 'usage/how-to/custom-sandbox-guide',
  77. },
  78. {
  79. type: 'doc',
  80. id: 'usage/how-to/evaluation-harness',
  81. },
  82. {
  83. type: 'doc',
  84. id: 'usage/how-to/openshift-example',
  85. },
  86. {
  87. type: 'doc',
  88. id: 'usage/how-to/debugging',
  89. }
  90. ]
  91. },
  92. {
  93. type: 'category',
  94. label: 'Architecture',
  95. items: [
  96. {
  97. type: 'doc',
  98. label: 'Backend',
  99. id: 'usage/architecture/backend',
  100. },
  101. {
  102. type: 'doc',
  103. label: 'Runtime',
  104. id: 'usage/architecture/runtime',
  105. }
  106. ],
  107. },
  108. {
  109. type: 'doc',
  110. label: 'About',
  111. id: 'usage/about',
  112. }
  113. ],
  114. };
  115. export default sidebars;