mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-27 17:18:03 -05:00
* update intro * update intro * tutorial * update notebook * update notebooks * update * merge * add conversation patterns * rename; delete unused files. * Reorganize new guides * Improve intro, fix typos * add what is next * outline for code executor * initiate chats png * Improve language * Improve language of human in the loop tutorial * update * update * Update group chat * code executor * update convsersation patterns * update code executor section to use legacy code executor * update conversation pattern * redirect * update figures * update whats next * Break down chapter 2 into two chapters * udpate * fix website build * Minor corrections of typos and grammar. * remove broken links, update sidebar * code executor update * Suggest changes to the code executor section * update what is next * reorder * update getting started * title * update navbar * Delete website/docs/tutorial/what-is-next.ipynb * update conversable patterns * Improve language * Fix typo * minor fixes --------- Co-authored-by: Jack Gerrits <jack@jackgerrits.com> Co-authored-by: gagb <gagb@users.noreply.github.com> Co-authored-by: Joshua Kim <joshua@spectdata.com> Co-authored-by: Jack Gerrits <jackgerrits@users.noreply.github.com>
95 lines
2.2 KiB
JavaScript
95 lines
2.2 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
module.exports = {
|
|
docsSidebar: [
|
|
'Getting-Started',
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorial',
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/introduction',
|
|
label: 'Introduction',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/termination',
|
|
label: 'Termination',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/human-in-the-loop',
|
|
label: 'Human in the Loop',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/code-executors',
|
|
label: 'Code Executors',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/conversation-patterns',
|
|
label: 'Conversation Patterns',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'tutorial/what-is-next',
|
|
label: 'What is Next?',
|
|
}
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Installation",
|
|
collapsed: true,
|
|
items: ["installation/Docker", "installation/Optional-Dependencies"],
|
|
link: {
|
|
type: 'doc',
|
|
id: "installation/Installation"
|
|
},
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Topics',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Topics',
|
|
description: 'Learn about various topics in AutoGen',
|
|
slug: 'topics',
|
|
},
|
|
items: [{type: 'autogenerated', dirName: 'topics'}]},
|
|
{'Use Cases': [{type: 'autogenerated', dirName: 'Use-Cases'}]},
|
|
'Contribute',
|
|
'Research',
|
|
{'Ecosystem': [{type: 'autogenerated', dirName: 'ecosystem'}]},
|
|
'Migration-Guide'
|
|
],
|
|
// pydoc-markdown auto-generated markdowns from docstrings
|
|
referenceSideBar: [require("./docs/reference/sidebar.json")],
|
|
notebooksSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Notebooks",
|
|
items: [{
|
|
type: "autogenerated",
|
|
dirName: "notebooks",
|
|
},],
|
|
link: {
|
|
type: 'doc',
|
|
id: "notebooks"
|
|
},
|
|
},
|
|
|
|
]
|
|
};
|