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: '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: 'OpenAI',
  26. id: 'usage/llms/openai-llms',
  27. },
  28. {
  29. type: 'doc',
  30. label: 'Azure',
  31. id: 'usage/llms/azure-llms',
  32. },
  33. {
  34. type: 'doc',
  35. label: 'Google',
  36. id: 'usage/llms/google-llms',
  37. },
  38. {
  39. type: 'doc',
  40. label: 'Groq',
  41. id: 'usage/llms/groq',
  42. },
  43. {
  44. type: 'doc',
  45. label: 'Local/ollama',
  46. id: 'usage/llms/local-llms',
  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. },
  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;