* docs: correct spelling and formatting in Docker deployment guide * HuggingFace Spaces deployment documentation * docs: simplify introduction for HuggingFace Spaces deployment guide * docs: Update Kubernetes deployment documentation with comprehensive improvements - Enhance Langflow Kubernetes deployment guide with clearer instructions - Improve formatting, add more precise configuration examples - Update service names, port forwarding, and scaling configuration details - Add more explicit links to Helm chart repositories and values files - Clarify runtime and IDE deployment sections with better explanations * docs: Add Docker flow packaging guide and enhance deployment documentation - Introduce new section on packaging Langflow flows as Docker images - Provide step-by-step instructions for creating custom Docker images with flows - Include example commands for building, running, and pushing Docker images - Minor formatting and clarity improvements to existing Docker deployment guide * docs: Refine Kubernetes and Docker deployment documentation - Streamline Docker and Kubernetes deployment guides - Improve clarity and conciseness of instructions - Add more precise examples for deploying Langflow with custom images - Enhance secret configuration and flow deployment explanations - Simplify formatting and remove redundant text * docs: Minor text refinements in Kubernetes and Docker deployment documentation - Update link text for Langflow runtime deployment - Correct capitalization and minor typos in deployment guides - Improve clarity of deployment section descriptions * revert-lockfiles * Revert "HuggingFace Spaces deployment documentation" This reverts commit 2943deb1e0964a05c6909d6e1afdf8bddf7173fb. * Remove lockfiles from PR * Apply suggestions from code review Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> * docs: Standardize deployment documentation titles * code-review * docs: Refactor deployment documentation for clarity and conciseness * shorten-nav-titles * code-review-and-cleanup * Apply suggestions from code review Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> * service * gcp * hf-spaces * railway-and-render * kubernetes * Apply suggestions from code review Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> * remove-extra-heading * Apply suggestions from code review Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com> --------- Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com>
199 lines
5.3 KiB
JavaScript
199 lines
5.3 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: [
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-docker",
|
|
label: "Docker"
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-gcp",
|
|
label: "Google Cloud Platform"
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-hugging-face-spaces",
|
|
label: "Hugging Face Spaces"
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-kubernetes",
|
|
label: "Kubernetes"
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-railway",
|
|
label: "Railway"
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "Deployment/deployment-render",
|
|
label: "Render"
|
|
}
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "API reference",
|
|
items: [
|
|
{
|
|
type: "link",
|
|
label: "API documentation",
|
|
href: "/api",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "API-Reference/api-reference-api-examples",
|
|
label: "API examples",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Integrations",
|
|
items: [
|
|
"Integrations/Apify/integrations-apify",
|
|
"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: "NVIDIA",
|
|
items: [
|
|
"Integrations/Nvidia/integrations-nvidia-ingest",
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
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: "Changelog",
|
|
items: [
|
|
{
|
|
type: "link",
|
|
label: "Changelog",
|
|
href: "https://github.com/langflow-ai/langflow/releases/latest",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|