2021-12-17 09:11:33 +08:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2024-06-10 11:29:34 +08:00
|
|
|
module.exports = {
|
2021-12-17 09:11:33 +08:00
|
|
|
docsSidebar: [
|
2024-06-10 11:29:34 +08:00
|
|
|
"Getting-Started",
|
2024-03-18 06:57:54 +08:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Installation",
|
|
|
|
collapsed: true,
|
|
|
|
items: ["installation/Docker", "installation/Optional-Dependencies"],
|
|
|
|
link: {
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "installation/Installation",
|
2024-03-18 06:57:54 +08:00
|
|
|
},
|
|
|
|
},
|
2024-03-10 01:45:58 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "category",
|
|
|
|
label: "Tutorial",
|
2024-04-02 02:32:41 +08:00
|
|
|
collapsed: false,
|
|
|
|
link: {
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "generated-index",
|
|
|
|
title: "Tutorial",
|
|
|
|
description: "Tutorial on the basic concepts of AutoGen",
|
|
|
|
slug: "tutorial",
|
2024-04-02 02:32:41 +08:00
|
|
|
},
|
2024-03-10 01:45:58 +08:00
|
|
|
items: [
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/introduction",
|
|
|
|
label: "Introduction",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/chat-termination",
|
|
|
|
label: "Chat Termination",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/human-in-the-loop",
|
|
|
|
label: "Human in the Loop",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/code-executors",
|
|
|
|
label: "Code Executors",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
2024-03-21 03:31:58 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/tool-use",
|
|
|
|
label: "Tool Use",
|
2024-03-21 03:31:58 +08:00
|
|
|
},
|
2024-03-10 01:45:58 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/conversation-patterns",
|
|
|
|
label: "Conversation Patterns",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "tutorial/what-next",
|
|
|
|
label: "What Next?",
|
|
|
|
},
|
2024-03-10 01:45:58 +08:00
|
|
|
],
|
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
{ "Use Cases": [{ type: "autogenerated", dirName: "Use-Cases" }] },
|
2024-03-10 01:45:58 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "category",
|
|
|
|
label: "User Guide",
|
2024-04-02 02:32:41 +08:00
|
|
|
collapsed: false,
|
2024-03-10 01:45:58 +08:00
|
|
|
link: {
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "generated-index",
|
|
|
|
title: "User Guide",
|
|
|
|
slug: "topics",
|
2024-03-10 01:45:58 +08:00
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
items: [{ type: "autogenerated", dirName: "topics" }],
|
2024-03-18 06:57:54 +08:00
|
|
|
},
|
2024-04-02 02:32:41 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "link",
|
|
|
|
label: "API Reference",
|
|
|
|
href: "/docs/reference/agentchat/conversable_agent",
|
2024-04-02 02:32:41 +08:00
|
|
|
},
|
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
label: "FAQs",
|
|
|
|
id: "FAQ",
|
2024-04-02 02:32:41 +08:00
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
|
2024-04-02 02:32:41 +08:00
|
|
|
{
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "category",
|
|
|
|
label: "AutoGen Studio",
|
|
|
|
collapsed: true,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: "doc",
|
|
|
|
id: "autogen-studio/getting-started",
|
|
|
|
label: "Getting Started",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "doc",
|
|
|
|
id: "autogen-studio/usage",
|
|
|
|
label: "Using AutoGen Studio",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "doc",
|
|
|
|
id: "autogen-studio/faqs",
|
|
|
|
label: "AutoGen Studio FAQs",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
link: {
|
|
|
|
type: "generated-index",
|
|
|
|
title: "AutoGen Studio",
|
|
|
|
description: "Learn about AutoGen Studio",
|
|
|
|
slug: "autogen-studio",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Ecosystem",
|
|
|
|
link: {
|
|
|
|
type: "generated-index",
|
|
|
|
title: "Ecosystem",
|
|
|
|
description: "Learn about the ecosystem of AutoGen",
|
|
|
|
slug: "ecosystem",
|
2024-04-02 02:32:41 +08:00
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
items: [{ type: "autogenerated", dirName: "ecosystem" }],
|
2024-04-02 02:32:41 +08:00
|
|
|
},
|
2024-04-02 22:51:22 +08:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Contributor Guide",
|
|
|
|
collapsed: true,
|
2024-06-10 11:29:34 +08:00
|
|
|
items: [{ type: "autogenerated", dirName: "contributor-guide" }],
|
2024-04-02 22:51:22 +08:00
|
|
|
link: {
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "generated-index",
|
|
|
|
title: "Contributor Guide",
|
|
|
|
description: "Learn how to contribute to AutoGen",
|
|
|
|
slug: "contributor-guide",
|
2024-04-02 22:51:22 +08:00
|
|
|
},
|
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
"Research",
|
|
|
|
"Migration-Guide",
|
2021-12-17 09:11:33 +08:00
|
|
|
],
|
|
|
|
// pydoc-markdown auto-generated markdowns from docstrings
|
2024-02-23 12:01:17 +08:00
|
|
|
referenceSideBar: [require("./docs/reference/sidebar.json")],
|
|
|
|
notebooksSidebar: [
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Notebooks",
|
2024-06-10 11:29:34 +08:00
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: "autogenerated",
|
|
|
|
dirName: "notebooks",
|
|
|
|
},
|
|
|
|
],
|
2024-02-23 12:01:17 +08:00
|
|
|
link: {
|
2024-06-10 11:29:34 +08:00
|
|
|
type: "doc",
|
|
|
|
id: "notebooks",
|
2024-02-23 12:01:17 +08:00
|
|
|
},
|
|
|
|
},
|
2024-06-10 11:29:34 +08:00
|
|
|
],
|
2021-12-17 09:11:33 +08:00
|
|
|
};
|