* docs: enhance Google Cloud Vertex AI setup guide for Langflow - Add detailed step-by-step instructions for creating a Google Cloud project - Include instructions for creating and configuring a Service Account - Add steps for generating and downloading a JSON key file - Provide an example of the JSON key file structure - Include instructions for enabling the Vertex AI API - Add steps for configuring credentials in Langflow components - Include relevant screenshots and GIFs to illustrate each step visually - Improve overall clarity and completeness of the setup process Co-authored-by: Vinícios Batista da Silva <vinicios.batsi@gmail.com> * feat: Update Google Cloud Vertex AI integration documentation for clarity and structure * remove-unused-images * docs: update Google Cloud Vertex AI integration setup instructions * docs: update Google Cloud Vertex AI integration setup instructions --------- Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com>
151 lines
4.3 KiB
JavaScript
151 lines
4.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-blog-writer',
|
|
'Starter-Projects/starter-projects-document-qa',
|
|
'Starter-Projects/starter-projects-memory-chatbot',
|
|
'Starter-Projects/starter-projects-simple-agent',
|
|
'Starter-Projects/starter-projects-vector-store-rag',
|
|
'Starter-Projects/starter-projects-sequential-agent',
|
|
'Starter-Projects/starter-projects-travel-planning-agent',
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Workspace",
|
|
items: [
|
|
"Workspace/workspace-overview",
|
|
"Workspace/workspace-api",
|
|
"Workspace/workspace-logs",
|
|
"Workspace/workspace-playground",
|
|
],
|
|
},
|
|
{
|
|
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: "Components",
|
|
items: [
|
|
"Components/components-overview",
|
|
"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-prompts",
|
|
"Components/components-rag",
|
|
"Components/components-tools",
|
|
"Components/components-vector-stores",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: [
|
|
"Guides/guides-chat-memory",
|
|
"Guides/guides-data-message",
|
|
"Guides/guides-new-to-llms",
|
|
],
|
|
},
|
|
{
|
|
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/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: "link",
|
|
label: "API Documentation",
|
|
href: "/api",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|