langflow/docs/sidebars.js
Jakub Kopecký b43bf8f783
feat: add apify actors integration (#5862)
* initial apify actor component version

* clean code mess

* add apify integrations docs page, manual tests protocol, remove temp scripts

* fix lint type issue

* fix lint and format issues

* rename run_actor.py to apify_actor.py

* actor -> Actor

* update component description and docs link

* add wcc link

* refactor _get_actor_input_schema_from_build

* actor_input -> run_input

* refactor - make suitable methods static

* static methods remove _ before name, docs actor_input -> run_input

* update docs image

* improve docs

* fix typos, rename test .md to run_actor.md

* remove the actor link, that is not clickable

* rename ApifyRunActor -> ApifyActors, improve docs

* code refactor, added concrete examples

* take input_schema arg instead of build

* fix typo

* add custom user-agent

* remove beta label

* Update docs/docs/Integrations/Apify/integrations-apify.md

Co-authored-by: Jiří Spilka <jiri.spilka@apify.com>

* toolify_actor_id_str -> actor_id_to_tool_name

* add simple flow example withtou an agent, removed actor list, added simple how to

* fix typos

* improve how-to section

* remove usege from the component section

* improve example flows section

* remove unnecessary sentence

* format

* fix submodel serialization

* LCToolComponent -> Component

* flatten output remove question mark

* add actor run logs to component logs

* fix grammar, typos and docstrings

* [autofix.ci] apply automated fixes

---------

Co-authored-by: Jiří Spilka <jiri.spilka@apify.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Edwin Jose <edwin.jose@datastax.com>
2025-02-19 19:10:26 +00:00

168 lines
4.7 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/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: "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",
},
{
type: "doc",
id: "API-Reference/api-reference-api-examples",
label: "API examples",
},
],
},
{
type: "category",
label: "Changelog",
items: [
{
type: "link",
label: "Changelog",
href: "https://github.com/langflow-ai/langflow/releases/latest",
},
],
},
],
};