150 lines
3.8 KiB
JavaScript
150 lines
3.8 KiB
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: "category",
|
|
label: "What's New?",
|
|
collapsed: false,
|
|
items: ["whats-new/a-new-chapter-langflow"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
collapsed: false,
|
|
items: [
|
|
"index",
|
|
"getting-started/install-langflow",
|
|
"getting-started/quickstart",
|
|
"getting-started/huggingface-spaces",
|
|
"getting-started/new-to-llms",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Starter Projects",
|
|
collapsed: false,
|
|
items: [
|
|
"starter-projects/basic-prompting",
|
|
"starter-projects/blog-writer",
|
|
"starter-projects/document-qa",
|
|
"starter-projects/memory-chatbot",
|
|
"starter-projects/vector-store-rag",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Administration",
|
|
collapsed: false,
|
|
items: [
|
|
"administration/login",
|
|
"administration/api",
|
|
"administration/cli",
|
|
"administration/playground",
|
|
"administration/global-env",
|
|
"administration/components",
|
|
"administration/collection",
|
|
"administration/prompt-customization",
|
|
"administration/langfuse_integration",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Core Components",
|
|
collapsed: false,
|
|
items: [
|
|
"components/inputs",
|
|
"components/outputs",
|
|
"components/data",
|
|
"components/models",
|
|
"components/helpers",
|
|
"components/vector-stores",
|
|
"components/embeddings",
|
|
"components/custom",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Extended Components",
|
|
collapsed: true,
|
|
items: [
|
|
"components/agents",
|
|
"components/chains",
|
|
"components/experimental",
|
|
"components/utilities",
|
|
"components/model_specs",
|
|
"components/retrievers",
|
|
"components/text-splitters",
|
|
"components/toolkits",
|
|
"components/tools",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Example Components",
|
|
collapsed: true,
|
|
items: [
|
|
"examples/flow-runner",
|
|
"examples/conversation-chain",
|
|
"examples/buffer-memory",
|
|
"examples/csv-loader",
|
|
"examples/searchapi-tool",
|
|
"examples/serp-api-tool",
|
|
"examples/python-function",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Migration Guides",
|
|
collapsed: false,
|
|
items: [
|
|
"migration/possible-installation-issues",
|
|
"migration/migrating-to-one-point-zero",
|
|
"migration/inputs-and-outputs",
|
|
"migration/text-and-record",
|
|
"migration/compatibility",
|
|
"migration/global-variables",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Tutorials",
|
|
collapsed: true,
|
|
items: [
|
|
"tutorials/chatprompttemplate_guide",
|
|
"tutorials/loading_document",
|
|
"tutorials/rag-with-astradb",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Deployment",
|
|
collapsed: true,
|
|
items: ["deployment/gcp-deployment"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Contributing",
|
|
collapsed: false,
|
|
items: [
|
|
"contributing/how-contribute",
|
|
"contributing/github-issues",
|
|
"contributing/community",
|
|
"contributing/contribute-component",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Integrations",
|
|
collapsed: false,
|
|
items: [
|
|
"integrations/notion-setup",
|
|
"integrations/notion-add-content-to-page",
|
|
"integrations/notion-list-database-properties",
|
|
"integrations/notion-list-pages",
|
|
"integrations/notion-list-users",
|
|
"integrations/notion-page-content-viewer",
|
|
"integrations/notion-page-create",
|
|
"integrations/notion-page-update",
|
|
],
|
|
},
|
|
],
|
|
};
|