sidebars.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. },
  45. ],
  46. },
  47. {
  48. type: 'doc',
  49. label: 'Troubleshooting',
  50. id: 'usage/troubleshooting/troubleshooting',
  51. },
  52. {
  53. type: 'doc',
  54. label: 'Feedback',
  55. id: 'usage/feedback',
  56. },
  57. {
  58. type: 'category',
  59. label: 'How-to Guides',
  60. items: [
  61. {
  62. type: 'doc',
  63. id: 'usage/how-to/cli-mode',
  64. },
  65. {
  66. type: 'doc',
  67. id: 'usage/how-to/headless-mode',
  68. },
  69. {
  70. type: 'doc',
  71. id: 'usage/how-to/custom-sandbox-guide',
  72. },
  73. {
  74. type: 'doc',
  75. id: 'usage/how-to/evaluation-harness',
  76. },
  77. {
  78. type: 'doc',
  79. id: 'usage/how-to/openshift-example',
  80. }
  81. ]
  82. },
  83. {
  84. type: 'category',
  85. label: 'Architecture',
  86. items: [
  87. {
  88. type: 'doc',
  89. label: 'Backend',
  90. id: 'usage/architecture/backend',
  91. },
  92. {
  93. type: 'doc',
  94. label: 'Runtime',
  95. id: 'usage/architecture/runtime',
  96. }
  97. ],
  98. },
  99. {
  100. type: 'doc',
  101. label: 'About',
  102. id: 'usage/about',
  103. }
  104. ],
  105. };
  106. export default sidebars;