langflow/docs/sidebars.js
Mendon Kissling 0d11564dea
docs: v1.1.2 (#5850)
* docs:add-changelog-to-nav

* docs: add OpenRouter component documentation with detailed inputs and outputs

* docs: add Outputs section to components-models documentation for Cohere and Ollama

* docs: update references from configuration-objects to concepts-objects across multiple components and documentation files

* feat: Add DataFrame operations section to components-processing documentation

* title-case-in-nav

* fix-memories-tab-in-chat-memory

* tool-calling-agent-update

* feat: enhance documentation with icon imports and improved instructions for OpenAI component

* material-icon

* fix: update documentation for tool mode input connection in agent component

* add-loop-component

* add-img-for-loop-summary

* feat: add documentation for using logic components in a flow with examples

* fix: enhance documentation for Loop component with detailed data flow explanation

* redirect-for-config-objects-page

* fix: improve error handling in data processing module

* fix: update documentation for Data objects in Loop component and add import statement in memory chatbot tutorial

* quickstart-screenshots

* docs: update starter flow images

* update-agent-screenshots

* move-repl-agent

* docs: enhance global variables documentation and clarify prerequisites for vector store RAG flow

* docs: update Simple Agent to use URL component

* docs: enhance memory chatbot tutorial with example conversation and clarify session ID terminology

* docs: update visibility icon description in concepts-components.md

* Apply suggestions from code review

Co-authored-by: brian-f <brian.fisher@datastax.com>

* correct-playground-sequence-and-typo

---------

Co-authored-by: brian-f <brian.fisher@datastax.com>
2025-01-24 14:24:57 +00:00

167 lines
4.6 KiB
JavaScript

module.exports = {
docs: [
"Get-Started/welcome-to-langflow",
{
type: "category",
label: "Get started",
items: [
"Get-Started/get-started-installation",
"Get-Started/get-started-quickstart",
],
},
{
type: "category",
label: "Starter projects",
items: [
'Starter-Projects/starter-projects-basic-prompting',
'Starter-Projects/starter-projects-vector-store-rag',
'Starter-Projects/starter-projects-simple-agent',
],
},
{
type: "category",
label: "Tutorials",
items: [
'Tutorials/tutorials-blog-writer',
'Tutorials/tutorials-document-qa',
'Tutorials/tutorials-memory-chatbot',
'Tutorials/tutorials-math-agent',
'Tutorials/tutorials-sequential-agent',
'Tutorials/tutorials-travel-planning-agent',
],
},
{
type: "category",
label: "Concepts",
items: [
"Concepts/concepts-overview",
"Concepts/concepts-playground",
"Concepts/concepts-components",
"Concepts/concepts-flows",
"Concepts/concepts-objects",
"Concepts/concepts-api",
],
},
{
type: "category",
label: "Components",
items: [
"Components/components-agents",
"Components/components-custom-components",
"Components/components-data",
"Components/components-embedding-models",
"Components/components-helpers",
"Components/components-io",
"Components/components-loaders",
"Components/components-logic",
"Components/components-memories",
"Components/components-models",
"Components/components-processing",
"Components/components-prompts",
"Components/components-tools",
"Components/components-vector-stores",
],
},
{
type: "category",
label: "Agents",
items: [
"Agents/agents-overview",
"Agents/agent-tool-calling-agent-component",
],
},
{
type: "category",
label: "Configuration",
items: [
"Configuration/configuration-api-keys",
"Configuration/configuration-authentication",
"Configuration/configuration-auto-saving",
"Configuration/configuration-backend-only",
"Configuration/configuration-cli",
"Configuration/configuration-global-variables",
"Configuration/environment-variables",
"Configuration/configuration-security-best-practices"
],
},
{
type: "category",
label: "Deployment",
items: [
"Deployment/deployment-docker",
"Deployment/deployment-gcp",
"Deployment/deployment-hugging-face-spaces",
"Deployment/deployment-kubernetes",
"Deployment/deployment-railway",
"Deployment/deployment-render",
],
},
{
type: "category",
label: "Integrations",
items: [
"Integrations/integrations-assemblyai",
"Integrations/Composio/integrations-composio",
"Integrations/integrations-langfuse",
"Integrations/integrations-langsmith",
"Integrations/integrations-langwatch",
{
type: 'category',
label: 'Google',
items: [
'Integrations/Google/integrations-setup-google-oauth-langflow',
'Integrations/Google/integrations-setup-google-cloud-vertex-ai-langflow',
],
},
{
type: "category",
label: "Notion",
items: [
"Integrations/Notion/integrations-notion",
"Integrations/Notion/notion-agent-conversational",
"Integrations/Notion/notion-agent-meeting-notes",
],
},
],
},
{
type: "category",
label: "Contributing",
items: [
"Contributing/contributing-community",
"Contributing/contributing-components",
"Contributing/contributing-github-discussion-board",
"Contributing/contributing-github-issues",
"Contributing/contributing-how-to-contribute",
"Contributing/contributing-telemetry",
],
},
{
type: "category",
label: "API reference",
items: [
{
type: "doc",
id: "API-Reference/api-reference-api-examples",
label: "API examples",
},
{
type: "link",
label: "API documentation",
href: "/api",
},
],
},
{
type: "category",
label: "Changelog",
items: [
{
type: "link",
label: "Changelog",
href: "https://github.com/langflow-ai/langflow/releases/latest",
},
],
},
],
};