sidebars.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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: 'Groq',
  57. id: 'usage/llms/groq',
  58. }, {
  59. type: 'doc',
  60. label: 'Local/ollama',
  61. id: 'usage/llms/local-llms',
  62. }],
  63. }, {
  64. type: 'category',
  65. label: 'Architecture',
  66. items: [{
  67. type: 'doc',
  68. label: 'Backend',
  69. id: 'usage/architecture/backend',
  70. }, {
  71. type: 'doc',
  72. label: 'Runtime',
  73. id: 'usage/architecture/runtime',
  74. }],
  75. }, {
  76. type: 'doc',
  77. label: 'About',
  78. id: 'usage/about',
  79. }],
  80. };
  81. export default sidebars;