You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sidebars.js 2.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /**
  2. * Creating a sidebar enables you to:
  3. - create an ordered group of docs
  4. - render a sidebar for each doc of that group
  5. - provide next/previous navigation
  6. The sidebars can be generated from the filesystem, or explicitly defined here.
  7. Create as many sidebars as you want.
  8. */
  9. module.exports = {
  10. docsSidebar: [
  11. 'Getting-Started',
  12. {
  13. type: "category",
  14. label: "Installation",
  15. collapsed: true,
  16. items: ["installation/Docker", "installation/Optional-Dependencies"],
  17. link: {
  18. type: 'doc',
  19. id: "installation/Installation"
  20. },
  21. },
  22. {
  23. type: 'category',
  24. label: 'Tutorial',
  25. items: [
  26. {
  27. type: 'doc',
  28. id: 'tutorial/introduction',
  29. label: 'Introduction',
  30. },
  31. {
  32. type: 'doc',
  33. id: 'tutorial/chat-termination',
  34. label: 'Chat Termination',
  35. },
  36. {
  37. type: 'doc',
  38. id: 'tutorial/human-in-the-loop',
  39. label: 'Human in the Loop',
  40. },
  41. {
  42. type: 'doc',
  43. id: 'tutorial/code-executors',
  44. label: 'Code Executors',
  45. },
  46. {
  47. type: 'doc',
  48. id: 'tutorial/tool-use',
  49. label: 'Tool Use',
  50. },
  51. {
  52. type: 'doc',
  53. id: 'tutorial/conversation-patterns',
  54. label: 'Conversation Patterns',
  55. },
  56. {
  57. type: 'doc',
  58. id: 'tutorial/what-next',
  59. label: 'What Next?',
  60. }
  61. ],
  62. },
  63. {'Use Cases': [{type: 'autogenerated', dirName: 'Use-Cases'}]},
  64. {
  65. type: 'category',
  66. label: 'Topics',
  67. link: {
  68. type: 'generated-index',
  69. title: 'Topics',
  70. description: 'Learn about various topics in AutoGen',
  71. slug: 'topics',
  72. },
  73. items: [{type: 'autogenerated', dirName: 'topics'}]
  74. },
  75. 'Contribute',
  76. 'Research',
  77. {'Ecosystem': [{type: 'autogenerated', dirName: 'ecosystem'}]},
  78. 'Migration-Guide'
  79. ],
  80. // pydoc-markdown auto-generated markdowns from docstrings
  81. referenceSideBar: [require("./docs/reference/sidebar.json")],
  82. notebooksSidebar: [
  83. {
  84. type: "category",
  85. label: "Notebooks",
  86. items: [{
  87. type: "autogenerated",
  88. dirName: "notebooks",
  89. },],
  90. link: {
  91. type: 'doc',
  92. id: "notebooks"
  93. },
  94. },
  95. ]
  96. };