Files
crewAI/docs/docs.json
Lucas Gomide 93dafe2637 feat: adopt directory-based docs versioning with Edge channel
Switch docs.crewai.com from navigation-only versioning (every version
selector entry rendered the same docs/<lang>/* source files) to
Mintlify's directory-based versioning so each version selector entry
renders its own snapshot. Add an "Edge" channel under docs/edge/<lang>/*
that always reflects main HEAD for unreleased work, eliminating
pre-release leakage onto frozen release labels. External links to
canonical /<lang>/* URLs are preserved via wildcard redirects that
always land on the current default version.

Layout:
- docs/edge/<lang>/*         rolling source (you edit here)
- docs/edge/enterprise-api.*.yaml
- docs/v<X.Y.Z>/<lang>/*     frozen, immutable snapshots
- docs/v<X.Y.Z>/enterprise-api.*.yaml
- docs/images/               shared, append-only
- docs/docs.json             nav + redirects

URLs follow the Mintlify-idiomatic shape: /edge/<lang>/<page> for
Edge, /v<X.Y.Z>/<lang>/<page> for every frozen snapshot. The wildcard
redirects /<lang>/:slug* -> /<default>/<lang>/:slug* keep stale links
working, and every freeze rewrites them (plus all per-section/per-page
redirects) so destinations always resolve to the current default
without depending on a second redirect hop.

Release flow integration (devtools release):
- New module crewai_devtools.docs_versioning.freeze() materialises
  docs/v<X.Y.Z>/ from docs/edge/, rewrites openapi: refs inside the
  snapshot, inserts the version into every language block in
  docs.json, and refreshes all redirect destinations.
- _update_docs_and_create_pr() in cli.py now calls that freeze during
  Phase 2 of devtools release. Edge changelogs are updated first (so
  the snapshot freeze picks them up), then the snapshot is staged
  alongside docs.json, branched as docs/freeze-v<X.Y.Z>, and the PR
  is titled [docs-freeze] docs: snapshot and changelog for v<X.Y.Z>
  — the title prefix the new CI guard reads.
- The PR still gates tag, GitHub release, PyPI publish, and the
  enterprise release as before; no new PRs are added.
- Pre-releases (1.X.YaN, 1.X.YbN, ...) skip the snapshot — they ride
  Edge — and the docs PR title omits the [docs-freeze] prefix.
- docs_check (AI-generated docs scaffolding) writes to
  docs/edge/<lang>/* so newly-generated unreleased docs land in Edge
  and never accidentally touch a frozen snapshot.

Migration scripts (one-shot):
- scripts/docs/freeze_historical_versions.py reconstructs all 16
  historical snapshots (v1.10.0 .. v1.14.7) from git tags via
  git archive | tar, rewriting openapi: MDX refs so each snapshot
  reads its own enterprise-api YAML rather than the live one.
- scripts/docs/prefix_version_paths.py one-shot-migrates docs.json:
  rewrites every page path in 16 versioned blocks to point under
  docs/v<X.Y.Z>/, inserts a new Edge entry per language, tags
  v1.14.7 as Latest (default), prunes pages whose target file
  doesn't exist in the snapshot (e.g. docs/ar/ didn't exist before
  v1.12.0), and writes the wildcard + per-section redirects.
- scripts/docs/freeze_current_edge.py is now a thin CLI wrapper
  around docs_versioning.freeze for manual one-off freezes (e.g.
  retroactively snapshotting a forgotten release).

CI guards (.github/workflows/docs-snapshots.yml):
- Frozen snapshots under docs/v[0-9]*/ are immutable; only PRs whose
  title contains [docs-freeze] (i.e. release-cut PRs generated by
  devtools release or the manual wrapper) may modify them.
- Images under docs/images/ are append-only since snapshots share a
  single image directory. Deleting or renaming an image breaks every
  historical snapshot that still references it.

Restored docs/images/crewai-otel-export.png from PR #3673; it was
deleted in PR #4908 but v1.10.0 / v1.10.1 snapshots still reference
it. Restoring instead of editing the snapshots preserves historical
rendering fidelity and validates the new append-only rule
retroactively.

Tests:
- lib/devtools/tests/test_docs_versioning.py covers the freeze: file
  copy, openapi rewrite, version insertion, default demotion, redirect
  upserts, per-section redirect rewriting, idempotency, and invalid
  inputs.

Verified locally with mintlify broken-links: 0 broken links across
the full site (Edge + 16 frozen versions, 4 locales).

AGENTS.md (repo root) is the contributor guide for the new model;
RELEASING.md is the release-cut runbook; README's Contribution
section links to both.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-17 11:08:45 -03:00

30536 lines
1.4 MiB

{
"$schema": "https://mintlify.com/docs.json",
"theme": "aspen",
"name": "CrewAI",
"colors": {
"primary": "#EB6658",
"light": "#F3A78B",
"dark": "#C94C3C"
},
"favicon": "/images/favicon.svg",
"contextual": {
"options": [
"copy",
"view",
"chatgpt",
"claude",
"perplexity",
"mcp",
"cursor",
"vscode",
{
"title": "Request a feature",
"description": "Join the discussion on GitHub to request a new feature",
"icon": "plus",
"href": "https://github.com/crewAIInc/crewAI/issues/new/choose"
}
]
},
"navigation": {
"languages": [
{
"language": "en",
"global": {
"anchors": [
{
"anchor": "Website",
"href": "https://crewai.com",
"icon": "globe"
},
{
"anchor": "Forum",
"href": "https://community.crewai.com",
"icon": "discourse"
},
{
"anchor": "Blog",
"href": "https://blog.crewai.com",
"icon": "newspaper"
},
{
"anchor": "CrewGPT",
"href": "https://chatgpt.com/g/g-qqTuUWsBY-crewai-assistant",
"icon": "robot"
}
]
},
"versions": [
{
"version": "Edge",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"edge/en/introduction",
"edge/en/guides/coding-tools/build-with-ai",
"edge/en/skills",
"edge/en/installation",
"edge/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"edge/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"edge/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"edge/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"edge/en/guides/flows/first-flow",
"edge/en/guides/flows/mastering-flow-state",
"edge/en/guides/flows/conversational-flows",
"edge/en/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"edge/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"edge/en/guides/coding-tools/agents-md",
"edge/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"edge/en/guides/advanced/customizing-prompts",
"edge/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"edge/en/guides/migration/migrating-from-langgraph",
"edge/en/guides/migration/upgrading-crewai"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"edge/en/concepts/agents",
"edge/en/concepts/agent-capabilities",
"edge/en/concepts/tasks",
"edge/en/concepts/crews",
"edge/en/concepts/flows",
"edge/en/concepts/production-architecture",
"edge/en/concepts/knowledge",
"edge/en/concepts/skills",
"edge/en/concepts/llms",
"edge/en/concepts/files",
"edge/en/concepts/processes",
"edge/en/concepts/collaboration",
"edge/en/concepts/training",
"edge/en/concepts/memory",
"edge/en/concepts/reasoning",
"edge/en/concepts/planning",
"edge/en/concepts/testing",
"edge/en/concepts/cli",
"edge/en/concepts/tools",
"edge/en/concepts/event-listener",
"edge/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"edge/en/mcp/overview",
"edge/en/mcp/dsl-integration",
"edge/en/mcp/stdio",
"edge/en/mcp/sse",
"edge/en/mcp/streamable-http",
"edge/en/mcp/multiple-servers",
"edge/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"edge/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"edge/en/tools/file-document/overview",
"edge/en/tools/file-document/filereadtool",
"edge/en/tools/file-document/filewritetool",
"edge/en/tools/file-document/pdfsearchtool",
"edge/en/tools/file-document/docxsearchtool",
"edge/en/tools/file-document/mdxsearchtool",
"edge/en/tools/file-document/xmlsearchtool",
"edge/en/tools/file-document/txtsearchtool",
"edge/en/tools/file-document/jsonsearchtool",
"edge/en/tools/file-document/csvsearchtool",
"edge/en/tools/file-document/directorysearchtool",
"edge/en/tools/file-document/directoryreadtool",
"edge/en/tools/file-document/ocrtool",
"edge/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"edge/en/tools/web-scraping/overview",
"edge/en/tools/web-scraping/scrapewebsitetool",
"edge/en/tools/web-scraping/scrapeelementfromwebsitetool",
"edge/en/tools/web-scraping/scrapflyscrapetool",
"edge/en/tools/web-scraping/seleniumscrapingtool",
"edge/en/tools/web-scraping/scrapegraphscrapetool",
"edge/en/tools/web-scraping/spidertool",
"edge/en/tools/web-scraping/browserbaseloadtool",
"edge/en/tools/web-scraping/hyperbrowserloadtool",
"edge/en/tools/web-scraping/stagehandtool",
"edge/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"edge/en/tools/web-scraping/firecrawlscrapewebsitetool",
"edge/en/tools/web-scraping/oxylabsscraperstool",
"edge/en/tools/web-scraping/brightdata-tools",
"edge/en/tools/web-scraping/youai-contents"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"edge/en/tools/search-research/overview",
"edge/en/tools/search-research/serperdevtool",
"edge/en/tools/search-research/bravesearchtool",
"edge/en/tools/search-research/exasearchtool",
"edge/en/tools/search-research/linkupsearchtool",
"edge/en/tools/search-research/githubsearchtool",
"edge/en/tools/search-research/websitesearchtool",
"edge/en/tools/search-research/codedocssearchtool",
"edge/en/tools/search-research/youtubechannelsearchtool",
"edge/en/tools/search-research/youtubevideosearchtool",
"edge/en/tools/search-research/tavilysearchtool",
"edge/en/tools/search-research/tavilyextractortool",
"edge/en/tools/search-research/tavilyresearchtool",
"edge/en/tools/search-research/arxivpapertool",
"edge/en/tools/search-research/serpapi-googlesearchtool",
"edge/en/tools/search-research/serpapi-googleshoppingtool",
"edge/en/tools/search-research/databricks-query-tool",
"edge/en/tools/search-research/youai-search"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"edge/en/tools/database-data/overview",
"edge/en/tools/database-data/mysqltool",
"edge/en/tools/database-data/pgsearchtool",
"edge/en/tools/database-data/snowflakesearchtool",
"edge/en/tools/database-data/nl2sqltool",
"edge/en/tools/database-data/qdrantvectorsearchtool",
"edge/en/tools/database-data/weaviatevectorsearchtool",
"edge/en/tools/database-data/mongodbvectorsearchtool",
"edge/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"edge/en/tools/ai-ml/overview",
"edge/en/tools/ai-ml/dalletool",
"edge/en/tools/ai-ml/visiontool",
"edge/en/tools/ai-ml/aimindtool",
"edge/en/tools/ai-ml/llamaindextool",
"edge/en/tools/ai-ml/langchaintool",
"edge/en/tools/ai-ml/ragtool",
"edge/en/tools/ai-ml/codeinterpretertool",
"edge/en/tools/ai-ml/daytona",
"edge/en/tools/ai-ml/e2bsandboxtools"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"edge/en/tools/cloud-storage/overview",
"edge/en/tools/cloud-storage/s3readertool",
"edge/en/tools/cloud-storage/s3writertool",
"edge/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"edge/en/tools/integration/overview",
"edge/en/tools/integration/bedrockinvokeagenttool",
"edge/en/tools/integration/crewaiautomationtool",
"edge/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"edge/en/tools/automation/overview",
"edge/en/tools/automation/apifyactorstool",
"edge/en/tools/automation/composiotool",
"edge/en/tools/automation/multiontool",
"edge/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"edge/en/observability/tracing",
"edge/en/observability/overview",
"edge/en/observability/arize-phoenix",
"edge/en/observability/braintrust",
"edge/en/observability/datadog",
"edge/en/observability/galileo",
"edge/en/observability/langdb",
"edge/en/observability/langfuse",
"edge/en/observability/langtrace",
"edge/en/observability/maxim",
"edge/en/observability/mlflow",
"edge/en/observability/neatlogs",
"edge/en/observability/openlit",
"edge/en/observability/opik",
"edge/en/observability/patronus-evaluation",
"edge/en/observability/portkey",
"edge/en/observability/weave",
"edge/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"edge/en/learn/overview",
"edge/en/learn/llm-selection-guide",
"edge/en/learn/conditional-tasks",
"edge/en/learn/coding-agents",
"edge/en/learn/create-custom-tools",
"edge/en/learn/custom-llm",
"edge/en/learn/custom-manager-agent",
"edge/en/learn/customizing-agents",
"edge/en/learn/dalle-image-generation",
"edge/en/learn/force-tool-output-as-result",
"edge/en/learn/hierarchical-process",
"edge/en/learn/human-input-on-execution",
"edge/en/learn/human-in-the-loop",
"edge/en/learn/human-feedback-in-flows",
"edge/en/learn/kickoff-async",
"edge/en/learn/kickoff-for-each",
"edge/en/learn/llm-connections",
"edge/en/learn/litellm-removal-guide",
"edge/en/learn/multimodal-agents",
"edge/en/learn/replay-tasks-from-latest-crew-kickoff",
"edge/en/learn/sequential-process",
"edge/en/learn/using-annotations",
"edge/en/learn/execution-hooks",
"edge/en/learn/llm-hooks",
"edge/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"edge/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"edge/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"edge/en/enterprise/features/automations",
"edge/en/enterprise/features/crew-studio",
"edge/en/enterprise/features/marketplace",
"edge/en/enterprise/features/agent-repositories",
"edge/en/enterprise/features/tools-and-integrations",
"edge/en/enterprise/features/pii-trace-redactions",
"edge/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"edge/en/enterprise/features/traces",
"edge/en/enterprise/features/webhook-streaming",
"edge/en/enterprise/features/hallucination-guardrail",
"edge/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"edge/en/enterprise/features/sso",
"edge/en/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"edge/en/enterprise/features/secrets-manager/overview",
"edge/en/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"edge/en/enterprise/features/secrets-manager/aws",
"edge/en/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"edge/en/enterprise/features/secrets-manager/gcp",
"edge/en/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"edge/en/enterprise/features/secrets-manager/azure",
"edge/en/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"edge/en/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Integration Docs",
"pages": [
"edge/en/enterprise/integrations/asana",
"edge/en/enterprise/integrations/box",
"edge/en/enterprise/integrations/clickup",
"edge/en/enterprise/integrations/databricks",
"edge/en/enterprise/integrations/github",
"edge/en/enterprise/integrations/gmail",
"edge/en/enterprise/integrations/google_calendar",
"edge/en/enterprise/integrations/google_contacts",
"edge/en/enterprise/integrations/google_docs",
"edge/en/enterprise/integrations/google_drive",
"edge/en/enterprise/integrations/google_sheets",
"edge/en/enterprise/integrations/google_slides",
"edge/en/enterprise/integrations/hubspot",
"edge/en/enterprise/integrations/jira",
"edge/en/enterprise/integrations/linear",
"edge/en/enterprise/integrations/microsoft_excel",
"edge/en/enterprise/integrations/microsoft_onedrive",
"edge/en/enterprise/integrations/microsoft_outlook",
"edge/en/enterprise/integrations/microsoft_sharepoint",
"edge/en/enterprise/integrations/microsoft_teams",
"edge/en/enterprise/integrations/microsoft_word",
"edge/en/enterprise/integrations/notion",
"edge/en/enterprise/integrations/salesforce",
"edge/en/enterprise/integrations/shopify",
"edge/en/enterprise/integrations/slack",
"edge/en/enterprise/integrations/snowflake",
"edge/en/enterprise/integrations/stripe",
"edge/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"edge/en/enterprise/guides/automation-triggers",
"edge/en/enterprise/guides/gmail-trigger",
"edge/en/enterprise/guides/google-calendar-trigger",
"edge/en/enterprise/guides/google-drive-trigger",
"edge/en/enterprise/guides/outlook-trigger",
"edge/en/enterprise/guides/onedrive-trigger",
"edge/en/enterprise/guides/microsoft-teams-trigger",
"edge/en/enterprise/guides/slack-trigger",
"edge/en/enterprise/guides/hubspot-trigger",
"edge/en/enterprise/guides/salesforce-trigger",
"edge/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"edge/en/enterprise/guides/build-crew",
"edge/en/enterprise/guides/prepare-for-deployment",
"edge/en/enterprise/guides/deploy-to-amp",
"edge/en/enterprise/guides/monorepo-deployments",
"edge/en/enterprise/guides/private-package-registry",
"edge/en/enterprise/guides/kickoff-crew",
"edge/en/enterprise/guides/update-crew",
"edge/en/enterprise/guides/enable-crew-studio",
"edge/en/enterprise/guides/capture_telemetry_logs",
"edge/en/enterprise/guides/azure-openai-setup",
"edge/en/enterprise/guides/vertex-ai-workload-identity-setup",
"edge/en/enterprise/guides/tool-repository",
"edge/en/enterprise/guides/custom-mcp-server",
"edge/en/enterprise/guides/react-component-export",
"edge/en/enterprise/guides/team-management",
"edge/en/enterprise/guides/human-in-the-loop",
"edge/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"edge/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"edge/en/api-reference/introduction",
"edge/en/api-reference/inputs",
"edge/en/api-reference/kickoff",
"edge/en/api-reference/resume",
"edge/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"edge/en/examples/example",
"edge/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"edge/en/changelog"
]
}
]
}
],
"tag": "Edge"
},
{
"version": "v1.14.7",
"default": true,
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.7/en/introduction",
"v1.14.7/en/guides/coding-tools/build-with-ai",
"v1.14.7/en/skills",
"v1.14.7/en/installation",
"v1.14.7/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.7/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.7/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.7/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.7/en/guides/flows/first-flow",
"v1.14.7/en/guides/flows/mastering-flow-state",
"v1.14.7/en/guides/flows/conversational-flows",
"v1.14.7/en/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.7/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.7/en/guides/coding-tools/agents-md",
"v1.14.7/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.7/en/guides/advanced/customizing-prompts",
"v1.14.7/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.7/en/guides/migration/migrating-from-langgraph",
"v1.14.7/en/guides/migration/upgrading-crewai"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.7/en/concepts/agents",
"v1.14.7/en/concepts/agent-capabilities",
"v1.14.7/en/concepts/tasks",
"v1.14.7/en/concepts/crews",
"v1.14.7/en/concepts/flows",
"v1.14.7/en/concepts/production-architecture",
"v1.14.7/en/concepts/knowledge",
"v1.14.7/en/concepts/skills",
"v1.14.7/en/concepts/llms",
"v1.14.7/en/concepts/files",
"v1.14.7/en/concepts/processes",
"v1.14.7/en/concepts/collaboration",
"v1.14.7/en/concepts/training",
"v1.14.7/en/concepts/memory",
"v1.14.7/en/concepts/reasoning",
"v1.14.7/en/concepts/planning",
"v1.14.7/en/concepts/testing",
"v1.14.7/en/concepts/cli",
"v1.14.7/en/concepts/tools",
"v1.14.7/en/concepts/event-listener",
"v1.14.7/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.7/en/mcp/overview",
"v1.14.7/en/mcp/dsl-integration",
"v1.14.7/en/mcp/stdio",
"v1.14.7/en/mcp/sse",
"v1.14.7/en/mcp/streamable-http",
"v1.14.7/en/mcp/multiple-servers",
"v1.14.7/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.7/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.7/en/tools/file-document/overview",
"v1.14.7/en/tools/file-document/filereadtool",
"v1.14.7/en/tools/file-document/filewritetool",
"v1.14.7/en/tools/file-document/pdfsearchtool",
"v1.14.7/en/tools/file-document/docxsearchtool",
"v1.14.7/en/tools/file-document/mdxsearchtool",
"v1.14.7/en/tools/file-document/xmlsearchtool",
"v1.14.7/en/tools/file-document/txtsearchtool",
"v1.14.7/en/tools/file-document/jsonsearchtool",
"v1.14.7/en/tools/file-document/csvsearchtool",
"v1.14.7/en/tools/file-document/directorysearchtool",
"v1.14.7/en/tools/file-document/directoryreadtool",
"v1.14.7/en/tools/file-document/ocrtool",
"v1.14.7/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.7/en/tools/web-scraping/overview",
"v1.14.7/en/tools/web-scraping/scrapewebsitetool",
"v1.14.7/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.7/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.7/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.7/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.7/en/tools/web-scraping/spidertool",
"v1.14.7/en/tools/web-scraping/browserbaseloadtool",
"v1.14.7/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.7/en/tools/web-scraping/stagehandtool",
"v1.14.7/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.7/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.7/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.7/en/tools/web-scraping/brightdata-tools",
"v1.14.7/en/tools/web-scraping/youai-contents"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.7/en/tools/search-research/overview",
"v1.14.7/en/tools/search-research/serperdevtool",
"v1.14.7/en/tools/search-research/bravesearchtool",
"v1.14.7/en/tools/search-research/exasearchtool",
"v1.14.7/en/tools/search-research/linkupsearchtool",
"v1.14.7/en/tools/search-research/githubsearchtool",
"v1.14.7/en/tools/search-research/websitesearchtool",
"v1.14.7/en/tools/search-research/codedocssearchtool",
"v1.14.7/en/tools/search-research/youtubechannelsearchtool",
"v1.14.7/en/tools/search-research/youtubevideosearchtool",
"v1.14.7/en/tools/search-research/tavilysearchtool",
"v1.14.7/en/tools/search-research/tavilyextractortool",
"v1.14.7/en/tools/search-research/tavilyresearchtool",
"v1.14.7/en/tools/search-research/arxivpapertool",
"v1.14.7/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.7/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.7/en/tools/search-research/databricks-query-tool",
"v1.14.7/en/tools/search-research/youai-search"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.7/en/tools/database-data/overview",
"v1.14.7/en/tools/database-data/mysqltool",
"v1.14.7/en/tools/database-data/pgsearchtool",
"v1.14.7/en/tools/database-data/snowflakesearchtool",
"v1.14.7/en/tools/database-data/nl2sqltool",
"v1.14.7/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.7/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.7/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.7/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.7/en/tools/ai-ml/overview",
"v1.14.7/en/tools/ai-ml/dalletool",
"v1.14.7/en/tools/ai-ml/visiontool",
"v1.14.7/en/tools/ai-ml/aimindtool",
"v1.14.7/en/tools/ai-ml/llamaindextool",
"v1.14.7/en/tools/ai-ml/langchaintool",
"v1.14.7/en/tools/ai-ml/ragtool",
"v1.14.7/en/tools/ai-ml/codeinterpretertool",
"v1.14.7/en/tools/ai-ml/daytona",
"v1.14.7/en/tools/ai-ml/e2bsandboxtools"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.7/en/tools/cloud-storage/overview",
"v1.14.7/en/tools/cloud-storage/s3readertool",
"v1.14.7/en/tools/cloud-storage/s3writertool",
"v1.14.7/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.7/en/tools/integration/overview",
"v1.14.7/en/tools/integration/bedrockinvokeagenttool",
"v1.14.7/en/tools/integration/crewaiautomationtool",
"v1.14.7/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.7/en/tools/automation/overview",
"v1.14.7/en/tools/automation/apifyactorstool",
"v1.14.7/en/tools/automation/composiotool",
"v1.14.7/en/tools/automation/multiontool",
"v1.14.7/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.7/en/observability/tracing",
"v1.14.7/en/observability/overview",
"v1.14.7/en/observability/arize-phoenix",
"v1.14.7/en/observability/braintrust",
"v1.14.7/en/observability/datadog",
"v1.14.7/en/observability/galileo",
"v1.14.7/en/observability/langdb",
"v1.14.7/en/observability/langfuse",
"v1.14.7/en/observability/langtrace",
"v1.14.7/en/observability/maxim",
"v1.14.7/en/observability/mlflow",
"v1.14.7/en/observability/neatlogs",
"v1.14.7/en/observability/openlit",
"v1.14.7/en/observability/opik",
"v1.14.7/en/observability/patronus-evaluation",
"v1.14.7/en/observability/portkey",
"v1.14.7/en/observability/weave",
"v1.14.7/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.7/en/learn/overview",
"v1.14.7/en/learn/llm-selection-guide",
"v1.14.7/en/learn/conditional-tasks",
"v1.14.7/en/learn/coding-agents",
"v1.14.7/en/learn/create-custom-tools",
"v1.14.7/en/learn/custom-llm",
"v1.14.7/en/learn/custom-manager-agent",
"v1.14.7/en/learn/customizing-agents",
"v1.14.7/en/learn/dalle-image-generation",
"v1.14.7/en/learn/force-tool-output-as-result",
"v1.14.7/en/learn/hierarchical-process",
"v1.14.7/en/learn/human-input-on-execution",
"v1.14.7/en/learn/human-in-the-loop",
"v1.14.7/en/learn/human-feedback-in-flows",
"v1.14.7/en/learn/kickoff-async",
"v1.14.7/en/learn/kickoff-for-each",
"v1.14.7/en/learn/llm-connections",
"v1.14.7/en/learn/litellm-removal-guide",
"v1.14.7/en/learn/multimodal-agents",
"v1.14.7/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.7/en/learn/sequential-process",
"v1.14.7/en/learn/using-annotations",
"v1.14.7/en/learn/execution-hooks",
"v1.14.7/en/learn/llm-hooks",
"v1.14.7/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.7/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.7/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.7/en/enterprise/features/automations",
"v1.14.7/en/enterprise/features/crew-studio",
"v1.14.7/en/enterprise/features/marketplace",
"v1.14.7/en/enterprise/features/agent-repositories",
"v1.14.7/en/enterprise/features/tools-and-integrations",
"v1.14.7/en/enterprise/features/pii-trace-redactions",
"v1.14.7/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.7/en/enterprise/features/traces",
"v1.14.7/en/enterprise/features/webhook-streaming",
"v1.14.7/en/enterprise/features/hallucination-guardrail",
"v1.14.7/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.7/en/enterprise/features/sso",
"v1.14.7/en/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.7/en/enterprise/features/secrets-manager/overview",
"v1.14.7/en/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.7/en/enterprise/features/secrets-manager/aws",
"v1.14.7/en/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.7/en/enterprise/features/secrets-manager/gcp",
"v1.14.7/en/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.7/en/enterprise/features/secrets-manager/azure",
"v1.14.7/en/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.7/en/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.7/en/enterprise/integrations/asana",
"v1.14.7/en/enterprise/integrations/box",
"v1.14.7/en/enterprise/integrations/clickup",
"v1.14.7/en/enterprise/integrations/databricks",
"v1.14.7/en/enterprise/integrations/github",
"v1.14.7/en/enterprise/integrations/gmail",
"v1.14.7/en/enterprise/integrations/google_calendar",
"v1.14.7/en/enterprise/integrations/google_contacts",
"v1.14.7/en/enterprise/integrations/google_docs",
"v1.14.7/en/enterprise/integrations/google_drive",
"v1.14.7/en/enterprise/integrations/google_sheets",
"v1.14.7/en/enterprise/integrations/google_slides",
"v1.14.7/en/enterprise/integrations/hubspot",
"v1.14.7/en/enterprise/integrations/jira",
"v1.14.7/en/enterprise/integrations/linear",
"v1.14.7/en/enterprise/integrations/microsoft_excel",
"v1.14.7/en/enterprise/integrations/microsoft_onedrive",
"v1.14.7/en/enterprise/integrations/microsoft_outlook",
"v1.14.7/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.7/en/enterprise/integrations/microsoft_teams",
"v1.14.7/en/enterprise/integrations/microsoft_word",
"v1.14.7/en/enterprise/integrations/notion",
"v1.14.7/en/enterprise/integrations/salesforce",
"v1.14.7/en/enterprise/integrations/shopify",
"v1.14.7/en/enterprise/integrations/slack",
"v1.14.7/en/enterprise/integrations/snowflake",
"v1.14.7/en/enterprise/integrations/stripe",
"v1.14.7/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.7/en/enterprise/guides/automation-triggers",
"v1.14.7/en/enterprise/guides/gmail-trigger",
"v1.14.7/en/enterprise/guides/google-calendar-trigger",
"v1.14.7/en/enterprise/guides/google-drive-trigger",
"v1.14.7/en/enterprise/guides/outlook-trigger",
"v1.14.7/en/enterprise/guides/onedrive-trigger",
"v1.14.7/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.7/en/enterprise/guides/slack-trigger",
"v1.14.7/en/enterprise/guides/hubspot-trigger",
"v1.14.7/en/enterprise/guides/salesforce-trigger",
"v1.14.7/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.7/en/enterprise/guides/build-crew",
"v1.14.7/en/enterprise/guides/prepare-for-deployment",
"v1.14.7/en/enterprise/guides/deploy-to-amp",
"v1.14.7/en/enterprise/guides/monorepo-deployments",
"v1.14.7/en/enterprise/guides/private-package-registry",
"v1.14.7/en/enterprise/guides/kickoff-crew",
"v1.14.7/en/enterprise/guides/update-crew",
"v1.14.7/en/enterprise/guides/enable-crew-studio",
"v1.14.7/en/enterprise/guides/capture_telemetry_logs",
"v1.14.7/en/enterprise/guides/azure-openai-setup",
"v1.14.7/en/enterprise/guides/vertex-ai-workload-identity-setup",
"v1.14.7/en/enterprise/guides/tool-repository",
"v1.14.7/en/enterprise/guides/custom-mcp-server",
"v1.14.7/en/enterprise/guides/react-component-export",
"v1.14.7/en/enterprise/guides/team-management",
"v1.14.7/en/enterprise/guides/human-in-the-loop",
"v1.14.7/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.7/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.7/en/api-reference/introduction",
"v1.14.7/en/api-reference/inputs",
"v1.14.7/en/api-reference/kickoff",
"v1.14.7/en/api-reference/resume",
"v1.14.7/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.7/en/examples/example",
"v1.14.7/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.7/en/changelog"
]
}
]
}
],
"tag": "Latest"
},
{
"version": "v1.14.6",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.6/en/introduction",
"v1.14.6/en/guides/coding-tools/build-with-ai",
"v1.14.6/en/skills",
"v1.14.6/en/installation",
"v1.14.6/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.6/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.6/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.6/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.6/en/guides/flows/first-flow",
"v1.14.6/en/guides/flows/mastering-flow-state",
"v1.14.6/en/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.6/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.6/en/guides/coding-tools/agents-md",
"v1.14.6/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.6/en/guides/advanced/customizing-prompts",
"v1.14.6/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.6/en/guides/migration/migrating-from-langgraph",
"v1.14.6/en/guides/migration/upgrading-crewai"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.6/en/concepts/agents",
"v1.14.6/en/concepts/agent-capabilities",
"v1.14.6/en/concepts/tasks",
"v1.14.6/en/concepts/crews",
"v1.14.6/en/concepts/flows",
"v1.14.6/en/concepts/production-architecture",
"v1.14.6/en/concepts/knowledge",
"v1.14.6/en/concepts/skills",
"v1.14.6/en/concepts/llms",
"v1.14.6/en/concepts/files",
"v1.14.6/en/concepts/processes",
"v1.14.6/en/concepts/collaboration",
"v1.14.6/en/concepts/training",
"v1.14.6/en/concepts/memory",
"v1.14.6/en/concepts/reasoning",
"v1.14.6/en/concepts/planning",
"v1.14.6/en/concepts/testing",
"v1.14.6/en/concepts/cli",
"v1.14.6/en/concepts/tools",
"v1.14.6/en/concepts/event-listener",
"v1.14.6/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.6/en/mcp/overview",
"v1.14.6/en/mcp/dsl-integration",
"v1.14.6/en/mcp/stdio",
"v1.14.6/en/mcp/sse",
"v1.14.6/en/mcp/streamable-http",
"v1.14.6/en/mcp/multiple-servers",
"v1.14.6/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.6/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.6/en/tools/file-document/overview",
"v1.14.6/en/tools/file-document/filereadtool",
"v1.14.6/en/tools/file-document/filewritetool",
"v1.14.6/en/tools/file-document/pdfsearchtool",
"v1.14.6/en/tools/file-document/docxsearchtool",
"v1.14.6/en/tools/file-document/mdxsearchtool",
"v1.14.6/en/tools/file-document/xmlsearchtool",
"v1.14.6/en/tools/file-document/txtsearchtool",
"v1.14.6/en/tools/file-document/jsonsearchtool",
"v1.14.6/en/tools/file-document/csvsearchtool",
"v1.14.6/en/tools/file-document/directorysearchtool",
"v1.14.6/en/tools/file-document/directoryreadtool",
"v1.14.6/en/tools/file-document/ocrtool",
"v1.14.6/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.6/en/tools/web-scraping/overview",
"v1.14.6/en/tools/web-scraping/scrapewebsitetool",
"v1.14.6/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.6/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.6/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.6/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.6/en/tools/web-scraping/spidertool",
"v1.14.6/en/tools/web-scraping/browserbaseloadtool",
"v1.14.6/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.6/en/tools/web-scraping/stagehandtool",
"v1.14.6/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.6/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.6/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.6/en/tools/web-scraping/brightdata-tools",
"v1.14.6/en/tools/web-scraping/youai-contents"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.6/en/tools/search-research/overview",
"v1.14.6/en/tools/search-research/serperdevtool",
"v1.14.6/en/tools/search-research/bravesearchtool",
"v1.14.6/en/tools/search-research/exasearchtool",
"v1.14.6/en/tools/search-research/linkupsearchtool",
"v1.14.6/en/tools/search-research/githubsearchtool",
"v1.14.6/en/tools/search-research/websitesearchtool",
"v1.14.6/en/tools/search-research/codedocssearchtool",
"v1.14.6/en/tools/search-research/youtubechannelsearchtool",
"v1.14.6/en/tools/search-research/youtubevideosearchtool",
"v1.14.6/en/tools/search-research/tavilysearchtool",
"v1.14.6/en/tools/search-research/tavilyextractortool",
"v1.14.6/en/tools/search-research/tavilyresearchtool",
"v1.14.6/en/tools/search-research/arxivpapertool",
"v1.14.6/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.6/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.6/en/tools/search-research/databricks-query-tool",
"v1.14.6/en/tools/search-research/youai-search"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.6/en/tools/database-data/overview",
"v1.14.6/en/tools/database-data/mysqltool",
"v1.14.6/en/tools/database-data/pgsearchtool",
"v1.14.6/en/tools/database-data/snowflakesearchtool",
"v1.14.6/en/tools/database-data/nl2sqltool",
"v1.14.6/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.6/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.6/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.6/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.6/en/tools/ai-ml/overview",
"v1.14.6/en/tools/ai-ml/dalletool",
"v1.14.6/en/tools/ai-ml/visiontool",
"v1.14.6/en/tools/ai-ml/aimindtool",
"v1.14.6/en/tools/ai-ml/llamaindextool",
"v1.14.6/en/tools/ai-ml/langchaintool",
"v1.14.6/en/tools/ai-ml/ragtool",
"v1.14.6/en/tools/ai-ml/codeinterpretertool",
"v1.14.6/en/tools/ai-ml/daytona",
"v1.14.6/en/tools/ai-ml/e2bsandboxtools"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.6/en/tools/cloud-storage/overview",
"v1.14.6/en/tools/cloud-storage/s3readertool",
"v1.14.6/en/tools/cloud-storage/s3writertool",
"v1.14.6/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.6/en/tools/integration/overview",
"v1.14.6/en/tools/integration/bedrockinvokeagenttool",
"v1.14.6/en/tools/integration/crewaiautomationtool",
"v1.14.6/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.6/en/tools/automation/overview",
"v1.14.6/en/tools/automation/apifyactorstool",
"v1.14.6/en/tools/automation/composiotool",
"v1.14.6/en/tools/automation/multiontool",
"v1.14.6/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.6/en/observability/tracing",
"v1.14.6/en/observability/overview",
"v1.14.6/en/observability/arize-phoenix",
"v1.14.6/en/observability/braintrust",
"v1.14.6/en/observability/datadog",
"v1.14.6/en/observability/galileo",
"v1.14.6/en/observability/langdb",
"v1.14.6/en/observability/langfuse",
"v1.14.6/en/observability/langtrace",
"v1.14.6/en/observability/maxim",
"v1.14.6/en/observability/mlflow",
"v1.14.6/en/observability/neatlogs",
"v1.14.6/en/observability/openlit",
"v1.14.6/en/observability/opik",
"v1.14.6/en/observability/patronus-evaluation",
"v1.14.6/en/observability/portkey",
"v1.14.6/en/observability/weave",
"v1.14.6/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.6/en/learn/overview",
"v1.14.6/en/learn/llm-selection-guide",
"v1.14.6/en/learn/conditional-tasks",
"v1.14.6/en/learn/coding-agents",
"v1.14.6/en/learn/create-custom-tools",
"v1.14.6/en/learn/custom-llm",
"v1.14.6/en/learn/custom-manager-agent",
"v1.14.6/en/learn/customizing-agents",
"v1.14.6/en/learn/dalle-image-generation",
"v1.14.6/en/learn/force-tool-output-as-result",
"v1.14.6/en/learn/hierarchical-process",
"v1.14.6/en/learn/human-input-on-execution",
"v1.14.6/en/learn/human-in-the-loop",
"v1.14.6/en/learn/human-feedback-in-flows",
"v1.14.6/en/learn/kickoff-async",
"v1.14.6/en/learn/kickoff-for-each",
"v1.14.6/en/learn/llm-connections",
"v1.14.6/en/learn/litellm-removal-guide",
"v1.14.6/en/learn/multimodal-agents",
"v1.14.6/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.6/en/learn/sequential-process",
"v1.14.6/en/learn/using-annotations",
"v1.14.6/en/learn/execution-hooks",
"v1.14.6/en/learn/llm-hooks",
"v1.14.6/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.6/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.6/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.6/en/enterprise/features/automations",
"v1.14.6/en/enterprise/features/crew-studio",
"v1.14.6/en/enterprise/features/marketplace",
"v1.14.6/en/enterprise/features/agent-repositories",
"v1.14.6/en/enterprise/features/tools-and-integrations",
"v1.14.6/en/enterprise/features/pii-trace-redactions",
"v1.14.6/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.6/en/enterprise/features/traces",
"v1.14.6/en/enterprise/features/webhook-streaming",
"v1.14.6/en/enterprise/features/hallucination-guardrail",
"v1.14.6/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.6/en/enterprise/features/sso",
"v1.14.6/en/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.6/en/enterprise/features/secrets-manager/overview",
"v1.14.6/en/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.6/en/enterprise/features/secrets-manager/aws",
"v1.14.6/en/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.6/en/enterprise/features/secrets-manager/gcp",
"v1.14.6/en/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.6/en/enterprise/features/secrets-manager/azure",
"v1.14.6/en/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.6/en/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.6/en/enterprise/integrations/asana",
"v1.14.6/en/enterprise/integrations/box",
"v1.14.6/en/enterprise/integrations/clickup",
"v1.14.6/en/enterprise/integrations/github",
"v1.14.6/en/enterprise/integrations/gmail",
"v1.14.6/en/enterprise/integrations/google_calendar",
"v1.14.6/en/enterprise/integrations/google_contacts",
"v1.14.6/en/enterprise/integrations/google_docs",
"v1.14.6/en/enterprise/integrations/google_drive",
"v1.14.6/en/enterprise/integrations/google_sheets",
"v1.14.6/en/enterprise/integrations/google_slides",
"v1.14.6/en/enterprise/integrations/hubspot",
"v1.14.6/en/enterprise/integrations/jira",
"v1.14.6/en/enterprise/integrations/linear",
"v1.14.6/en/enterprise/integrations/microsoft_excel",
"v1.14.6/en/enterprise/integrations/microsoft_onedrive",
"v1.14.6/en/enterprise/integrations/microsoft_outlook",
"v1.14.6/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.6/en/enterprise/integrations/microsoft_teams",
"v1.14.6/en/enterprise/integrations/microsoft_word",
"v1.14.6/en/enterprise/integrations/notion",
"v1.14.6/en/enterprise/integrations/salesforce",
"v1.14.6/en/enterprise/integrations/shopify",
"v1.14.6/en/enterprise/integrations/slack",
"v1.14.6/en/enterprise/integrations/stripe",
"v1.14.6/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.6/en/enterprise/guides/automation-triggers",
"v1.14.6/en/enterprise/guides/gmail-trigger",
"v1.14.6/en/enterprise/guides/google-calendar-trigger",
"v1.14.6/en/enterprise/guides/google-drive-trigger",
"v1.14.6/en/enterprise/guides/outlook-trigger",
"v1.14.6/en/enterprise/guides/onedrive-trigger",
"v1.14.6/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.6/en/enterprise/guides/slack-trigger",
"v1.14.6/en/enterprise/guides/hubspot-trigger",
"v1.14.6/en/enterprise/guides/salesforce-trigger",
"v1.14.6/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.6/en/enterprise/guides/build-crew",
"v1.14.6/en/enterprise/guides/prepare-for-deployment",
"v1.14.6/en/enterprise/guides/deploy-to-amp",
"v1.14.6/en/enterprise/guides/private-package-registry",
"v1.14.6/en/enterprise/guides/kickoff-crew",
"v1.14.6/en/enterprise/guides/update-crew",
"v1.14.6/en/enterprise/guides/enable-crew-studio",
"v1.14.6/en/enterprise/guides/capture_telemetry_logs",
"v1.14.6/en/enterprise/guides/azure-openai-setup",
"v1.14.6/en/enterprise/guides/vertex-ai-workload-identity-setup",
"v1.14.6/en/enterprise/guides/tool-repository",
"v1.14.6/en/enterprise/guides/custom-mcp-server",
"v1.14.6/en/enterprise/guides/react-component-export",
"v1.14.6/en/enterprise/guides/team-management",
"v1.14.6/en/enterprise/guides/human-in-the-loop",
"v1.14.6/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.6/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.6/en/api-reference/introduction",
"v1.14.6/en/api-reference/inputs",
"v1.14.6/en/api-reference/kickoff",
"v1.14.6/en/api-reference/resume",
"v1.14.6/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.6/en/examples/example",
"v1.14.6/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.6/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.5",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.5/en/introduction",
"v1.14.5/en/guides/coding-tools/build-with-ai",
"v1.14.5/en/skills",
"v1.14.5/en/installation",
"v1.14.5/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.5/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.5/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.5/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.5/en/guides/flows/first-flow",
"v1.14.5/en/guides/flows/mastering-flow-state",
"v1.14.5/en/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.5/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.5/en/guides/coding-tools/agents-md",
"v1.14.5/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.5/en/guides/advanced/customizing-prompts",
"v1.14.5/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.5/en/guides/migration/migrating-from-langgraph",
"v1.14.5/en/guides/migration/upgrading-crewai"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.5/en/concepts/agents",
"v1.14.5/en/concepts/agent-capabilities",
"v1.14.5/en/concepts/tasks",
"v1.14.5/en/concepts/crews",
"v1.14.5/en/concepts/flows",
"v1.14.5/en/concepts/production-architecture",
"v1.14.5/en/concepts/knowledge",
"v1.14.5/en/concepts/skills",
"v1.14.5/en/concepts/llms",
"v1.14.5/en/concepts/files",
"v1.14.5/en/concepts/processes",
"v1.14.5/en/concepts/collaboration",
"v1.14.5/en/concepts/training",
"v1.14.5/en/concepts/memory",
"v1.14.5/en/concepts/reasoning",
"v1.14.5/en/concepts/planning",
"v1.14.5/en/concepts/testing",
"v1.14.5/en/concepts/cli",
"v1.14.5/en/concepts/tools",
"v1.14.5/en/concepts/event-listener",
"v1.14.5/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.5/en/mcp/overview",
"v1.14.5/en/mcp/dsl-integration",
"v1.14.5/en/mcp/stdio",
"v1.14.5/en/mcp/sse",
"v1.14.5/en/mcp/streamable-http",
"v1.14.5/en/mcp/multiple-servers",
"v1.14.5/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.5/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.5/en/tools/file-document/overview",
"v1.14.5/en/tools/file-document/filereadtool",
"v1.14.5/en/tools/file-document/filewritetool",
"v1.14.5/en/tools/file-document/pdfsearchtool",
"v1.14.5/en/tools/file-document/docxsearchtool",
"v1.14.5/en/tools/file-document/mdxsearchtool",
"v1.14.5/en/tools/file-document/xmlsearchtool",
"v1.14.5/en/tools/file-document/txtsearchtool",
"v1.14.5/en/tools/file-document/jsonsearchtool",
"v1.14.5/en/tools/file-document/csvsearchtool",
"v1.14.5/en/tools/file-document/directorysearchtool",
"v1.14.5/en/tools/file-document/directoryreadtool",
"v1.14.5/en/tools/file-document/ocrtool",
"v1.14.5/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.5/en/tools/web-scraping/overview",
"v1.14.5/en/tools/web-scraping/scrapewebsitetool",
"v1.14.5/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.5/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.5/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.5/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.5/en/tools/web-scraping/spidertool",
"v1.14.5/en/tools/web-scraping/browserbaseloadtool",
"v1.14.5/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.5/en/tools/web-scraping/stagehandtool",
"v1.14.5/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.5/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.5/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.5/en/tools/web-scraping/brightdata-tools",
"v1.14.5/en/tools/web-scraping/youai-contents"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.5/en/tools/search-research/overview",
"v1.14.5/en/tools/search-research/serperdevtool",
"v1.14.5/en/tools/search-research/bravesearchtool",
"v1.14.5/en/tools/search-research/exasearchtool",
"v1.14.5/en/tools/search-research/linkupsearchtool",
"v1.14.5/en/tools/search-research/githubsearchtool",
"v1.14.5/en/tools/search-research/websitesearchtool",
"v1.14.5/en/tools/search-research/codedocssearchtool",
"v1.14.5/en/tools/search-research/youtubechannelsearchtool",
"v1.14.5/en/tools/search-research/youtubevideosearchtool",
"v1.14.5/en/tools/search-research/tavilysearchtool",
"v1.14.5/en/tools/search-research/tavilyextractortool",
"v1.14.5/en/tools/search-research/tavilyresearchtool",
"v1.14.5/en/tools/search-research/arxivpapertool",
"v1.14.5/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.5/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.5/en/tools/search-research/databricks-query-tool",
"v1.14.5/en/tools/search-research/youai-search"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.5/en/tools/database-data/overview",
"v1.14.5/en/tools/database-data/mysqltool",
"v1.14.5/en/tools/database-data/pgsearchtool",
"v1.14.5/en/tools/database-data/snowflakesearchtool",
"v1.14.5/en/tools/database-data/nl2sqltool",
"v1.14.5/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.5/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.5/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.5/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.5/en/tools/ai-ml/overview",
"v1.14.5/en/tools/ai-ml/dalletool",
"v1.14.5/en/tools/ai-ml/visiontool",
"v1.14.5/en/tools/ai-ml/aimindtool",
"v1.14.5/en/tools/ai-ml/llamaindextool",
"v1.14.5/en/tools/ai-ml/langchaintool",
"v1.14.5/en/tools/ai-ml/ragtool",
"v1.14.5/en/tools/ai-ml/codeinterpretertool",
"v1.14.5/en/tools/ai-ml/daytona",
"v1.14.5/en/tools/ai-ml/e2bsandboxtools"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.5/en/tools/cloud-storage/overview",
"v1.14.5/en/tools/cloud-storage/s3readertool",
"v1.14.5/en/tools/cloud-storage/s3writertool",
"v1.14.5/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.5/en/tools/integration/overview",
"v1.14.5/en/tools/integration/bedrockinvokeagenttool",
"v1.14.5/en/tools/integration/crewaiautomationtool",
"v1.14.5/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.5/en/tools/automation/overview",
"v1.14.5/en/tools/automation/apifyactorstool",
"v1.14.5/en/tools/automation/composiotool",
"v1.14.5/en/tools/automation/multiontool",
"v1.14.5/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.5/en/observability/tracing",
"v1.14.5/en/observability/overview",
"v1.14.5/en/observability/arize-phoenix",
"v1.14.5/en/observability/braintrust",
"v1.14.5/en/observability/datadog",
"v1.14.5/en/observability/galileo",
"v1.14.5/en/observability/langdb",
"v1.14.5/en/observability/langfuse",
"v1.14.5/en/observability/langtrace",
"v1.14.5/en/observability/maxim",
"v1.14.5/en/observability/mlflow",
"v1.14.5/en/observability/neatlogs",
"v1.14.5/en/observability/openlit",
"v1.14.5/en/observability/opik",
"v1.14.5/en/observability/patronus-evaluation",
"v1.14.5/en/observability/portkey",
"v1.14.5/en/observability/weave",
"v1.14.5/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.5/en/learn/overview",
"v1.14.5/en/learn/llm-selection-guide",
"v1.14.5/en/learn/conditional-tasks",
"v1.14.5/en/learn/coding-agents",
"v1.14.5/en/learn/create-custom-tools",
"v1.14.5/en/learn/custom-llm",
"v1.14.5/en/learn/custom-manager-agent",
"v1.14.5/en/learn/customizing-agents",
"v1.14.5/en/learn/dalle-image-generation",
"v1.14.5/en/learn/force-tool-output-as-result",
"v1.14.5/en/learn/hierarchical-process",
"v1.14.5/en/learn/human-input-on-execution",
"v1.14.5/en/learn/human-in-the-loop",
"v1.14.5/en/learn/human-feedback-in-flows",
"v1.14.5/en/learn/kickoff-async",
"v1.14.5/en/learn/kickoff-for-each",
"v1.14.5/en/learn/llm-connections",
"v1.14.5/en/learn/litellm-removal-guide",
"v1.14.5/en/learn/multimodal-agents",
"v1.14.5/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.5/en/learn/sequential-process",
"v1.14.5/en/learn/using-annotations",
"v1.14.5/en/learn/execution-hooks",
"v1.14.5/en/learn/llm-hooks",
"v1.14.5/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.5/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.5/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.5/en/enterprise/features/automations",
"v1.14.5/en/enterprise/features/crew-studio",
"v1.14.5/en/enterprise/features/marketplace",
"v1.14.5/en/enterprise/features/agent-repositories",
"v1.14.5/en/enterprise/features/tools-and-integrations",
"v1.14.5/en/enterprise/features/pii-trace-redactions",
"v1.14.5/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.5/en/enterprise/features/traces",
"v1.14.5/en/enterprise/features/webhook-streaming",
"v1.14.5/en/enterprise/features/hallucination-guardrail",
"v1.14.5/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.5/en/enterprise/features/sso",
"v1.14.5/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.5/en/enterprise/integrations/asana",
"v1.14.5/en/enterprise/integrations/box",
"v1.14.5/en/enterprise/integrations/clickup",
"v1.14.5/en/enterprise/integrations/github",
"v1.14.5/en/enterprise/integrations/gmail",
"v1.14.5/en/enterprise/integrations/google_calendar",
"v1.14.5/en/enterprise/integrations/google_contacts",
"v1.14.5/en/enterprise/integrations/google_docs",
"v1.14.5/en/enterprise/integrations/google_drive",
"v1.14.5/en/enterprise/integrations/google_sheets",
"v1.14.5/en/enterprise/integrations/google_slides",
"v1.14.5/en/enterprise/integrations/hubspot",
"v1.14.5/en/enterprise/integrations/jira",
"v1.14.5/en/enterprise/integrations/linear",
"v1.14.5/en/enterprise/integrations/microsoft_excel",
"v1.14.5/en/enterprise/integrations/microsoft_onedrive",
"v1.14.5/en/enterprise/integrations/microsoft_outlook",
"v1.14.5/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.5/en/enterprise/integrations/microsoft_teams",
"v1.14.5/en/enterprise/integrations/microsoft_word",
"v1.14.5/en/enterprise/integrations/notion",
"v1.14.5/en/enterprise/integrations/salesforce",
"v1.14.5/en/enterprise/integrations/shopify",
"v1.14.5/en/enterprise/integrations/slack",
"v1.14.5/en/enterprise/integrations/stripe",
"v1.14.5/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.5/en/enterprise/guides/automation-triggers",
"v1.14.5/en/enterprise/guides/gmail-trigger",
"v1.14.5/en/enterprise/guides/google-calendar-trigger",
"v1.14.5/en/enterprise/guides/google-drive-trigger",
"v1.14.5/en/enterprise/guides/outlook-trigger",
"v1.14.5/en/enterprise/guides/onedrive-trigger",
"v1.14.5/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.5/en/enterprise/guides/slack-trigger",
"v1.14.5/en/enterprise/guides/hubspot-trigger",
"v1.14.5/en/enterprise/guides/salesforce-trigger",
"v1.14.5/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.5/en/enterprise/guides/build-crew",
"v1.14.5/en/enterprise/guides/prepare-for-deployment",
"v1.14.5/en/enterprise/guides/deploy-to-amp",
"v1.14.5/en/enterprise/guides/private-package-registry",
"v1.14.5/en/enterprise/guides/kickoff-crew",
"v1.14.5/en/enterprise/guides/update-crew",
"v1.14.5/en/enterprise/guides/enable-crew-studio",
"v1.14.5/en/enterprise/guides/capture_telemetry_logs",
"v1.14.5/en/enterprise/guides/azure-openai-setup",
"v1.14.5/en/enterprise/guides/vertex-ai-workload-identity-setup",
"v1.14.5/en/enterprise/guides/tool-repository",
"v1.14.5/en/enterprise/guides/custom-mcp-server",
"v1.14.5/en/enterprise/guides/react-component-export",
"v1.14.5/en/enterprise/guides/team-management",
"v1.14.5/en/enterprise/guides/human-in-the-loop",
"v1.14.5/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.5/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.5/en/api-reference/introduction",
"v1.14.5/en/api-reference/inputs",
"v1.14.5/en/api-reference/kickoff",
"v1.14.5/en/api-reference/resume",
"v1.14.5/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.5/en/examples/example",
"v1.14.5/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.5/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.4",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.4/en/introduction",
"v1.14.4/en/guides/coding-tools/build-with-ai",
"v1.14.4/en/skills",
"v1.14.4/en/installation",
"v1.14.4/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.4/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.4/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.4/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.4/en/guides/flows/first-flow",
"v1.14.4/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.4/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.4/en/guides/coding-tools/agents-md",
"v1.14.4/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.4/en/guides/advanced/customizing-prompts",
"v1.14.4/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.4/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.4/en/concepts/agents",
"v1.14.4/en/concepts/agent-capabilities",
"v1.14.4/en/concepts/tasks",
"v1.14.4/en/concepts/crews",
"v1.14.4/en/concepts/flows",
"v1.14.4/en/concepts/production-architecture",
"v1.14.4/en/concepts/knowledge",
"v1.14.4/en/concepts/skills",
"v1.14.4/en/concepts/llms",
"v1.14.4/en/concepts/files",
"v1.14.4/en/concepts/processes",
"v1.14.4/en/concepts/collaboration",
"v1.14.4/en/concepts/training",
"v1.14.4/en/concepts/memory",
"v1.14.4/en/concepts/reasoning",
"v1.14.4/en/concepts/planning",
"v1.14.4/en/concepts/testing",
"v1.14.4/en/concepts/cli",
"v1.14.4/en/concepts/tools",
"v1.14.4/en/concepts/event-listener",
"v1.14.4/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.4/en/mcp/overview",
"v1.14.4/en/mcp/dsl-integration",
"v1.14.4/en/mcp/stdio",
"v1.14.4/en/mcp/sse",
"v1.14.4/en/mcp/streamable-http",
"v1.14.4/en/mcp/multiple-servers",
"v1.14.4/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.4/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.4/en/tools/file-document/overview",
"v1.14.4/en/tools/file-document/filereadtool",
"v1.14.4/en/tools/file-document/filewritetool",
"v1.14.4/en/tools/file-document/pdfsearchtool",
"v1.14.4/en/tools/file-document/docxsearchtool",
"v1.14.4/en/tools/file-document/mdxsearchtool",
"v1.14.4/en/tools/file-document/xmlsearchtool",
"v1.14.4/en/tools/file-document/txtsearchtool",
"v1.14.4/en/tools/file-document/jsonsearchtool",
"v1.14.4/en/tools/file-document/csvsearchtool",
"v1.14.4/en/tools/file-document/directorysearchtool",
"v1.14.4/en/tools/file-document/directoryreadtool",
"v1.14.4/en/tools/file-document/ocrtool",
"v1.14.4/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.4/en/tools/web-scraping/overview",
"v1.14.4/en/tools/web-scraping/scrapewebsitetool",
"v1.14.4/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.4/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.4/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.4/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.4/en/tools/web-scraping/spidertool",
"v1.14.4/en/tools/web-scraping/browserbaseloadtool",
"v1.14.4/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.4/en/tools/web-scraping/stagehandtool",
"v1.14.4/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.4/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.4/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.4/en/tools/web-scraping/brightdata-tools",
"v1.14.4/en/tools/web-scraping/youai-contents"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.4/en/tools/search-research/overview",
"v1.14.4/en/tools/search-research/serperdevtool",
"v1.14.4/en/tools/search-research/bravesearchtool",
"v1.14.4/en/tools/search-research/exasearchtool",
"v1.14.4/en/tools/search-research/linkupsearchtool",
"v1.14.4/en/tools/search-research/githubsearchtool",
"v1.14.4/en/tools/search-research/websitesearchtool",
"v1.14.4/en/tools/search-research/codedocssearchtool",
"v1.14.4/en/tools/search-research/youtubechannelsearchtool",
"v1.14.4/en/tools/search-research/youtubevideosearchtool",
"v1.14.4/en/tools/search-research/tavilysearchtool",
"v1.14.4/en/tools/search-research/tavilyextractortool",
"v1.14.4/en/tools/search-research/tavilyresearchtool",
"v1.14.4/en/tools/search-research/arxivpapertool",
"v1.14.4/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.4/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.4/en/tools/search-research/databricks-query-tool",
"v1.14.4/en/tools/search-research/youai-search"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.4/en/tools/database-data/overview",
"v1.14.4/en/tools/database-data/mysqltool",
"v1.14.4/en/tools/database-data/pgsearchtool",
"v1.14.4/en/tools/database-data/snowflakesearchtool",
"v1.14.4/en/tools/database-data/nl2sqltool",
"v1.14.4/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.4/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.4/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.4/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.4/en/tools/ai-ml/overview",
"v1.14.4/en/tools/ai-ml/dalletool",
"v1.14.4/en/tools/ai-ml/visiontool",
"v1.14.4/en/tools/ai-ml/aimindtool",
"v1.14.4/en/tools/ai-ml/llamaindextool",
"v1.14.4/en/tools/ai-ml/langchaintool",
"v1.14.4/en/tools/ai-ml/ragtool",
"v1.14.4/en/tools/ai-ml/codeinterpretertool",
"v1.14.4/en/tools/ai-ml/daytona",
"v1.14.4/en/tools/ai-ml/e2bsandboxtools"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.4/en/tools/cloud-storage/overview",
"v1.14.4/en/tools/cloud-storage/s3readertool",
"v1.14.4/en/tools/cloud-storage/s3writertool",
"v1.14.4/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.4/en/tools/integration/overview",
"v1.14.4/en/tools/integration/bedrockinvokeagenttool",
"v1.14.4/en/tools/integration/crewaiautomationtool",
"v1.14.4/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.4/en/tools/automation/overview",
"v1.14.4/en/tools/automation/apifyactorstool",
"v1.14.4/en/tools/automation/composiotool",
"v1.14.4/en/tools/automation/multiontool",
"v1.14.4/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.4/en/observability/tracing",
"v1.14.4/en/observability/overview",
"v1.14.4/en/observability/arize-phoenix",
"v1.14.4/en/observability/braintrust",
"v1.14.4/en/observability/datadog",
"v1.14.4/en/observability/galileo",
"v1.14.4/en/observability/langdb",
"v1.14.4/en/observability/langfuse",
"v1.14.4/en/observability/langtrace",
"v1.14.4/en/observability/maxim",
"v1.14.4/en/observability/mlflow",
"v1.14.4/en/observability/neatlogs",
"v1.14.4/en/observability/openlit",
"v1.14.4/en/observability/opik",
"v1.14.4/en/observability/patronus-evaluation",
"v1.14.4/en/observability/portkey",
"v1.14.4/en/observability/weave",
"v1.14.4/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.4/en/learn/overview",
"v1.14.4/en/learn/llm-selection-guide",
"v1.14.4/en/learn/conditional-tasks",
"v1.14.4/en/learn/coding-agents",
"v1.14.4/en/learn/create-custom-tools",
"v1.14.4/en/learn/custom-llm",
"v1.14.4/en/learn/custom-manager-agent",
"v1.14.4/en/learn/customizing-agents",
"v1.14.4/en/learn/dalle-image-generation",
"v1.14.4/en/learn/force-tool-output-as-result",
"v1.14.4/en/learn/hierarchical-process",
"v1.14.4/en/learn/human-input-on-execution",
"v1.14.4/en/learn/human-in-the-loop",
"v1.14.4/en/learn/human-feedback-in-flows",
"v1.14.4/en/learn/kickoff-async",
"v1.14.4/en/learn/kickoff-for-each",
"v1.14.4/en/learn/llm-connections",
"v1.14.4/en/learn/litellm-removal-guide",
"v1.14.4/en/learn/multimodal-agents",
"v1.14.4/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.4/en/learn/sequential-process",
"v1.14.4/en/learn/using-annotations",
"v1.14.4/en/learn/execution-hooks",
"v1.14.4/en/learn/llm-hooks",
"v1.14.4/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.4/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.4/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.4/en/enterprise/features/automations",
"v1.14.4/en/enterprise/features/crew-studio",
"v1.14.4/en/enterprise/features/marketplace",
"v1.14.4/en/enterprise/features/agent-repositories",
"v1.14.4/en/enterprise/features/tools-and-integrations",
"v1.14.4/en/enterprise/features/pii-trace-redactions",
"v1.14.4/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.4/en/enterprise/features/traces",
"v1.14.4/en/enterprise/features/webhook-streaming",
"v1.14.4/en/enterprise/features/hallucination-guardrail",
"v1.14.4/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.4/en/enterprise/features/sso",
"v1.14.4/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.4/en/enterprise/integrations/asana",
"v1.14.4/en/enterprise/integrations/box",
"v1.14.4/en/enterprise/integrations/clickup",
"v1.14.4/en/enterprise/integrations/github",
"v1.14.4/en/enterprise/integrations/gmail",
"v1.14.4/en/enterprise/integrations/google_calendar",
"v1.14.4/en/enterprise/integrations/google_contacts",
"v1.14.4/en/enterprise/integrations/google_docs",
"v1.14.4/en/enterprise/integrations/google_drive",
"v1.14.4/en/enterprise/integrations/google_sheets",
"v1.14.4/en/enterprise/integrations/google_slides",
"v1.14.4/en/enterprise/integrations/hubspot",
"v1.14.4/en/enterprise/integrations/jira",
"v1.14.4/en/enterprise/integrations/linear",
"v1.14.4/en/enterprise/integrations/microsoft_excel",
"v1.14.4/en/enterprise/integrations/microsoft_onedrive",
"v1.14.4/en/enterprise/integrations/microsoft_outlook",
"v1.14.4/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.4/en/enterprise/integrations/microsoft_teams",
"v1.14.4/en/enterprise/integrations/microsoft_word",
"v1.14.4/en/enterprise/integrations/notion",
"v1.14.4/en/enterprise/integrations/salesforce",
"v1.14.4/en/enterprise/integrations/shopify",
"v1.14.4/en/enterprise/integrations/slack",
"v1.14.4/en/enterprise/integrations/stripe",
"v1.14.4/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.4/en/enterprise/guides/automation-triggers",
"v1.14.4/en/enterprise/guides/gmail-trigger",
"v1.14.4/en/enterprise/guides/google-calendar-trigger",
"v1.14.4/en/enterprise/guides/google-drive-trigger",
"v1.14.4/en/enterprise/guides/outlook-trigger",
"v1.14.4/en/enterprise/guides/onedrive-trigger",
"v1.14.4/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.4/en/enterprise/guides/slack-trigger",
"v1.14.4/en/enterprise/guides/hubspot-trigger",
"v1.14.4/en/enterprise/guides/salesforce-trigger",
"v1.14.4/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.4/en/enterprise/guides/build-crew",
"v1.14.4/en/enterprise/guides/prepare-for-deployment",
"v1.14.4/en/enterprise/guides/deploy-to-amp",
"v1.14.4/en/enterprise/guides/private-package-registry",
"v1.14.4/en/enterprise/guides/kickoff-crew",
"v1.14.4/en/enterprise/guides/update-crew",
"v1.14.4/en/enterprise/guides/enable-crew-studio",
"v1.14.4/en/enterprise/guides/capture_telemetry_logs",
"v1.14.4/en/enterprise/guides/azure-openai-setup",
"v1.14.4/en/enterprise/guides/vertex-ai-workload-identity-setup",
"v1.14.4/en/enterprise/guides/tool-repository",
"v1.14.4/en/enterprise/guides/custom-mcp-server",
"v1.14.4/en/enterprise/guides/react-component-export",
"v1.14.4/en/enterprise/guides/team-management",
"v1.14.4/en/enterprise/guides/human-in-the-loop",
"v1.14.4/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.4/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.4/en/api-reference/introduction",
"v1.14.4/en/api-reference/inputs",
"v1.14.4/en/api-reference/kickoff",
"v1.14.4/en/api-reference/resume",
"v1.14.4/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.4/en/examples/example",
"v1.14.4/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.4/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.3",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.3/en/introduction",
"v1.14.3/en/guides/coding-tools/build-with-ai",
"v1.14.3/en/skills",
"v1.14.3/en/installation",
"v1.14.3/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.3/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.3/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.3/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.3/en/guides/flows/first-flow",
"v1.14.3/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.3/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.3/en/guides/coding-tools/agents-md",
"v1.14.3/en/guides/coding-tools/build-with-ai"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.3/en/guides/advanced/customizing-prompts",
"v1.14.3/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.3/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.3/en/concepts/agents",
"v1.14.3/en/concepts/agent-capabilities",
"v1.14.3/en/concepts/tasks",
"v1.14.3/en/concepts/crews",
"v1.14.3/en/concepts/flows",
"v1.14.3/en/concepts/production-architecture",
"v1.14.3/en/concepts/knowledge",
"v1.14.3/en/concepts/skills",
"v1.14.3/en/concepts/llms",
"v1.14.3/en/concepts/files",
"v1.14.3/en/concepts/processes",
"v1.14.3/en/concepts/collaboration",
"v1.14.3/en/concepts/training",
"v1.14.3/en/concepts/memory",
"v1.14.3/en/concepts/reasoning",
"v1.14.3/en/concepts/planning",
"v1.14.3/en/concepts/testing",
"v1.14.3/en/concepts/cli",
"v1.14.3/en/concepts/tools",
"v1.14.3/en/concepts/event-listener",
"v1.14.3/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.3/en/mcp/overview",
"v1.14.3/en/mcp/dsl-integration",
"v1.14.3/en/mcp/stdio",
"v1.14.3/en/mcp/sse",
"v1.14.3/en/mcp/streamable-http",
"v1.14.3/en/mcp/multiple-servers",
"v1.14.3/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.3/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.3/en/tools/file-document/overview",
"v1.14.3/en/tools/file-document/filereadtool",
"v1.14.3/en/tools/file-document/filewritetool",
"v1.14.3/en/tools/file-document/pdfsearchtool",
"v1.14.3/en/tools/file-document/docxsearchtool",
"v1.14.3/en/tools/file-document/mdxsearchtool",
"v1.14.3/en/tools/file-document/xmlsearchtool",
"v1.14.3/en/tools/file-document/txtsearchtool",
"v1.14.3/en/tools/file-document/jsonsearchtool",
"v1.14.3/en/tools/file-document/csvsearchtool",
"v1.14.3/en/tools/file-document/directorysearchtool",
"v1.14.3/en/tools/file-document/directoryreadtool",
"v1.14.3/en/tools/file-document/ocrtool",
"v1.14.3/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.3/en/tools/web-scraping/overview",
"v1.14.3/en/tools/web-scraping/scrapewebsitetool",
"v1.14.3/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.3/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.3/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.3/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.3/en/tools/web-scraping/spidertool",
"v1.14.3/en/tools/web-scraping/browserbaseloadtool",
"v1.14.3/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.3/en/tools/web-scraping/stagehandtool",
"v1.14.3/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.3/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.3/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.3/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.3/en/tools/search-research/overview",
"v1.14.3/en/tools/search-research/serperdevtool",
"v1.14.3/en/tools/search-research/bravesearchtool",
"v1.14.3/en/tools/search-research/exasearchtool",
"v1.14.3/en/tools/search-research/linkupsearchtool",
"v1.14.3/en/tools/search-research/githubsearchtool",
"v1.14.3/en/tools/search-research/websitesearchtool",
"v1.14.3/en/tools/search-research/codedocssearchtool",
"v1.14.3/en/tools/search-research/youtubechannelsearchtool",
"v1.14.3/en/tools/search-research/youtubevideosearchtool",
"v1.14.3/en/tools/search-research/tavilysearchtool",
"v1.14.3/en/tools/search-research/tavilyextractortool",
"v1.14.3/en/tools/search-research/arxivpapertool",
"v1.14.3/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.3/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.3/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.3/en/tools/database-data/overview",
"v1.14.3/en/tools/database-data/mysqltool",
"v1.14.3/en/tools/database-data/pgsearchtool",
"v1.14.3/en/tools/database-data/snowflakesearchtool",
"v1.14.3/en/tools/database-data/nl2sqltool",
"v1.14.3/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.3/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.3/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.3/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.3/en/tools/ai-ml/overview",
"v1.14.3/en/tools/ai-ml/dalletool",
"v1.14.3/en/tools/ai-ml/visiontool",
"v1.14.3/en/tools/ai-ml/aimindtool",
"v1.14.3/en/tools/ai-ml/llamaindextool",
"v1.14.3/en/tools/ai-ml/langchaintool",
"v1.14.3/en/tools/ai-ml/ragtool",
"v1.14.3/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.3/en/tools/cloud-storage/overview",
"v1.14.3/en/tools/cloud-storage/s3readertool",
"v1.14.3/en/tools/cloud-storage/s3writertool",
"v1.14.3/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.3/en/tools/integration/overview",
"v1.14.3/en/tools/integration/bedrockinvokeagenttool",
"v1.14.3/en/tools/integration/crewaiautomationtool",
"v1.14.3/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.3/en/tools/automation/overview",
"v1.14.3/en/tools/automation/apifyactorstool",
"v1.14.3/en/tools/automation/composiotool",
"v1.14.3/en/tools/automation/multiontool",
"v1.14.3/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.3/en/observability/tracing",
"v1.14.3/en/observability/overview",
"v1.14.3/en/observability/arize-phoenix",
"v1.14.3/en/observability/braintrust",
"v1.14.3/en/observability/datadog",
"v1.14.3/en/observability/galileo",
"v1.14.3/en/observability/langdb",
"v1.14.3/en/observability/langfuse",
"v1.14.3/en/observability/langtrace",
"v1.14.3/en/observability/maxim",
"v1.14.3/en/observability/mlflow",
"v1.14.3/en/observability/neatlogs",
"v1.14.3/en/observability/openlit",
"v1.14.3/en/observability/opik",
"v1.14.3/en/observability/patronus-evaluation",
"v1.14.3/en/observability/portkey",
"v1.14.3/en/observability/weave",
"v1.14.3/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.3/en/learn/overview",
"v1.14.3/en/learn/llm-selection-guide",
"v1.14.3/en/learn/conditional-tasks",
"v1.14.3/en/learn/coding-agents",
"v1.14.3/en/learn/create-custom-tools",
"v1.14.3/en/learn/custom-llm",
"v1.14.3/en/learn/custom-manager-agent",
"v1.14.3/en/learn/customizing-agents",
"v1.14.3/en/learn/dalle-image-generation",
"v1.14.3/en/learn/force-tool-output-as-result",
"v1.14.3/en/learn/hierarchical-process",
"v1.14.3/en/learn/human-input-on-execution",
"v1.14.3/en/learn/human-in-the-loop",
"v1.14.3/en/learn/human-feedback-in-flows",
"v1.14.3/en/learn/kickoff-async",
"v1.14.3/en/learn/kickoff-for-each",
"v1.14.3/en/learn/llm-connections",
"v1.14.3/en/learn/litellm-removal-guide",
"v1.14.3/en/learn/multimodal-agents",
"v1.14.3/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.3/en/learn/sequential-process",
"v1.14.3/en/learn/using-annotations",
"v1.14.3/en/learn/execution-hooks",
"v1.14.3/en/learn/llm-hooks",
"v1.14.3/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.3/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.3/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.3/en/enterprise/features/automations",
"v1.14.3/en/enterprise/features/crew-studio",
"v1.14.3/en/enterprise/features/marketplace",
"v1.14.3/en/enterprise/features/agent-repositories",
"v1.14.3/en/enterprise/features/tools-and-integrations",
"v1.14.3/en/enterprise/features/pii-trace-redactions",
"v1.14.3/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.3/en/enterprise/features/traces",
"v1.14.3/en/enterprise/features/webhook-streaming",
"v1.14.3/en/enterprise/features/hallucination-guardrail",
"v1.14.3/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.3/en/enterprise/features/sso",
"v1.14.3/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.3/en/enterprise/integrations/asana",
"v1.14.3/en/enterprise/integrations/box",
"v1.14.3/en/enterprise/integrations/clickup",
"v1.14.3/en/enterprise/integrations/github",
"v1.14.3/en/enterprise/integrations/gmail",
"v1.14.3/en/enterprise/integrations/google_calendar",
"v1.14.3/en/enterprise/integrations/google_contacts",
"v1.14.3/en/enterprise/integrations/google_docs",
"v1.14.3/en/enterprise/integrations/google_drive",
"v1.14.3/en/enterprise/integrations/google_sheets",
"v1.14.3/en/enterprise/integrations/google_slides",
"v1.14.3/en/enterprise/integrations/hubspot",
"v1.14.3/en/enterprise/integrations/jira",
"v1.14.3/en/enterprise/integrations/linear",
"v1.14.3/en/enterprise/integrations/microsoft_excel",
"v1.14.3/en/enterprise/integrations/microsoft_onedrive",
"v1.14.3/en/enterprise/integrations/microsoft_outlook",
"v1.14.3/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.3/en/enterprise/integrations/microsoft_teams",
"v1.14.3/en/enterprise/integrations/microsoft_word",
"v1.14.3/en/enterprise/integrations/notion",
"v1.14.3/en/enterprise/integrations/salesforce",
"v1.14.3/en/enterprise/integrations/shopify",
"v1.14.3/en/enterprise/integrations/slack",
"v1.14.3/en/enterprise/integrations/stripe",
"v1.14.3/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.3/en/enterprise/guides/automation-triggers",
"v1.14.3/en/enterprise/guides/gmail-trigger",
"v1.14.3/en/enterprise/guides/google-calendar-trigger",
"v1.14.3/en/enterprise/guides/google-drive-trigger",
"v1.14.3/en/enterprise/guides/outlook-trigger",
"v1.14.3/en/enterprise/guides/onedrive-trigger",
"v1.14.3/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.3/en/enterprise/guides/slack-trigger",
"v1.14.3/en/enterprise/guides/hubspot-trigger",
"v1.14.3/en/enterprise/guides/salesforce-trigger",
"v1.14.3/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.3/en/enterprise/guides/build-crew",
"v1.14.3/en/enterprise/guides/prepare-for-deployment",
"v1.14.3/en/enterprise/guides/deploy-to-amp",
"v1.14.3/en/enterprise/guides/private-package-registry",
"v1.14.3/en/enterprise/guides/kickoff-crew",
"v1.14.3/en/enterprise/guides/update-crew",
"v1.14.3/en/enterprise/guides/enable-crew-studio",
"v1.14.3/en/enterprise/guides/capture_telemetry_logs",
"v1.14.3/en/enterprise/guides/azure-openai-setup",
"v1.14.3/en/enterprise/guides/tool-repository",
"v1.14.3/en/enterprise/guides/custom-mcp-server",
"v1.14.3/en/enterprise/guides/react-component-export",
"v1.14.3/en/enterprise/guides/team-management",
"v1.14.3/en/enterprise/guides/human-in-the-loop",
"v1.14.3/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.3/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.3/en/api-reference/introduction",
"v1.14.3/en/api-reference/inputs",
"v1.14.3/en/api-reference/kickoff",
"v1.14.3/en/api-reference/resume",
"v1.14.3/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.3/en/examples/example",
"v1.14.3/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.3/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.2",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.2/en/introduction",
"v1.14.2/en/skills",
"v1.14.2/en/installation",
"v1.14.2/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.2/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.2/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.2/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.2/en/guides/flows/first-flow",
"v1.14.2/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.2/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.2/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.2/en/guides/advanced/customizing-prompts",
"v1.14.2/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.2/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.2/en/concepts/agents",
"v1.14.2/en/concepts/agent-capabilities",
"v1.14.2/en/concepts/tasks",
"v1.14.2/en/concepts/crews",
"v1.14.2/en/concepts/flows",
"v1.14.2/en/concepts/production-architecture",
"v1.14.2/en/concepts/knowledge",
"v1.14.2/en/concepts/skills",
"v1.14.2/en/concepts/llms",
"v1.14.2/en/concepts/files",
"v1.14.2/en/concepts/processes",
"v1.14.2/en/concepts/collaboration",
"v1.14.2/en/concepts/training",
"v1.14.2/en/concepts/memory",
"v1.14.2/en/concepts/reasoning",
"v1.14.2/en/concepts/planning",
"v1.14.2/en/concepts/testing",
"v1.14.2/en/concepts/cli",
"v1.14.2/en/concepts/tools",
"v1.14.2/en/concepts/event-listener",
"v1.14.2/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.2/en/mcp/overview",
"v1.14.2/en/mcp/dsl-integration",
"v1.14.2/en/mcp/stdio",
"v1.14.2/en/mcp/sse",
"v1.14.2/en/mcp/streamable-http",
"v1.14.2/en/mcp/multiple-servers",
"v1.14.2/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.2/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.2/en/tools/file-document/overview",
"v1.14.2/en/tools/file-document/filereadtool",
"v1.14.2/en/tools/file-document/filewritetool",
"v1.14.2/en/tools/file-document/pdfsearchtool",
"v1.14.2/en/tools/file-document/docxsearchtool",
"v1.14.2/en/tools/file-document/mdxsearchtool",
"v1.14.2/en/tools/file-document/xmlsearchtool",
"v1.14.2/en/tools/file-document/txtsearchtool",
"v1.14.2/en/tools/file-document/jsonsearchtool",
"v1.14.2/en/tools/file-document/csvsearchtool",
"v1.14.2/en/tools/file-document/directorysearchtool",
"v1.14.2/en/tools/file-document/directoryreadtool",
"v1.14.2/en/tools/file-document/ocrtool",
"v1.14.2/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.2/en/tools/web-scraping/overview",
"v1.14.2/en/tools/web-scraping/scrapewebsitetool",
"v1.14.2/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.2/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.2/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.2/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.2/en/tools/web-scraping/spidertool",
"v1.14.2/en/tools/web-scraping/browserbaseloadtool",
"v1.14.2/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.2/en/tools/web-scraping/stagehandtool",
"v1.14.2/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.2/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.2/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.2/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.2/en/tools/search-research/overview",
"v1.14.2/en/tools/search-research/serperdevtool",
"v1.14.2/en/tools/search-research/bravesearchtool",
"v1.14.2/en/tools/search-research/exasearchtool",
"v1.14.2/en/tools/search-research/linkupsearchtool",
"v1.14.2/en/tools/search-research/githubsearchtool",
"v1.14.2/en/tools/search-research/websitesearchtool",
"v1.14.2/en/tools/search-research/codedocssearchtool",
"v1.14.2/en/tools/search-research/youtubechannelsearchtool",
"v1.14.2/en/tools/search-research/youtubevideosearchtool",
"v1.14.2/en/tools/search-research/tavilysearchtool",
"v1.14.2/en/tools/search-research/tavilyextractortool",
"v1.14.2/en/tools/search-research/arxivpapertool",
"v1.14.2/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.2/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.2/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.2/en/tools/database-data/overview",
"v1.14.2/en/tools/database-data/mysqltool",
"v1.14.2/en/tools/database-data/pgsearchtool",
"v1.14.2/en/tools/database-data/snowflakesearchtool",
"v1.14.2/en/tools/database-data/nl2sqltool",
"v1.14.2/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.2/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.2/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.2/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.2/en/tools/ai-ml/overview",
"v1.14.2/en/tools/ai-ml/dalletool",
"v1.14.2/en/tools/ai-ml/visiontool",
"v1.14.2/en/tools/ai-ml/aimindtool",
"v1.14.2/en/tools/ai-ml/llamaindextool",
"v1.14.2/en/tools/ai-ml/langchaintool",
"v1.14.2/en/tools/ai-ml/ragtool",
"v1.14.2/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.2/en/tools/cloud-storage/overview",
"v1.14.2/en/tools/cloud-storage/s3readertool",
"v1.14.2/en/tools/cloud-storage/s3writertool",
"v1.14.2/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.2/en/tools/integration/overview",
"v1.14.2/en/tools/integration/bedrockinvokeagenttool",
"v1.14.2/en/tools/integration/crewaiautomationtool",
"v1.14.2/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.2/en/tools/automation/overview",
"v1.14.2/en/tools/automation/apifyactorstool",
"v1.14.2/en/tools/automation/composiotool",
"v1.14.2/en/tools/automation/multiontool",
"v1.14.2/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.2/en/observability/tracing",
"v1.14.2/en/observability/overview",
"v1.14.2/en/observability/arize-phoenix",
"v1.14.2/en/observability/braintrust",
"v1.14.2/en/observability/datadog",
"v1.14.2/en/observability/galileo",
"v1.14.2/en/observability/langdb",
"v1.14.2/en/observability/langfuse",
"v1.14.2/en/observability/langtrace",
"v1.14.2/en/observability/maxim",
"v1.14.2/en/observability/mlflow",
"v1.14.2/en/observability/neatlogs",
"v1.14.2/en/observability/openlit",
"v1.14.2/en/observability/opik",
"v1.14.2/en/observability/patronus-evaluation",
"v1.14.2/en/observability/portkey",
"v1.14.2/en/observability/weave",
"v1.14.2/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.2/en/learn/overview",
"v1.14.2/en/learn/llm-selection-guide",
"v1.14.2/en/learn/conditional-tasks",
"v1.14.2/en/learn/coding-agents",
"v1.14.2/en/learn/create-custom-tools",
"v1.14.2/en/learn/custom-llm",
"v1.14.2/en/learn/custom-manager-agent",
"v1.14.2/en/learn/customizing-agents",
"v1.14.2/en/learn/dalle-image-generation",
"v1.14.2/en/learn/force-tool-output-as-result",
"v1.14.2/en/learn/hierarchical-process",
"v1.14.2/en/learn/human-input-on-execution",
"v1.14.2/en/learn/human-in-the-loop",
"v1.14.2/en/learn/human-feedback-in-flows",
"v1.14.2/en/learn/kickoff-async",
"v1.14.2/en/learn/kickoff-for-each",
"v1.14.2/en/learn/llm-connections",
"v1.14.2/en/learn/litellm-removal-guide",
"v1.14.2/en/learn/multimodal-agents",
"v1.14.2/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.2/en/learn/sequential-process",
"v1.14.2/en/learn/using-annotations",
"v1.14.2/en/learn/execution-hooks",
"v1.14.2/en/learn/llm-hooks",
"v1.14.2/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.2/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.2/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.2/en/enterprise/features/automations",
"v1.14.2/en/enterprise/features/crew-studio",
"v1.14.2/en/enterprise/features/marketplace",
"v1.14.2/en/enterprise/features/agent-repositories",
"v1.14.2/en/enterprise/features/tools-and-integrations",
"v1.14.2/en/enterprise/features/pii-trace-redactions",
"v1.14.2/en/enterprise/features/a2a"
]
},
{
"group": "Operate",
"pages": [
"v1.14.2/en/enterprise/features/traces",
"v1.14.2/en/enterprise/features/webhook-streaming",
"v1.14.2/en/enterprise/features/hallucination-guardrail",
"v1.14.2/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.2/en/enterprise/features/sso",
"v1.14.2/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.2/en/enterprise/integrations/asana",
"v1.14.2/en/enterprise/integrations/box",
"v1.14.2/en/enterprise/integrations/clickup",
"v1.14.2/en/enterprise/integrations/github",
"v1.14.2/en/enterprise/integrations/gmail",
"v1.14.2/en/enterprise/integrations/google_calendar",
"v1.14.2/en/enterprise/integrations/google_contacts",
"v1.14.2/en/enterprise/integrations/google_docs",
"v1.14.2/en/enterprise/integrations/google_drive",
"v1.14.2/en/enterprise/integrations/google_sheets",
"v1.14.2/en/enterprise/integrations/google_slides",
"v1.14.2/en/enterprise/integrations/hubspot",
"v1.14.2/en/enterprise/integrations/jira",
"v1.14.2/en/enterprise/integrations/linear",
"v1.14.2/en/enterprise/integrations/microsoft_excel",
"v1.14.2/en/enterprise/integrations/microsoft_onedrive",
"v1.14.2/en/enterprise/integrations/microsoft_outlook",
"v1.14.2/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.2/en/enterprise/integrations/microsoft_teams",
"v1.14.2/en/enterprise/integrations/microsoft_word",
"v1.14.2/en/enterprise/integrations/notion",
"v1.14.2/en/enterprise/integrations/salesforce",
"v1.14.2/en/enterprise/integrations/shopify",
"v1.14.2/en/enterprise/integrations/slack",
"v1.14.2/en/enterprise/integrations/stripe",
"v1.14.2/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.2/en/enterprise/guides/automation-triggers",
"v1.14.2/en/enterprise/guides/gmail-trigger",
"v1.14.2/en/enterprise/guides/google-calendar-trigger",
"v1.14.2/en/enterprise/guides/google-drive-trigger",
"v1.14.2/en/enterprise/guides/outlook-trigger",
"v1.14.2/en/enterprise/guides/onedrive-trigger",
"v1.14.2/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.2/en/enterprise/guides/slack-trigger",
"v1.14.2/en/enterprise/guides/hubspot-trigger",
"v1.14.2/en/enterprise/guides/salesforce-trigger",
"v1.14.2/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.2/en/enterprise/guides/build-crew",
"v1.14.2/en/enterprise/guides/prepare-for-deployment",
"v1.14.2/en/enterprise/guides/deploy-to-amp",
"v1.14.2/en/enterprise/guides/private-package-registry",
"v1.14.2/en/enterprise/guides/kickoff-crew",
"v1.14.2/en/enterprise/guides/update-crew",
"v1.14.2/en/enterprise/guides/enable-crew-studio",
"v1.14.2/en/enterprise/guides/capture_telemetry_logs",
"v1.14.2/en/enterprise/guides/azure-openai-setup",
"v1.14.2/en/enterprise/guides/tool-repository",
"v1.14.2/en/enterprise/guides/custom-mcp-server",
"v1.14.2/en/enterprise/guides/react-component-export",
"v1.14.2/en/enterprise/guides/team-management",
"v1.14.2/en/enterprise/guides/human-in-the-loop",
"v1.14.2/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.2/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.2/en/api-reference/introduction",
"v1.14.2/en/api-reference/inputs",
"v1.14.2/en/api-reference/kickoff",
"v1.14.2/en/api-reference/resume",
"v1.14.2/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.2/en/examples/example",
"v1.14.2/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.2/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.1",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.1/en/introduction",
"v1.14.1/en/skills",
"v1.14.1/en/installation",
"v1.14.1/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.1/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.1/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.1/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.1/en/guides/flows/first-flow",
"v1.14.1/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.1/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.1/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.1/en/guides/advanced/customizing-prompts",
"v1.14.1/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.1/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.1/en/concepts/agents",
"v1.14.1/en/concepts/agent-capabilities",
"v1.14.1/en/concepts/tasks",
"v1.14.1/en/concepts/crews",
"v1.14.1/en/concepts/flows",
"v1.14.1/en/concepts/production-architecture",
"v1.14.1/en/concepts/knowledge",
"v1.14.1/en/concepts/skills",
"v1.14.1/en/concepts/llms",
"v1.14.1/en/concepts/files",
"v1.14.1/en/concepts/processes",
"v1.14.1/en/concepts/collaboration",
"v1.14.1/en/concepts/training",
"v1.14.1/en/concepts/memory",
"v1.14.1/en/concepts/reasoning",
"v1.14.1/en/concepts/planning",
"v1.14.1/en/concepts/testing",
"v1.14.1/en/concepts/cli",
"v1.14.1/en/concepts/tools",
"v1.14.1/en/concepts/event-listener",
"v1.14.1/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.1/en/mcp/overview",
"v1.14.1/en/mcp/dsl-integration",
"v1.14.1/en/mcp/stdio",
"v1.14.1/en/mcp/sse",
"v1.14.1/en/mcp/streamable-http",
"v1.14.1/en/mcp/multiple-servers",
"v1.14.1/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.1/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.1/en/tools/file-document/overview",
"v1.14.1/en/tools/file-document/filereadtool",
"v1.14.1/en/tools/file-document/filewritetool",
"v1.14.1/en/tools/file-document/pdfsearchtool",
"v1.14.1/en/tools/file-document/docxsearchtool",
"v1.14.1/en/tools/file-document/mdxsearchtool",
"v1.14.1/en/tools/file-document/xmlsearchtool",
"v1.14.1/en/tools/file-document/txtsearchtool",
"v1.14.1/en/tools/file-document/jsonsearchtool",
"v1.14.1/en/tools/file-document/csvsearchtool",
"v1.14.1/en/tools/file-document/directorysearchtool",
"v1.14.1/en/tools/file-document/directoryreadtool",
"v1.14.1/en/tools/file-document/ocrtool",
"v1.14.1/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.1/en/tools/web-scraping/overview",
"v1.14.1/en/tools/web-scraping/scrapewebsitetool",
"v1.14.1/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.1/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.1/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.1/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.1/en/tools/web-scraping/spidertool",
"v1.14.1/en/tools/web-scraping/browserbaseloadtool",
"v1.14.1/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.1/en/tools/web-scraping/stagehandtool",
"v1.14.1/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.1/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.1/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.1/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.1/en/tools/search-research/overview",
"v1.14.1/en/tools/search-research/serperdevtool",
"v1.14.1/en/tools/search-research/bravesearchtool",
"v1.14.1/en/tools/search-research/exasearchtool",
"v1.14.1/en/tools/search-research/linkupsearchtool",
"v1.14.1/en/tools/search-research/githubsearchtool",
"v1.14.1/en/tools/search-research/websitesearchtool",
"v1.14.1/en/tools/search-research/codedocssearchtool",
"v1.14.1/en/tools/search-research/youtubechannelsearchtool",
"v1.14.1/en/tools/search-research/youtubevideosearchtool",
"v1.14.1/en/tools/search-research/tavilysearchtool",
"v1.14.1/en/tools/search-research/tavilyextractortool",
"v1.14.1/en/tools/search-research/arxivpapertool",
"v1.14.1/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.1/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.1/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.1/en/tools/database-data/overview",
"v1.14.1/en/tools/database-data/mysqltool",
"v1.14.1/en/tools/database-data/pgsearchtool",
"v1.14.1/en/tools/database-data/snowflakesearchtool",
"v1.14.1/en/tools/database-data/nl2sqltool",
"v1.14.1/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.1/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.1/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.1/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.1/en/tools/ai-ml/overview",
"v1.14.1/en/tools/ai-ml/dalletool",
"v1.14.1/en/tools/ai-ml/visiontool",
"v1.14.1/en/tools/ai-ml/aimindtool",
"v1.14.1/en/tools/ai-ml/llamaindextool",
"v1.14.1/en/tools/ai-ml/langchaintool",
"v1.14.1/en/tools/ai-ml/ragtool",
"v1.14.1/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.1/en/tools/cloud-storage/overview",
"v1.14.1/en/tools/cloud-storage/s3readertool",
"v1.14.1/en/tools/cloud-storage/s3writertool",
"v1.14.1/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.1/en/tools/integration/overview",
"v1.14.1/en/tools/integration/bedrockinvokeagenttool",
"v1.14.1/en/tools/integration/crewaiautomationtool",
"v1.14.1/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.1/en/tools/automation/overview",
"v1.14.1/en/tools/automation/apifyactorstool",
"v1.14.1/en/tools/automation/composiotool",
"v1.14.1/en/tools/automation/multiontool",
"v1.14.1/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.1/en/observability/tracing",
"v1.14.1/en/observability/overview",
"v1.14.1/en/observability/arize-phoenix",
"v1.14.1/en/observability/braintrust",
"v1.14.1/en/observability/datadog",
"v1.14.1/en/observability/galileo",
"v1.14.1/en/observability/langdb",
"v1.14.1/en/observability/langfuse",
"v1.14.1/en/observability/langtrace",
"v1.14.1/en/observability/maxim",
"v1.14.1/en/observability/mlflow",
"v1.14.1/en/observability/neatlogs",
"v1.14.1/en/observability/openlit",
"v1.14.1/en/observability/opik",
"v1.14.1/en/observability/patronus-evaluation",
"v1.14.1/en/observability/portkey",
"v1.14.1/en/observability/weave",
"v1.14.1/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.1/en/learn/overview",
"v1.14.1/en/learn/llm-selection-guide",
"v1.14.1/en/learn/conditional-tasks",
"v1.14.1/en/learn/coding-agents",
"v1.14.1/en/learn/create-custom-tools",
"v1.14.1/en/learn/custom-llm",
"v1.14.1/en/learn/custom-manager-agent",
"v1.14.1/en/learn/customizing-agents",
"v1.14.1/en/learn/dalle-image-generation",
"v1.14.1/en/learn/force-tool-output-as-result",
"v1.14.1/en/learn/hierarchical-process",
"v1.14.1/en/learn/human-input-on-execution",
"v1.14.1/en/learn/human-in-the-loop",
"v1.14.1/en/learn/human-feedback-in-flows",
"v1.14.1/en/learn/kickoff-async",
"v1.14.1/en/learn/kickoff-for-each",
"v1.14.1/en/learn/llm-connections",
"v1.14.1/en/learn/litellm-removal-guide",
"v1.14.1/en/learn/multimodal-agents",
"v1.14.1/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.1/en/learn/sequential-process",
"v1.14.1/en/learn/using-annotations",
"v1.14.1/en/learn/execution-hooks",
"v1.14.1/en/learn/llm-hooks",
"v1.14.1/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.1/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.1/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.1/en/enterprise/features/automations",
"v1.14.1/en/enterprise/features/crew-studio",
"v1.14.1/en/enterprise/features/marketplace",
"v1.14.1/en/enterprise/features/agent-repositories",
"v1.14.1/en/enterprise/features/tools-and-integrations",
"v1.14.1/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.14.1/en/enterprise/features/traces",
"v1.14.1/en/enterprise/features/webhook-streaming",
"v1.14.1/en/enterprise/features/hallucination-guardrail",
"v1.14.1/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.1/en/enterprise/features/sso",
"v1.14.1/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.1/en/enterprise/integrations/asana",
"v1.14.1/en/enterprise/integrations/box",
"v1.14.1/en/enterprise/integrations/clickup",
"v1.14.1/en/enterprise/integrations/github",
"v1.14.1/en/enterprise/integrations/gmail",
"v1.14.1/en/enterprise/integrations/google_calendar",
"v1.14.1/en/enterprise/integrations/google_contacts",
"v1.14.1/en/enterprise/integrations/google_docs",
"v1.14.1/en/enterprise/integrations/google_drive",
"v1.14.1/en/enterprise/integrations/google_sheets",
"v1.14.1/en/enterprise/integrations/google_slides",
"v1.14.1/en/enterprise/integrations/hubspot",
"v1.14.1/en/enterprise/integrations/jira",
"v1.14.1/en/enterprise/integrations/linear",
"v1.14.1/en/enterprise/integrations/microsoft_excel",
"v1.14.1/en/enterprise/integrations/microsoft_onedrive",
"v1.14.1/en/enterprise/integrations/microsoft_outlook",
"v1.14.1/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.1/en/enterprise/integrations/microsoft_teams",
"v1.14.1/en/enterprise/integrations/microsoft_word",
"v1.14.1/en/enterprise/integrations/notion",
"v1.14.1/en/enterprise/integrations/salesforce",
"v1.14.1/en/enterprise/integrations/shopify",
"v1.14.1/en/enterprise/integrations/slack",
"v1.14.1/en/enterprise/integrations/stripe",
"v1.14.1/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.1/en/enterprise/guides/automation-triggers",
"v1.14.1/en/enterprise/guides/gmail-trigger",
"v1.14.1/en/enterprise/guides/google-calendar-trigger",
"v1.14.1/en/enterprise/guides/google-drive-trigger",
"v1.14.1/en/enterprise/guides/outlook-trigger",
"v1.14.1/en/enterprise/guides/onedrive-trigger",
"v1.14.1/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.1/en/enterprise/guides/slack-trigger",
"v1.14.1/en/enterprise/guides/hubspot-trigger",
"v1.14.1/en/enterprise/guides/salesforce-trigger",
"v1.14.1/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.1/en/enterprise/guides/build-crew",
"v1.14.1/en/enterprise/guides/prepare-for-deployment",
"v1.14.1/en/enterprise/guides/deploy-to-amp",
"v1.14.1/en/enterprise/guides/private-package-registry",
"v1.14.1/en/enterprise/guides/kickoff-crew",
"v1.14.1/en/enterprise/guides/update-crew",
"v1.14.1/en/enterprise/guides/enable-crew-studio",
"v1.14.1/en/enterprise/guides/capture_telemetry_logs",
"v1.14.1/en/enterprise/guides/azure-openai-setup",
"v1.14.1/en/enterprise/guides/tool-repository",
"v1.14.1/en/enterprise/guides/custom-mcp-server",
"v1.14.1/en/enterprise/guides/react-component-export",
"v1.14.1/en/enterprise/guides/team-management",
"v1.14.1/en/enterprise/guides/human-in-the-loop",
"v1.14.1/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.1/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.1/en/api-reference/introduction",
"v1.14.1/en/api-reference/inputs",
"v1.14.1/en/api-reference/kickoff",
"v1.14.1/en/api-reference/resume",
"v1.14.1/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.1/en/examples/example",
"v1.14.1/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.1/en/changelog"
]
}
]
}
]
},
{
"version": "v1.14.0",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.14.0/en/introduction",
"v1.14.0/en/installation",
"v1.14.0/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.14.0/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.14.0/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.0/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.0/en/guides/flows/first-flow",
"v1.14.0/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.14.0/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.14.0/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.14.0/en/guides/advanced/customizing-prompts",
"v1.14.0/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.14.0/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.14.0/en/concepts/agents",
"v1.14.0/en/concepts/agent-capabilities",
"v1.14.0/en/concepts/tasks",
"v1.14.0/en/concepts/crews",
"v1.14.0/en/concepts/flows",
"v1.14.0/en/concepts/production-architecture",
"v1.14.0/en/concepts/knowledge",
"v1.14.0/en/concepts/skills",
"v1.14.0/en/concepts/llms",
"v1.14.0/en/concepts/files",
"v1.14.0/en/concepts/processes",
"v1.14.0/en/concepts/collaboration",
"v1.14.0/en/concepts/training",
"v1.14.0/en/concepts/memory",
"v1.14.0/en/concepts/reasoning",
"v1.14.0/en/concepts/planning",
"v1.14.0/en/concepts/testing",
"v1.14.0/en/concepts/cli",
"v1.14.0/en/concepts/tools",
"v1.14.0/en/concepts/event-listener",
"v1.14.0/en/concepts/checkpointing"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.14.0/en/mcp/overview",
"v1.14.0/en/mcp/dsl-integration",
"v1.14.0/en/mcp/stdio",
"v1.14.0/en/mcp/sse",
"v1.14.0/en/mcp/streamable-http",
"v1.14.0/en/mcp/multiple-servers",
"v1.14.0/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.14.0/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.14.0/en/tools/file-document/overview",
"v1.14.0/en/tools/file-document/filereadtool",
"v1.14.0/en/tools/file-document/filewritetool",
"v1.14.0/en/tools/file-document/pdfsearchtool",
"v1.14.0/en/tools/file-document/docxsearchtool",
"v1.14.0/en/tools/file-document/mdxsearchtool",
"v1.14.0/en/tools/file-document/xmlsearchtool",
"v1.14.0/en/tools/file-document/txtsearchtool",
"v1.14.0/en/tools/file-document/jsonsearchtool",
"v1.14.0/en/tools/file-document/csvsearchtool",
"v1.14.0/en/tools/file-document/directorysearchtool",
"v1.14.0/en/tools/file-document/directoryreadtool",
"v1.14.0/en/tools/file-document/ocrtool",
"v1.14.0/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.14.0/en/tools/web-scraping/overview",
"v1.14.0/en/tools/web-scraping/scrapewebsitetool",
"v1.14.0/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.0/en/tools/web-scraping/scrapflyscrapetool",
"v1.14.0/en/tools/web-scraping/seleniumscrapingtool",
"v1.14.0/en/tools/web-scraping/scrapegraphscrapetool",
"v1.14.0/en/tools/web-scraping/spidertool",
"v1.14.0/en/tools/web-scraping/browserbaseloadtool",
"v1.14.0/en/tools/web-scraping/hyperbrowserloadtool",
"v1.14.0/en/tools/web-scraping/stagehandtool",
"v1.14.0/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.0/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.0/en/tools/web-scraping/oxylabsscraperstool",
"v1.14.0/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.14.0/en/tools/search-research/overview",
"v1.14.0/en/tools/search-research/serperdevtool",
"v1.14.0/en/tools/search-research/bravesearchtool",
"v1.14.0/en/tools/search-research/exasearchtool",
"v1.14.0/en/tools/search-research/linkupsearchtool",
"v1.14.0/en/tools/search-research/githubsearchtool",
"v1.14.0/en/tools/search-research/websitesearchtool",
"v1.14.0/en/tools/search-research/codedocssearchtool",
"v1.14.0/en/tools/search-research/youtubechannelsearchtool",
"v1.14.0/en/tools/search-research/youtubevideosearchtool",
"v1.14.0/en/tools/search-research/tavilysearchtool",
"v1.14.0/en/tools/search-research/tavilyextractortool",
"v1.14.0/en/tools/search-research/arxivpapertool",
"v1.14.0/en/tools/search-research/serpapi-googlesearchtool",
"v1.14.0/en/tools/search-research/serpapi-googleshoppingtool",
"v1.14.0/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.14.0/en/tools/database-data/overview",
"v1.14.0/en/tools/database-data/mysqltool",
"v1.14.0/en/tools/database-data/pgsearchtool",
"v1.14.0/en/tools/database-data/snowflakesearchtool",
"v1.14.0/en/tools/database-data/nl2sqltool",
"v1.14.0/en/tools/database-data/qdrantvectorsearchtool",
"v1.14.0/en/tools/database-data/weaviatevectorsearchtool",
"v1.14.0/en/tools/database-data/mongodbvectorsearchtool",
"v1.14.0/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.0/en/tools/ai-ml/overview",
"v1.14.0/en/tools/ai-ml/dalletool",
"v1.14.0/en/tools/ai-ml/visiontool",
"v1.14.0/en/tools/ai-ml/aimindtool",
"v1.14.0/en/tools/ai-ml/llamaindextool",
"v1.14.0/en/tools/ai-ml/langchaintool",
"v1.14.0/en/tools/ai-ml/ragtool",
"v1.14.0/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.14.0/en/tools/cloud-storage/overview",
"v1.14.0/en/tools/cloud-storage/s3readertool",
"v1.14.0/en/tools/cloud-storage/s3writertool",
"v1.14.0/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.0/en/tools/integration/overview",
"v1.14.0/en/tools/integration/bedrockinvokeagenttool",
"v1.14.0/en/tools/integration/crewaiautomationtool",
"v1.14.0/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.14.0/en/tools/automation/overview",
"v1.14.0/en/tools/automation/apifyactorstool",
"v1.14.0/en/tools/automation/composiotool",
"v1.14.0/en/tools/automation/multiontool",
"v1.14.0/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.0/en/observability/tracing",
"v1.14.0/en/observability/overview",
"v1.14.0/en/observability/arize-phoenix",
"v1.14.0/en/observability/braintrust",
"v1.14.0/en/observability/datadog",
"v1.14.0/en/observability/galileo",
"v1.14.0/en/observability/langdb",
"v1.14.0/en/observability/langfuse",
"v1.14.0/en/observability/langtrace",
"v1.14.0/en/observability/maxim",
"v1.14.0/en/observability/mlflow",
"v1.14.0/en/observability/neatlogs",
"v1.14.0/en/observability/openlit",
"v1.14.0/en/observability/opik",
"v1.14.0/en/observability/patronus-evaluation",
"v1.14.0/en/observability/portkey",
"v1.14.0/en/observability/weave",
"v1.14.0/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.14.0/en/learn/overview",
"v1.14.0/en/learn/llm-selection-guide",
"v1.14.0/en/learn/conditional-tasks",
"v1.14.0/en/learn/coding-agents",
"v1.14.0/en/learn/create-custom-tools",
"v1.14.0/en/learn/custom-llm",
"v1.14.0/en/learn/custom-manager-agent",
"v1.14.0/en/learn/customizing-agents",
"v1.14.0/en/learn/dalle-image-generation",
"v1.14.0/en/learn/force-tool-output-as-result",
"v1.14.0/en/learn/hierarchical-process",
"v1.14.0/en/learn/human-input-on-execution",
"v1.14.0/en/learn/human-in-the-loop",
"v1.14.0/en/learn/human-feedback-in-flows",
"v1.14.0/en/learn/kickoff-async",
"v1.14.0/en/learn/kickoff-for-each",
"v1.14.0/en/learn/llm-connections",
"v1.14.0/en/learn/litellm-removal-guide",
"v1.14.0/en/learn/multimodal-agents",
"v1.14.0/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.0/en/learn/sequential-process",
"v1.14.0/en/learn/using-annotations",
"v1.14.0/en/learn/execution-hooks",
"v1.14.0/en/learn/llm-hooks",
"v1.14.0/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.0/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.0/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.14.0/en/enterprise/features/automations",
"v1.14.0/en/enterprise/features/crew-studio",
"v1.14.0/en/enterprise/features/marketplace",
"v1.14.0/en/enterprise/features/agent-repositories",
"v1.14.0/en/enterprise/features/tools-and-integrations",
"v1.14.0/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.14.0/en/enterprise/features/traces",
"v1.14.0/en/enterprise/features/webhook-streaming",
"v1.14.0/en/enterprise/features/hallucination-guardrail",
"v1.14.0/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.14.0/en/enterprise/features/sso",
"v1.14.0/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.14.0/en/enterprise/integrations/asana",
"v1.14.0/en/enterprise/integrations/box",
"v1.14.0/en/enterprise/integrations/clickup",
"v1.14.0/en/enterprise/integrations/github",
"v1.14.0/en/enterprise/integrations/gmail",
"v1.14.0/en/enterprise/integrations/google_calendar",
"v1.14.0/en/enterprise/integrations/google_contacts",
"v1.14.0/en/enterprise/integrations/google_docs",
"v1.14.0/en/enterprise/integrations/google_drive",
"v1.14.0/en/enterprise/integrations/google_sheets",
"v1.14.0/en/enterprise/integrations/google_slides",
"v1.14.0/en/enterprise/integrations/hubspot",
"v1.14.0/en/enterprise/integrations/jira",
"v1.14.0/en/enterprise/integrations/linear",
"v1.14.0/en/enterprise/integrations/microsoft_excel",
"v1.14.0/en/enterprise/integrations/microsoft_onedrive",
"v1.14.0/en/enterprise/integrations/microsoft_outlook",
"v1.14.0/en/enterprise/integrations/microsoft_sharepoint",
"v1.14.0/en/enterprise/integrations/microsoft_teams",
"v1.14.0/en/enterprise/integrations/microsoft_word",
"v1.14.0/en/enterprise/integrations/notion",
"v1.14.0/en/enterprise/integrations/salesforce",
"v1.14.0/en/enterprise/integrations/shopify",
"v1.14.0/en/enterprise/integrations/slack",
"v1.14.0/en/enterprise/integrations/stripe",
"v1.14.0/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.0/en/enterprise/guides/automation-triggers",
"v1.14.0/en/enterprise/guides/gmail-trigger",
"v1.14.0/en/enterprise/guides/google-calendar-trigger",
"v1.14.0/en/enterprise/guides/google-drive-trigger",
"v1.14.0/en/enterprise/guides/outlook-trigger",
"v1.14.0/en/enterprise/guides/onedrive-trigger",
"v1.14.0/en/enterprise/guides/microsoft-teams-trigger",
"v1.14.0/en/enterprise/guides/slack-trigger",
"v1.14.0/en/enterprise/guides/hubspot-trigger",
"v1.14.0/en/enterprise/guides/salesforce-trigger",
"v1.14.0/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.0/en/enterprise/guides/build-crew",
"v1.14.0/en/enterprise/guides/prepare-for-deployment",
"v1.14.0/en/enterprise/guides/deploy-to-amp",
"v1.14.0/en/enterprise/guides/private-package-registry",
"v1.14.0/en/enterprise/guides/kickoff-crew",
"v1.14.0/en/enterprise/guides/update-crew",
"v1.14.0/en/enterprise/guides/enable-crew-studio",
"v1.14.0/en/enterprise/guides/capture_telemetry_logs",
"v1.14.0/en/enterprise/guides/azure-openai-setup",
"v1.14.0/en/enterprise/guides/tool-repository",
"v1.14.0/en/enterprise/guides/custom-mcp-server",
"v1.14.0/en/enterprise/guides/react-component-export",
"v1.14.0/en/enterprise/guides/team-management",
"v1.14.0/en/enterprise/guides/human-in-the-loop",
"v1.14.0/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.14.0/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.14.0/en/api-reference/introduction",
"v1.14.0/en/api-reference/inputs",
"v1.14.0/en/api-reference/kickoff",
"v1.14.0/en/api-reference/resume",
"v1.14.0/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.14.0/en/examples/example",
"v1.14.0/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.14.0/en/changelog"
]
}
]
}
]
},
{
"version": "v1.13.0",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.13.0/en/introduction",
"v1.13.0/en/installation",
"v1.13.0/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.13.0/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.13.0/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.13.0/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.13.0/en/guides/flows/first-flow",
"v1.13.0/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.13.0/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.13.0/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.13.0/en/guides/advanced/customizing-prompts",
"v1.13.0/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.13.0/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.13.0/en/concepts/agents",
"v1.13.0/en/concepts/agent-capabilities",
"v1.13.0/en/concepts/tasks",
"v1.13.0/en/concepts/crews",
"v1.13.0/en/concepts/flows",
"v1.13.0/en/concepts/production-architecture",
"v1.13.0/en/concepts/knowledge",
"v1.13.0/en/concepts/skills",
"v1.13.0/en/concepts/llms",
"v1.13.0/en/concepts/files",
"v1.13.0/en/concepts/processes",
"v1.13.0/en/concepts/collaboration",
"v1.13.0/en/concepts/training",
"v1.13.0/en/concepts/memory",
"v1.13.0/en/concepts/reasoning",
"v1.13.0/en/concepts/planning",
"v1.13.0/en/concepts/testing",
"v1.13.0/en/concepts/cli",
"v1.13.0/en/concepts/tools",
"v1.13.0/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.13.0/en/mcp/overview",
"v1.13.0/en/mcp/dsl-integration",
"v1.13.0/en/mcp/stdio",
"v1.13.0/en/mcp/sse",
"v1.13.0/en/mcp/streamable-http",
"v1.13.0/en/mcp/multiple-servers",
"v1.13.0/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.13.0/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.13.0/en/tools/file-document/overview",
"v1.13.0/en/tools/file-document/filereadtool",
"v1.13.0/en/tools/file-document/filewritetool",
"v1.13.0/en/tools/file-document/pdfsearchtool",
"v1.13.0/en/tools/file-document/docxsearchtool",
"v1.13.0/en/tools/file-document/mdxsearchtool",
"v1.13.0/en/tools/file-document/xmlsearchtool",
"v1.13.0/en/tools/file-document/txtsearchtool",
"v1.13.0/en/tools/file-document/jsonsearchtool",
"v1.13.0/en/tools/file-document/csvsearchtool",
"v1.13.0/en/tools/file-document/directorysearchtool",
"v1.13.0/en/tools/file-document/directoryreadtool",
"v1.13.0/en/tools/file-document/ocrtool",
"v1.13.0/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.13.0/en/tools/web-scraping/overview",
"v1.13.0/en/tools/web-scraping/scrapewebsitetool",
"v1.13.0/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.13.0/en/tools/web-scraping/scrapflyscrapetool",
"v1.13.0/en/tools/web-scraping/seleniumscrapingtool",
"v1.13.0/en/tools/web-scraping/scrapegraphscrapetool",
"v1.13.0/en/tools/web-scraping/spidertool",
"v1.13.0/en/tools/web-scraping/browserbaseloadtool",
"v1.13.0/en/tools/web-scraping/hyperbrowserloadtool",
"v1.13.0/en/tools/web-scraping/stagehandtool",
"v1.13.0/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.13.0/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.13.0/en/tools/web-scraping/oxylabsscraperstool",
"v1.13.0/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.13.0/en/tools/search-research/overview",
"v1.13.0/en/tools/search-research/serperdevtool",
"v1.13.0/en/tools/search-research/bravesearchtool",
"v1.13.0/en/tools/search-research/exasearchtool",
"v1.13.0/en/tools/search-research/linkupsearchtool",
"v1.13.0/en/tools/search-research/githubsearchtool",
"v1.13.0/en/tools/search-research/websitesearchtool",
"v1.13.0/en/tools/search-research/codedocssearchtool",
"v1.13.0/en/tools/search-research/youtubechannelsearchtool",
"v1.13.0/en/tools/search-research/youtubevideosearchtool",
"v1.13.0/en/tools/search-research/tavilysearchtool",
"v1.13.0/en/tools/search-research/tavilyextractortool",
"v1.13.0/en/tools/search-research/arxivpapertool",
"v1.13.0/en/tools/search-research/serpapi-googlesearchtool",
"v1.13.0/en/tools/search-research/serpapi-googleshoppingtool",
"v1.13.0/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.13.0/en/tools/database-data/overview",
"v1.13.0/en/tools/database-data/mysqltool",
"v1.13.0/en/tools/database-data/pgsearchtool",
"v1.13.0/en/tools/database-data/snowflakesearchtool",
"v1.13.0/en/tools/database-data/nl2sqltool",
"v1.13.0/en/tools/database-data/qdrantvectorsearchtool",
"v1.13.0/en/tools/database-data/weaviatevectorsearchtool",
"v1.13.0/en/tools/database-data/mongodbvectorsearchtool",
"v1.13.0/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.13.0/en/tools/ai-ml/overview",
"v1.13.0/en/tools/ai-ml/dalletool",
"v1.13.0/en/tools/ai-ml/visiontool",
"v1.13.0/en/tools/ai-ml/aimindtool",
"v1.13.0/en/tools/ai-ml/llamaindextool",
"v1.13.0/en/tools/ai-ml/langchaintool",
"v1.13.0/en/tools/ai-ml/ragtool",
"v1.13.0/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.13.0/en/tools/cloud-storage/overview",
"v1.13.0/en/tools/cloud-storage/s3readertool",
"v1.13.0/en/tools/cloud-storage/s3writertool",
"v1.13.0/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.13.0/en/tools/integration/overview",
"v1.13.0/en/tools/integration/bedrockinvokeagenttool",
"v1.13.0/en/tools/integration/crewaiautomationtool",
"v1.13.0/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.13.0/en/tools/automation/overview",
"v1.13.0/en/tools/automation/apifyactorstool",
"v1.13.0/en/tools/automation/composiotool",
"v1.13.0/en/tools/automation/multiontool",
"v1.13.0/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.13.0/en/observability/tracing",
"v1.13.0/en/observability/overview",
"v1.13.0/en/observability/arize-phoenix",
"v1.13.0/en/observability/braintrust",
"v1.13.0/en/observability/datadog",
"v1.13.0/en/observability/galileo",
"v1.13.0/en/observability/langdb",
"v1.13.0/en/observability/langfuse",
"v1.13.0/en/observability/langtrace",
"v1.13.0/en/observability/maxim",
"v1.13.0/en/observability/mlflow",
"v1.13.0/en/observability/neatlogs",
"v1.13.0/en/observability/openlit",
"v1.13.0/en/observability/opik",
"v1.13.0/en/observability/patronus-evaluation",
"v1.13.0/en/observability/portkey",
"v1.13.0/en/observability/weave",
"v1.13.0/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.13.0/en/learn/overview",
"v1.13.0/en/learn/llm-selection-guide",
"v1.13.0/en/learn/conditional-tasks",
"v1.13.0/en/learn/coding-agents",
"v1.13.0/en/learn/create-custom-tools",
"v1.13.0/en/learn/custom-llm",
"v1.13.0/en/learn/custom-manager-agent",
"v1.13.0/en/learn/customizing-agents",
"v1.13.0/en/learn/dalle-image-generation",
"v1.13.0/en/learn/force-tool-output-as-result",
"v1.13.0/en/learn/hierarchical-process",
"v1.13.0/en/learn/human-input-on-execution",
"v1.13.0/en/learn/human-in-the-loop",
"v1.13.0/en/learn/human-feedback-in-flows",
"v1.13.0/en/learn/kickoff-async",
"v1.13.0/en/learn/kickoff-for-each",
"v1.13.0/en/learn/llm-connections",
"v1.13.0/en/learn/litellm-removal-guide",
"v1.13.0/en/learn/multimodal-agents",
"v1.13.0/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.13.0/en/learn/sequential-process",
"v1.13.0/en/learn/using-annotations",
"v1.13.0/en/learn/execution-hooks",
"v1.13.0/en/learn/llm-hooks",
"v1.13.0/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.13.0/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.13.0/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.13.0/en/enterprise/features/automations",
"v1.13.0/en/enterprise/features/crew-studio",
"v1.13.0/en/enterprise/features/marketplace",
"v1.13.0/en/enterprise/features/agent-repositories",
"v1.13.0/en/enterprise/features/tools-and-integrations",
"v1.13.0/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.13.0/en/enterprise/features/traces",
"v1.13.0/en/enterprise/features/webhook-streaming",
"v1.13.0/en/enterprise/features/hallucination-guardrail",
"v1.13.0/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.13.0/en/enterprise/features/sso",
"v1.13.0/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.13.0/en/enterprise/integrations/asana",
"v1.13.0/en/enterprise/integrations/box",
"v1.13.0/en/enterprise/integrations/clickup",
"v1.13.0/en/enterprise/integrations/github",
"v1.13.0/en/enterprise/integrations/gmail",
"v1.13.0/en/enterprise/integrations/google_calendar",
"v1.13.0/en/enterprise/integrations/google_contacts",
"v1.13.0/en/enterprise/integrations/google_docs",
"v1.13.0/en/enterprise/integrations/google_drive",
"v1.13.0/en/enterprise/integrations/google_sheets",
"v1.13.0/en/enterprise/integrations/google_slides",
"v1.13.0/en/enterprise/integrations/hubspot",
"v1.13.0/en/enterprise/integrations/jira",
"v1.13.0/en/enterprise/integrations/linear",
"v1.13.0/en/enterprise/integrations/microsoft_excel",
"v1.13.0/en/enterprise/integrations/microsoft_onedrive",
"v1.13.0/en/enterprise/integrations/microsoft_outlook",
"v1.13.0/en/enterprise/integrations/microsoft_sharepoint",
"v1.13.0/en/enterprise/integrations/microsoft_teams",
"v1.13.0/en/enterprise/integrations/microsoft_word",
"v1.13.0/en/enterprise/integrations/notion",
"v1.13.0/en/enterprise/integrations/salesforce",
"v1.13.0/en/enterprise/integrations/shopify",
"v1.13.0/en/enterprise/integrations/slack",
"v1.13.0/en/enterprise/integrations/stripe",
"v1.13.0/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.13.0/en/enterprise/guides/automation-triggers",
"v1.13.0/en/enterprise/guides/gmail-trigger",
"v1.13.0/en/enterprise/guides/google-calendar-trigger",
"v1.13.0/en/enterprise/guides/google-drive-trigger",
"v1.13.0/en/enterprise/guides/outlook-trigger",
"v1.13.0/en/enterprise/guides/onedrive-trigger",
"v1.13.0/en/enterprise/guides/microsoft-teams-trigger",
"v1.13.0/en/enterprise/guides/slack-trigger",
"v1.13.0/en/enterprise/guides/hubspot-trigger",
"v1.13.0/en/enterprise/guides/salesforce-trigger",
"v1.13.0/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.13.0/en/enterprise/guides/build-crew",
"v1.13.0/en/enterprise/guides/prepare-for-deployment",
"v1.13.0/en/enterprise/guides/deploy-to-amp",
"v1.13.0/en/enterprise/guides/private-package-registry",
"v1.13.0/en/enterprise/guides/kickoff-crew",
"v1.13.0/en/enterprise/guides/update-crew",
"v1.13.0/en/enterprise/guides/enable-crew-studio",
"v1.13.0/en/enterprise/guides/capture_telemetry_logs",
"v1.13.0/en/enterprise/guides/azure-openai-setup",
"v1.13.0/en/enterprise/guides/tool-repository",
"v1.13.0/en/enterprise/guides/custom-mcp-server",
"v1.13.0/en/enterprise/guides/react-component-export",
"v1.13.0/en/enterprise/guides/team-management",
"v1.13.0/en/enterprise/guides/human-in-the-loop",
"v1.13.0/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.13.0/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.13.0/en/api-reference/introduction",
"v1.13.0/en/api-reference/inputs",
"v1.13.0/en/api-reference/kickoff",
"v1.13.0/en/api-reference/resume",
"v1.13.0/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.13.0/en/examples/example",
"v1.13.0/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.13.0/en/changelog"
]
}
]
}
]
},
{
"version": "v1.12.2",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.12.2/en/introduction",
"v1.12.2/en/installation",
"v1.12.2/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.12.2/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.12.2/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.2/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.2/en/guides/flows/first-flow",
"v1.12.2/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.12.2/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.12.2/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.12.2/en/guides/advanced/customizing-prompts",
"v1.12.2/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.12.2/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.12.2/en/concepts/agents",
"v1.12.2/en/concepts/tasks",
"v1.12.2/en/concepts/crews",
"v1.12.2/en/concepts/flows",
"v1.12.2/en/concepts/production-architecture",
"v1.12.2/en/concepts/knowledge",
"v1.12.2/en/concepts/skills",
"v1.12.2/en/concepts/llms",
"v1.12.2/en/concepts/files",
"v1.12.2/en/concepts/processes",
"v1.12.2/en/concepts/collaboration",
"v1.12.2/en/concepts/training",
"v1.12.2/en/concepts/memory",
"v1.12.2/en/concepts/reasoning",
"v1.12.2/en/concepts/planning",
"v1.12.2/en/concepts/testing",
"v1.12.2/en/concepts/cli",
"v1.12.2/en/concepts/tools",
"v1.12.2/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.12.2/en/mcp/overview",
"v1.12.2/en/mcp/dsl-integration",
"v1.12.2/en/mcp/stdio",
"v1.12.2/en/mcp/sse",
"v1.12.2/en/mcp/streamable-http",
"v1.12.2/en/mcp/multiple-servers",
"v1.12.2/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.12.2/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.12.2/en/tools/file-document/overview",
"v1.12.2/en/tools/file-document/filereadtool",
"v1.12.2/en/tools/file-document/filewritetool",
"v1.12.2/en/tools/file-document/pdfsearchtool",
"v1.12.2/en/tools/file-document/docxsearchtool",
"v1.12.2/en/tools/file-document/mdxsearchtool",
"v1.12.2/en/tools/file-document/xmlsearchtool",
"v1.12.2/en/tools/file-document/txtsearchtool",
"v1.12.2/en/tools/file-document/jsonsearchtool",
"v1.12.2/en/tools/file-document/csvsearchtool",
"v1.12.2/en/tools/file-document/directorysearchtool",
"v1.12.2/en/tools/file-document/directoryreadtool",
"v1.12.2/en/tools/file-document/ocrtool",
"v1.12.2/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.12.2/en/tools/web-scraping/overview",
"v1.12.2/en/tools/web-scraping/scrapewebsitetool",
"v1.12.2/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.2/en/tools/web-scraping/scrapflyscrapetool",
"v1.12.2/en/tools/web-scraping/seleniumscrapingtool",
"v1.12.2/en/tools/web-scraping/scrapegraphscrapetool",
"v1.12.2/en/tools/web-scraping/spidertool",
"v1.12.2/en/tools/web-scraping/browserbaseloadtool",
"v1.12.2/en/tools/web-scraping/hyperbrowserloadtool",
"v1.12.2/en/tools/web-scraping/stagehandtool",
"v1.12.2/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.2/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.2/en/tools/web-scraping/oxylabsscraperstool",
"v1.12.2/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.12.2/en/tools/search-research/overview",
"v1.12.2/en/tools/search-research/serperdevtool",
"v1.12.2/en/tools/search-research/bravesearchtool",
"v1.12.2/en/tools/search-research/exasearchtool",
"v1.12.2/en/tools/search-research/linkupsearchtool",
"v1.12.2/en/tools/search-research/githubsearchtool",
"v1.12.2/en/tools/search-research/websitesearchtool",
"v1.12.2/en/tools/search-research/codedocssearchtool",
"v1.12.2/en/tools/search-research/youtubechannelsearchtool",
"v1.12.2/en/tools/search-research/youtubevideosearchtool",
"v1.12.2/en/tools/search-research/tavilysearchtool",
"v1.12.2/en/tools/search-research/tavilyextractortool",
"v1.12.2/en/tools/search-research/arxivpapertool",
"v1.12.2/en/tools/search-research/serpapi-googlesearchtool",
"v1.12.2/en/tools/search-research/serpapi-googleshoppingtool",
"v1.12.2/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.12.2/en/tools/database-data/overview",
"v1.12.2/en/tools/database-data/mysqltool",
"v1.12.2/en/tools/database-data/pgsearchtool",
"v1.12.2/en/tools/database-data/snowflakesearchtool",
"v1.12.2/en/tools/database-data/nl2sqltool",
"v1.12.2/en/tools/database-data/qdrantvectorsearchtool",
"v1.12.2/en/tools/database-data/weaviatevectorsearchtool",
"v1.12.2/en/tools/database-data/mongodbvectorsearchtool",
"v1.12.2/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.2/en/tools/ai-ml/overview",
"v1.12.2/en/tools/ai-ml/dalletool",
"v1.12.2/en/tools/ai-ml/visiontool",
"v1.12.2/en/tools/ai-ml/aimindtool",
"v1.12.2/en/tools/ai-ml/llamaindextool",
"v1.12.2/en/tools/ai-ml/langchaintool",
"v1.12.2/en/tools/ai-ml/ragtool",
"v1.12.2/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.12.2/en/tools/cloud-storage/overview",
"v1.12.2/en/tools/cloud-storage/s3readertool",
"v1.12.2/en/tools/cloud-storage/s3writertool",
"v1.12.2/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.2/en/tools/integration/overview",
"v1.12.2/en/tools/integration/bedrockinvokeagenttool",
"v1.12.2/en/tools/integration/crewaiautomationtool",
"v1.12.2/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.12.2/en/tools/automation/overview",
"v1.12.2/en/tools/automation/apifyactorstool",
"v1.12.2/en/tools/automation/composiotool",
"v1.12.2/en/tools/automation/multiontool",
"v1.12.2/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.2/en/observability/tracing",
"v1.12.2/en/observability/overview",
"v1.12.2/en/observability/arize-phoenix",
"v1.12.2/en/observability/braintrust",
"v1.12.2/en/observability/datadog",
"v1.12.2/en/observability/galileo",
"v1.12.2/en/observability/langdb",
"v1.12.2/en/observability/langfuse",
"v1.12.2/en/observability/langtrace",
"v1.12.2/en/observability/maxim",
"v1.12.2/en/observability/mlflow",
"v1.12.2/en/observability/neatlogs",
"v1.12.2/en/observability/openlit",
"v1.12.2/en/observability/opik",
"v1.12.2/en/observability/patronus-evaluation",
"v1.12.2/en/observability/portkey",
"v1.12.2/en/observability/weave",
"v1.12.2/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.12.2/en/learn/overview",
"v1.12.2/en/learn/llm-selection-guide",
"v1.12.2/en/learn/conditional-tasks",
"v1.12.2/en/learn/coding-agents",
"v1.12.2/en/learn/create-custom-tools",
"v1.12.2/en/learn/custom-llm",
"v1.12.2/en/learn/custom-manager-agent",
"v1.12.2/en/learn/customizing-agents",
"v1.12.2/en/learn/dalle-image-generation",
"v1.12.2/en/learn/force-tool-output-as-result",
"v1.12.2/en/learn/hierarchical-process",
"v1.12.2/en/learn/human-input-on-execution",
"v1.12.2/en/learn/human-in-the-loop",
"v1.12.2/en/learn/human-feedback-in-flows",
"v1.12.2/en/learn/kickoff-async",
"v1.12.2/en/learn/kickoff-for-each",
"v1.12.2/en/learn/llm-connections",
"v1.12.2/en/learn/litellm-removal-guide",
"v1.12.2/en/learn/multimodal-agents",
"v1.12.2/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.2/en/learn/sequential-process",
"v1.12.2/en/learn/using-annotations",
"v1.12.2/en/learn/execution-hooks",
"v1.12.2/en/learn/llm-hooks",
"v1.12.2/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.2/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.2/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.12.2/en/enterprise/features/automations",
"v1.12.2/en/enterprise/features/crew-studio",
"v1.12.2/en/enterprise/features/marketplace",
"v1.12.2/en/enterprise/features/agent-repositories",
"v1.12.2/en/enterprise/features/tools-and-integrations",
"v1.12.2/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.12.2/en/enterprise/features/traces",
"v1.12.2/en/enterprise/features/webhook-streaming",
"v1.12.2/en/enterprise/features/hallucination-guardrail",
"v1.12.2/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.12.2/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.12.2/en/enterprise/integrations/asana",
"v1.12.2/en/enterprise/integrations/box",
"v1.12.2/en/enterprise/integrations/clickup",
"v1.12.2/en/enterprise/integrations/github",
"v1.12.2/en/enterprise/integrations/gmail",
"v1.12.2/en/enterprise/integrations/google_calendar",
"v1.12.2/en/enterprise/integrations/google_contacts",
"v1.12.2/en/enterprise/integrations/google_docs",
"v1.12.2/en/enterprise/integrations/google_drive",
"v1.12.2/en/enterprise/integrations/google_sheets",
"v1.12.2/en/enterprise/integrations/google_slides",
"v1.12.2/en/enterprise/integrations/hubspot",
"v1.12.2/en/enterprise/integrations/jira",
"v1.12.2/en/enterprise/integrations/linear",
"v1.12.2/en/enterprise/integrations/microsoft_excel",
"v1.12.2/en/enterprise/integrations/microsoft_onedrive",
"v1.12.2/en/enterprise/integrations/microsoft_outlook",
"v1.12.2/en/enterprise/integrations/microsoft_sharepoint",
"v1.12.2/en/enterprise/integrations/microsoft_teams",
"v1.12.2/en/enterprise/integrations/microsoft_word",
"v1.12.2/en/enterprise/integrations/notion",
"v1.12.2/en/enterprise/integrations/salesforce",
"v1.12.2/en/enterprise/integrations/shopify",
"v1.12.2/en/enterprise/integrations/slack",
"v1.12.2/en/enterprise/integrations/stripe",
"v1.12.2/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.2/en/enterprise/guides/automation-triggers",
"v1.12.2/en/enterprise/guides/gmail-trigger",
"v1.12.2/en/enterprise/guides/google-calendar-trigger",
"v1.12.2/en/enterprise/guides/google-drive-trigger",
"v1.12.2/en/enterprise/guides/outlook-trigger",
"v1.12.2/en/enterprise/guides/onedrive-trigger",
"v1.12.2/en/enterprise/guides/microsoft-teams-trigger",
"v1.12.2/en/enterprise/guides/slack-trigger",
"v1.12.2/en/enterprise/guides/hubspot-trigger",
"v1.12.2/en/enterprise/guides/salesforce-trigger",
"v1.12.2/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.2/en/enterprise/guides/build-crew",
"v1.12.2/en/enterprise/guides/prepare-for-deployment",
"v1.12.2/en/enterprise/guides/deploy-to-amp",
"v1.12.2/en/enterprise/guides/private-package-registry",
"v1.12.2/en/enterprise/guides/kickoff-crew",
"v1.12.2/en/enterprise/guides/update-crew",
"v1.12.2/en/enterprise/guides/enable-crew-studio",
"v1.12.2/en/enterprise/guides/capture_telemetry_logs",
"v1.12.2/en/enterprise/guides/azure-openai-setup",
"v1.12.2/en/enterprise/guides/tool-repository",
"v1.12.2/en/enterprise/guides/custom-mcp-server",
"v1.12.2/en/enterprise/guides/react-component-export",
"v1.12.2/en/enterprise/guides/team-management",
"v1.12.2/en/enterprise/guides/human-in-the-loop",
"v1.12.2/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.12.2/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.2/en/api-reference/introduction",
"v1.12.2/en/api-reference/inputs",
"v1.12.2/en/api-reference/kickoff",
"v1.12.2/en/api-reference/resume",
"v1.12.2/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.12.2/en/examples/example",
"v1.12.2/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.12.2/en/changelog"
]
}
]
}
]
},
{
"version": "v1.12.1",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.12.1/en/introduction",
"v1.12.1/en/installation",
"v1.12.1/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.12.1/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.12.1/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.1/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.1/en/guides/flows/first-flow",
"v1.12.1/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.12.1/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.12.1/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.12.1/en/guides/advanced/customizing-prompts",
"v1.12.1/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.12.1/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.12.1/en/concepts/agents",
"v1.12.1/en/concepts/tasks",
"v1.12.1/en/concepts/crews",
"v1.12.1/en/concepts/flows",
"v1.12.1/en/concepts/production-architecture",
"v1.12.1/en/concepts/knowledge",
"v1.12.1/en/concepts/skills",
"v1.12.1/en/concepts/llms",
"v1.12.1/en/concepts/files",
"v1.12.1/en/concepts/processes",
"v1.12.1/en/concepts/collaboration",
"v1.12.1/en/concepts/training",
"v1.12.1/en/concepts/memory",
"v1.12.1/en/concepts/reasoning",
"v1.12.1/en/concepts/planning",
"v1.12.1/en/concepts/testing",
"v1.12.1/en/concepts/cli",
"v1.12.1/en/concepts/tools",
"v1.12.1/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.12.1/en/mcp/overview",
"v1.12.1/en/mcp/dsl-integration",
"v1.12.1/en/mcp/stdio",
"v1.12.1/en/mcp/sse",
"v1.12.1/en/mcp/streamable-http",
"v1.12.1/en/mcp/multiple-servers",
"v1.12.1/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.12.1/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.12.1/en/tools/file-document/overview",
"v1.12.1/en/tools/file-document/filereadtool",
"v1.12.1/en/tools/file-document/filewritetool",
"v1.12.1/en/tools/file-document/pdfsearchtool",
"v1.12.1/en/tools/file-document/docxsearchtool",
"v1.12.1/en/tools/file-document/mdxsearchtool",
"v1.12.1/en/tools/file-document/xmlsearchtool",
"v1.12.1/en/tools/file-document/txtsearchtool",
"v1.12.1/en/tools/file-document/jsonsearchtool",
"v1.12.1/en/tools/file-document/csvsearchtool",
"v1.12.1/en/tools/file-document/directorysearchtool",
"v1.12.1/en/tools/file-document/directoryreadtool",
"v1.12.1/en/tools/file-document/ocrtool",
"v1.12.1/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.12.1/en/tools/web-scraping/overview",
"v1.12.1/en/tools/web-scraping/scrapewebsitetool",
"v1.12.1/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.1/en/tools/web-scraping/scrapflyscrapetool",
"v1.12.1/en/tools/web-scraping/seleniumscrapingtool",
"v1.12.1/en/tools/web-scraping/scrapegraphscrapetool",
"v1.12.1/en/tools/web-scraping/spidertool",
"v1.12.1/en/tools/web-scraping/browserbaseloadtool",
"v1.12.1/en/tools/web-scraping/hyperbrowserloadtool",
"v1.12.1/en/tools/web-scraping/stagehandtool",
"v1.12.1/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.1/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.1/en/tools/web-scraping/oxylabsscraperstool",
"v1.12.1/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.12.1/en/tools/search-research/overview",
"v1.12.1/en/tools/search-research/serperdevtool",
"v1.12.1/en/tools/search-research/bravesearchtool",
"v1.12.1/en/tools/search-research/exasearchtool",
"v1.12.1/en/tools/search-research/linkupsearchtool",
"v1.12.1/en/tools/search-research/githubsearchtool",
"v1.12.1/en/tools/search-research/websitesearchtool",
"v1.12.1/en/tools/search-research/codedocssearchtool",
"v1.12.1/en/tools/search-research/youtubechannelsearchtool",
"v1.12.1/en/tools/search-research/youtubevideosearchtool",
"v1.12.1/en/tools/search-research/tavilysearchtool",
"v1.12.1/en/tools/search-research/tavilyextractortool",
"v1.12.1/en/tools/search-research/arxivpapertool",
"v1.12.1/en/tools/search-research/serpapi-googlesearchtool",
"v1.12.1/en/tools/search-research/serpapi-googleshoppingtool",
"v1.12.1/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.12.1/en/tools/database-data/overview",
"v1.12.1/en/tools/database-data/mysqltool",
"v1.12.1/en/tools/database-data/pgsearchtool",
"v1.12.1/en/tools/database-data/snowflakesearchtool",
"v1.12.1/en/tools/database-data/nl2sqltool",
"v1.12.1/en/tools/database-data/qdrantvectorsearchtool",
"v1.12.1/en/tools/database-data/weaviatevectorsearchtool",
"v1.12.1/en/tools/database-data/mongodbvectorsearchtool",
"v1.12.1/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.1/en/tools/ai-ml/overview",
"v1.12.1/en/tools/ai-ml/dalletool",
"v1.12.1/en/tools/ai-ml/visiontool",
"v1.12.1/en/tools/ai-ml/aimindtool",
"v1.12.1/en/tools/ai-ml/llamaindextool",
"v1.12.1/en/tools/ai-ml/langchaintool",
"v1.12.1/en/tools/ai-ml/ragtool",
"v1.12.1/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.12.1/en/tools/cloud-storage/overview",
"v1.12.1/en/tools/cloud-storage/s3readertool",
"v1.12.1/en/tools/cloud-storage/s3writertool",
"v1.12.1/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.1/en/tools/integration/overview",
"v1.12.1/en/tools/integration/bedrockinvokeagenttool",
"v1.12.1/en/tools/integration/crewaiautomationtool",
"v1.12.1/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.12.1/en/tools/automation/overview",
"v1.12.1/en/tools/automation/apifyactorstool",
"v1.12.1/en/tools/automation/composiotool",
"v1.12.1/en/tools/automation/multiontool",
"v1.12.1/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.1/en/observability/tracing",
"v1.12.1/en/observability/overview",
"v1.12.1/en/observability/arize-phoenix",
"v1.12.1/en/observability/braintrust",
"v1.12.1/en/observability/datadog",
"v1.12.1/en/observability/galileo",
"v1.12.1/en/observability/langdb",
"v1.12.1/en/observability/langfuse",
"v1.12.1/en/observability/langtrace",
"v1.12.1/en/observability/maxim",
"v1.12.1/en/observability/mlflow",
"v1.12.1/en/observability/neatlogs",
"v1.12.1/en/observability/openlit",
"v1.12.1/en/observability/opik",
"v1.12.1/en/observability/patronus-evaluation",
"v1.12.1/en/observability/portkey",
"v1.12.1/en/observability/weave",
"v1.12.1/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.12.1/en/learn/overview",
"v1.12.1/en/learn/llm-selection-guide",
"v1.12.1/en/learn/conditional-tasks",
"v1.12.1/en/learn/coding-agents",
"v1.12.1/en/learn/create-custom-tools",
"v1.12.1/en/learn/custom-llm",
"v1.12.1/en/learn/custom-manager-agent",
"v1.12.1/en/learn/customizing-agents",
"v1.12.1/en/learn/dalle-image-generation",
"v1.12.1/en/learn/force-tool-output-as-result",
"v1.12.1/en/learn/hierarchical-process",
"v1.12.1/en/learn/human-input-on-execution",
"v1.12.1/en/learn/human-in-the-loop",
"v1.12.1/en/learn/human-feedback-in-flows",
"v1.12.1/en/learn/kickoff-async",
"v1.12.1/en/learn/kickoff-for-each",
"v1.12.1/en/learn/llm-connections",
"v1.12.1/en/learn/litellm-removal-guide",
"v1.12.1/en/learn/multimodal-agents",
"v1.12.1/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.1/en/learn/sequential-process",
"v1.12.1/en/learn/using-annotations",
"v1.12.1/en/learn/execution-hooks",
"v1.12.1/en/learn/llm-hooks",
"v1.12.1/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.1/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.1/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.12.1/en/enterprise/features/automations",
"v1.12.1/en/enterprise/features/crew-studio",
"v1.12.1/en/enterprise/features/marketplace",
"v1.12.1/en/enterprise/features/agent-repositories",
"v1.12.1/en/enterprise/features/tools-and-integrations",
"v1.12.1/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.12.1/en/enterprise/features/traces",
"v1.12.1/en/enterprise/features/webhook-streaming",
"v1.12.1/en/enterprise/features/hallucination-guardrail",
"v1.12.1/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.12.1/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.12.1/en/enterprise/integrations/asana",
"v1.12.1/en/enterprise/integrations/box",
"v1.12.1/en/enterprise/integrations/clickup",
"v1.12.1/en/enterprise/integrations/github",
"v1.12.1/en/enterprise/integrations/gmail",
"v1.12.1/en/enterprise/integrations/google_calendar",
"v1.12.1/en/enterprise/integrations/google_contacts",
"v1.12.1/en/enterprise/integrations/google_docs",
"v1.12.1/en/enterprise/integrations/google_drive",
"v1.12.1/en/enterprise/integrations/google_sheets",
"v1.12.1/en/enterprise/integrations/google_slides",
"v1.12.1/en/enterprise/integrations/hubspot",
"v1.12.1/en/enterprise/integrations/jira",
"v1.12.1/en/enterprise/integrations/linear",
"v1.12.1/en/enterprise/integrations/microsoft_excel",
"v1.12.1/en/enterprise/integrations/microsoft_onedrive",
"v1.12.1/en/enterprise/integrations/microsoft_outlook",
"v1.12.1/en/enterprise/integrations/microsoft_sharepoint",
"v1.12.1/en/enterprise/integrations/microsoft_teams",
"v1.12.1/en/enterprise/integrations/microsoft_word",
"v1.12.1/en/enterprise/integrations/notion",
"v1.12.1/en/enterprise/integrations/salesforce",
"v1.12.1/en/enterprise/integrations/shopify",
"v1.12.1/en/enterprise/integrations/slack",
"v1.12.1/en/enterprise/integrations/stripe",
"v1.12.1/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.1/en/enterprise/guides/automation-triggers",
"v1.12.1/en/enterprise/guides/gmail-trigger",
"v1.12.1/en/enterprise/guides/google-calendar-trigger",
"v1.12.1/en/enterprise/guides/google-drive-trigger",
"v1.12.1/en/enterprise/guides/outlook-trigger",
"v1.12.1/en/enterprise/guides/onedrive-trigger",
"v1.12.1/en/enterprise/guides/microsoft-teams-trigger",
"v1.12.1/en/enterprise/guides/slack-trigger",
"v1.12.1/en/enterprise/guides/hubspot-trigger",
"v1.12.1/en/enterprise/guides/salesforce-trigger",
"v1.12.1/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.1/en/enterprise/guides/build-crew",
"v1.12.1/en/enterprise/guides/prepare-for-deployment",
"v1.12.1/en/enterprise/guides/deploy-to-amp",
"v1.12.1/en/enterprise/guides/private-package-registry",
"v1.12.1/en/enterprise/guides/kickoff-crew",
"v1.12.1/en/enterprise/guides/update-crew",
"v1.12.1/en/enterprise/guides/enable-crew-studio",
"v1.12.1/en/enterprise/guides/capture_telemetry_logs",
"v1.12.1/en/enterprise/guides/azure-openai-setup",
"v1.12.1/en/enterprise/guides/tool-repository",
"v1.12.1/en/enterprise/guides/custom-mcp-server",
"v1.12.1/en/enterprise/guides/react-component-export",
"v1.12.1/en/enterprise/guides/team-management",
"v1.12.1/en/enterprise/guides/human-in-the-loop",
"v1.12.1/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.12.1/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.1/en/api-reference/introduction",
"v1.12.1/en/api-reference/inputs",
"v1.12.1/en/api-reference/kickoff",
"v1.12.1/en/api-reference/resume",
"v1.12.1/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.12.1/en/examples/example",
"v1.12.1/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.12.1/en/changelog"
]
}
]
}
]
},
{
"version": "v1.12.0",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.12.0/en/introduction",
"v1.12.0/en/installation",
"v1.12.0/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.12.0/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.12.0/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.0/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.0/en/guides/flows/first-flow",
"v1.12.0/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.12.0/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.12.0/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.12.0/en/guides/advanced/customizing-prompts",
"v1.12.0/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.12.0/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.12.0/en/concepts/agents",
"v1.12.0/en/concepts/tasks",
"v1.12.0/en/concepts/crews",
"v1.12.0/en/concepts/flows",
"v1.12.0/en/concepts/production-architecture",
"v1.12.0/en/concepts/knowledge",
"v1.12.0/en/concepts/skills",
"v1.12.0/en/concepts/llms",
"v1.12.0/en/concepts/files",
"v1.12.0/en/concepts/processes",
"v1.12.0/en/concepts/collaboration",
"v1.12.0/en/concepts/training",
"v1.12.0/en/concepts/memory",
"v1.12.0/en/concepts/reasoning",
"v1.12.0/en/concepts/planning",
"v1.12.0/en/concepts/testing",
"v1.12.0/en/concepts/cli",
"v1.12.0/en/concepts/tools",
"v1.12.0/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.12.0/en/mcp/overview",
"v1.12.0/en/mcp/dsl-integration",
"v1.12.0/en/mcp/stdio",
"v1.12.0/en/mcp/sse",
"v1.12.0/en/mcp/streamable-http",
"v1.12.0/en/mcp/multiple-servers",
"v1.12.0/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.12.0/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.12.0/en/tools/file-document/overview",
"v1.12.0/en/tools/file-document/filereadtool",
"v1.12.0/en/tools/file-document/filewritetool",
"v1.12.0/en/tools/file-document/pdfsearchtool",
"v1.12.0/en/tools/file-document/docxsearchtool",
"v1.12.0/en/tools/file-document/mdxsearchtool",
"v1.12.0/en/tools/file-document/xmlsearchtool",
"v1.12.0/en/tools/file-document/txtsearchtool",
"v1.12.0/en/tools/file-document/jsonsearchtool",
"v1.12.0/en/tools/file-document/csvsearchtool",
"v1.12.0/en/tools/file-document/directorysearchtool",
"v1.12.0/en/tools/file-document/directoryreadtool",
"v1.12.0/en/tools/file-document/ocrtool",
"v1.12.0/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.12.0/en/tools/web-scraping/overview",
"v1.12.0/en/tools/web-scraping/scrapewebsitetool",
"v1.12.0/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.0/en/tools/web-scraping/scrapflyscrapetool",
"v1.12.0/en/tools/web-scraping/seleniumscrapingtool",
"v1.12.0/en/tools/web-scraping/scrapegraphscrapetool",
"v1.12.0/en/tools/web-scraping/spidertool",
"v1.12.0/en/tools/web-scraping/browserbaseloadtool",
"v1.12.0/en/tools/web-scraping/hyperbrowserloadtool",
"v1.12.0/en/tools/web-scraping/stagehandtool",
"v1.12.0/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.0/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.0/en/tools/web-scraping/oxylabsscraperstool",
"v1.12.0/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.12.0/en/tools/search-research/overview",
"v1.12.0/en/tools/search-research/serperdevtool",
"v1.12.0/en/tools/search-research/bravesearchtool",
"v1.12.0/en/tools/search-research/exasearchtool",
"v1.12.0/en/tools/search-research/linkupsearchtool",
"v1.12.0/en/tools/search-research/githubsearchtool",
"v1.12.0/en/tools/search-research/websitesearchtool",
"v1.12.0/en/tools/search-research/codedocssearchtool",
"v1.12.0/en/tools/search-research/youtubechannelsearchtool",
"v1.12.0/en/tools/search-research/youtubevideosearchtool",
"v1.12.0/en/tools/search-research/tavilysearchtool",
"v1.12.0/en/tools/search-research/tavilyextractortool",
"v1.12.0/en/tools/search-research/arxivpapertool",
"v1.12.0/en/tools/search-research/serpapi-googlesearchtool",
"v1.12.0/en/tools/search-research/serpapi-googleshoppingtool",
"v1.12.0/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.12.0/en/tools/database-data/overview",
"v1.12.0/en/tools/database-data/mysqltool",
"v1.12.0/en/tools/database-data/pgsearchtool",
"v1.12.0/en/tools/database-data/snowflakesearchtool",
"v1.12.0/en/tools/database-data/nl2sqltool",
"v1.12.0/en/tools/database-data/qdrantvectorsearchtool",
"v1.12.0/en/tools/database-data/weaviatevectorsearchtool",
"v1.12.0/en/tools/database-data/mongodbvectorsearchtool",
"v1.12.0/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.0/en/tools/ai-ml/overview",
"v1.12.0/en/tools/ai-ml/dalletool",
"v1.12.0/en/tools/ai-ml/visiontool",
"v1.12.0/en/tools/ai-ml/aimindtool",
"v1.12.0/en/tools/ai-ml/llamaindextool",
"v1.12.0/en/tools/ai-ml/langchaintool",
"v1.12.0/en/tools/ai-ml/ragtool",
"v1.12.0/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.12.0/en/tools/cloud-storage/overview",
"v1.12.0/en/tools/cloud-storage/s3readertool",
"v1.12.0/en/tools/cloud-storage/s3writertool",
"v1.12.0/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.0/en/tools/integration/overview",
"v1.12.0/en/tools/integration/bedrockinvokeagenttool",
"v1.12.0/en/tools/integration/crewaiautomationtool",
"v1.12.0/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.12.0/en/tools/automation/overview",
"v1.12.0/en/tools/automation/apifyactorstool",
"v1.12.0/en/tools/automation/composiotool",
"v1.12.0/en/tools/automation/multiontool",
"v1.12.0/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.0/en/observability/tracing",
"v1.12.0/en/observability/overview",
"v1.12.0/en/observability/arize-phoenix",
"v1.12.0/en/observability/braintrust",
"v1.12.0/en/observability/datadog",
"v1.12.0/en/observability/galileo",
"v1.12.0/en/observability/langdb",
"v1.12.0/en/observability/langfuse",
"v1.12.0/en/observability/langtrace",
"v1.12.0/en/observability/maxim",
"v1.12.0/en/observability/mlflow",
"v1.12.0/en/observability/neatlogs",
"v1.12.0/en/observability/openlit",
"v1.12.0/en/observability/opik",
"v1.12.0/en/observability/patronus-evaluation",
"v1.12.0/en/observability/portkey",
"v1.12.0/en/observability/weave",
"v1.12.0/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.12.0/en/learn/overview",
"v1.12.0/en/learn/llm-selection-guide",
"v1.12.0/en/learn/conditional-tasks",
"v1.12.0/en/learn/coding-agents",
"v1.12.0/en/learn/create-custom-tools",
"v1.12.0/en/learn/custom-llm",
"v1.12.0/en/learn/custom-manager-agent",
"v1.12.0/en/learn/customizing-agents",
"v1.12.0/en/learn/dalle-image-generation",
"v1.12.0/en/learn/force-tool-output-as-result",
"v1.12.0/en/learn/hierarchical-process",
"v1.12.0/en/learn/human-input-on-execution",
"v1.12.0/en/learn/human-in-the-loop",
"v1.12.0/en/learn/human-feedback-in-flows",
"v1.12.0/en/learn/kickoff-async",
"v1.12.0/en/learn/kickoff-for-each",
"v1.12.0/en/learn/llm-connections",
"v1.12.0/en/learn/litellm-removal-guide",
"v1.12.0/en/learn/multimodal-agents",
"v1.12.0/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.0/en/learn/sequential-process",
"v1.12.0/en/learn/using-annotations",
"v1.12.0/en/learn/execution-hooks",
"v1.12.0/en/learn/llm-hooks",
"v1.12.0/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.0/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.0/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.12.0/en/enterprise/features/automations",
"v1.12.0/en/enterprise/features/crew-studio",
"v1.12.0/en/enterprise/features/marketplace",
"v1.12.0/en/enterprise/features/agent-repositories",
"v1.12.0/en/enterprise/features/tools-and-integrations",
"v1.12.0/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.12.0/en/enterprise/features/traces",
"v1.12.0/en/enterprise/features/webhook-streaming",
"v1.12.0/en/enterprise/features/hallucination-guardrail",
"v1.12.0/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.12.0/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.12.0/en/enterprise/integrations/asana",
"v1.12.0/en/enterprise/integrations/box",
"v1.12.0/en/enterprise/integrations/clickup",
"v1.12.0/en/enterprise/integrations/github",
"v1.12.0/en/enterprise/integrations/gmail",
"v1.12.0/en/enterprise/integrations/google_calendar",
"v1.12.0/en/enterprise/integrations/google_contacts",
"v1.12.0/en/enterprise/integrations/google_docs",
"v1.12.0/en/enterprise/integrations/google_drive",
"v1.12.0/en/enterprise/integrations/google_sheets",
"v1.12.0/en/enterprise/integrations/google_slides",
"v1.12.0/en/enterprise/integrations/hubspot",
"v1.12.0/en/enterprise/integrations/jira",
"v1.12.0/en/enterprise/integrations/linear",
"v1.12.0/en/enterprise/integrations/microsoft_excel",
"v1.12.0/en/enterprise/integrations/microsoft_onedrive",
"v1.12.0/en/enterprise/integrations/microsoft_outlook",
"v1.12.0/en/enterprise/integrations/microsoft_sharepoint",
"v1.12.0/en/enterprise/integrations/microsoft_teams",
"v1.12.0/en/enterprise/integrations/microsoft_word",
"v1.12.0/en/enterprise/integrations/notion",
"v1.12.0/en/enterprise/integrations/salesforce",
"v1.12.0/en/enterprise/integrations/shopify",
"v1.12.0/en/enterprise/integrations/slack",
"v1.12.0/en/enterprise/integrations/stripe",
"v1.12.0/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.0/en/enterprise/guides/automation-triggers",
"v1.12.0/en/enterprise/guides/gmail-trigger",
"v1.12.0/en/enterprise/guides/google-calendar-trigger",
"v1.12.0/en/enterprise/guides/google-drive-trigger",
"v1.12.0/en/enterprise/guides/outlook-trigger",
"v1.12.0/en/enterprise/guides/onedrive-trigger",
"v1.12.0/en/enterprise/guides/microsoft-teams-trigger",
"v1.12.0/en/enterprise/guides/slack-trigger",
"v1.12.0/en/enterprise/guides/hubspot-trigger",
"v1.12.0/en/enterprise/guides/salesforce-trigger",
"v1.12.0/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.0/en/enterprise/guides/build-crew",
"v1.12.0/en/enterprise/guides/prepare-for-deployment",
"v1.12.0/en/enterprise/guides/deploy-to-amp",
"v1.12.0/en/enterprise/guides/private-package-registry",
"v1.12.0/en/enterprise/guides/kickoff-crew",
"v1.12.0/en/enterprise/guides/update-crew",
"v1.12.0/en/enterprise/guides/enable-crew-studio",
"v1.12.0/en/enterprise/guides/capture_telemetry_logs",
"v1.12.0/en/enterprise/guides/azure-openai-setup",
"v1.12.0/en/enterprise/guides/tool-repository",
"v1.12.0/en/enterprise/guides/custom-mcp-server",
"v1.12.0/en/enterprise/guides/react-component-export",
"v1.12.0/en/enterprise/guides/team-management",
"v1.12.0/en/enterprise/guides/human-in-the-loop",
"v1.12.0/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.12.0/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.12.0/en/api-reference/introduction",
"v1.12.0/en/api-reference/inputs",
"v1.12.0/en/api-reference/kickoff",
"v1.12.0/en/api-reference/resume",
"v1.12.0/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.12.0/en/examples/example",
"v1.12.0/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.12.0/en/changelog"
]
}
]
}
]
},
{
"version": "v1.11.1",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.11.1/en/introduction",
"v1.11.1/en/installation",
"v1.11.1/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.11.1/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.11.1/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.11.1/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.11.1/en/guides/flows/first-flow",
"v1.11.1/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Tools",
"icon": "wrench",
"pages": [
"v1.11.1/en/guides/tools/publish-custom-tools"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.11.1/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.11.1/en/guides/advanced/customizing-prompts",
"v1.11.1/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.11.1/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.11.1/en/concepts/agents",
"v1.11.1/en/concepts/tasks",
"v1.11.1/en/concepts/crews",
"v1.11.1/en/concepts/flows",
"v1.11.1/en/concepts/production-architecture",
"v1.11.1/en/concepts/knowledge",
"v1.11.1/en/concepts/llms",
"v1.11.1/en/concepts/files",
"v1.11.1/en/concepts/processes",
"v1.11.1/en/concepts/collaboration",
"v1.11.1/en/concepts/training",
"v1.11.1/en/concepts/memory",
"v1.11.1/en/concepts/reasoning",
"v1.11.1/en/concepts/planning",
"v1.11.1/en/concepts/testing",
"v1.11.1/en/concepts/cli",
"v1.11.1/en/concepts/tools",
"v1.11.1/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.11.1/en/mcp/overview",
"v1.11.1/en/mcp/dsl-integration",
"v1.11.1/en/mcp/stdio",
"v1.11.1/en/mcp/sse",
"v1.11.1/en/mcp/streamable-http",
"v1.11.1/en/mcp/multiple-servers",
"v1.11.1/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.11.1/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.11.1/en/tools/file-document/overview",
"v1.11.1/en/tools/file-document/filereadtool",
"v1.11.1/en/tools/file-document/filewritetool",
"v1.11.1/en/tools/file-document/pdfsearchtool",
"v1.11.1/en/tools/file-document/docxsearchtool",
"v1.11.1/en/tools/file-document/mdxsearchtool",
"v1.11.1/en/tools/file-document/xmlsearchtool",
"v1.11.1/en/tools/file-document/txtsearchtool",
"v1.11.1/en/tools/file-document/jsonsearchtool",
"v1.11.1/en/tools/file-document/csvsearchtool",
"v1.11.1/en/tools/file-document/directorysearchtool",
"v1.11.1/en/tools/file-document/directoryreadtool",
"v1.11.1/en/tools/file-document/ocrtool",
"v1.11.1/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.11.1/en/tools/web-scraping/overview",
"v1.11.1/en/tools/web-scraping/scrapewebsitetool",
"v1.11.1/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.1/en/tools/web-scraping/scrapflyscrapetool",
"v1.11.1/en/tools/web-scraping/seleniumscrapingtool",
"v1.11.1/en/tools/web-scraping/scrapegraphscrapetool",
"v1.11.1/en/tools/web-scraping/spidertool",
"v1.11.1/en/tools/web-scraping/browserbaseloadtool",
"v1.11.1/en/tools/web-scraping/hyperbrowserloadtool",
"v1.11.1/en/tools/web-scraping/stagehandtool",
"v1.11.1/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.1/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.1/en/tools/web-scraping/oxylabsscraperstool",
"v1.11.1/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.11.1/en/tools/search-research/overview",
"v1.11.1/en/tools/search-research/serperdevtool",
"v1.11.1/en/tools/search-research/bravesearchtool",
"v1.11.1/en/tools/search-research/exasearchtool",
"v1.11.1/en/tools/search-research/linkupsearchtool",
"v1.11.1/en/tools/search-research/githubsearchtool",
"v1.11.1/en/tools/search-research/websitesearchtool",
"v1.11.1/en/tools/search-research/codedocssearchtool",
"v1.11.1/en/tools/search-research/youtubechannelsearchtool",
"v1.11.1/en/tools/search-research/youtubevideosearchtool",
"v1.11.1/en/tools/search-research/tavilysearchtool",
"v1.11.1/en/tools/search-research/tavilyextractortool",
"v1.11.1/en/tools/search-research/arxivpapertool",
"v1.11.1/en/tools/search-research/serpapi-googlesearchtool",
"v1.11.1/en/tools/search-research/serpapi-googleshoppingtool",
"v1.11.1/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.11.1/en/tools/database-data/overview",
"v1.11.1/en/tools/database-data/mysqltool",
"v1.11.1/en/tools/database-data/pgsearchtool",
"v1.11.1/en/tools/database-data/snowflakesearchtool",
"v1.11.1/en/tools/database-data/nl2sqltool",
"v1.11.1/en/tools/database-data/qdrantvectorsearchtool",
"v1.11.1/en/tools/database-data/weaviatevectorsearchtool",
"v1.11.1/en/tools/database-data/mongodbvectorsearchtool",
"v1.11.1/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.11.1/en/tools/ai-ml/overview",
"v1.11.1/en/tools/ai-ml/dalletool",
"v1.11.1/en/tools/ai-ml/visiontool",
"v1.11.1/en/tools/ai-ml/aimindtool",
"v1.11.1/en/tools/ai-ml/llamaindextool",
"v1.11.1/en/tools/ai-ml/langchaintool",
"v1.11.1/en/tools/ai-ml/ragtool",
"v1.11.1/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.11.1/en/tools/cloud-storage/overview",
"v1.11.1/en/tools/cloud-storage/s3readertool",
"v1.11.1/en/tools/cloud-storage/s3writertool",
"v1.11.1/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.1/en/tools/integration/overview",
"v1.11.1/en/tools/integration/bedrockinvokeagenttool",
"v1.11.1/en/tools/integration/crewaiautomationtool",
"v1.11.1/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.11.1/en/tools/automation/overview",
"v1.11.1/en/tools/automation/apifyactorstool",
"v1.11.1/en/tools/automation/composiotool",
"v1.11.1/en/tools/automation/multiontool",
"v1.11.1/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.11.1/en/observability/tracing",
"v1.11.1/en/observability/overview",
"v1.11.1/en/observability/arize-phoenix",
"v1.11.1/en/observability/braintrust",
"v1.11.1/en/observability/datadog",
"v1.11.1/en/observability/galileo",
"v1.11.1/en/observability/langdb",
"v1.11.1/en/observability/langfuse",
"v1.11.1/en/observability/langtrace",
"v1.11.1/en/observability/maxim",
"v1.11.1/en/observability/mlflow",
"v1.11.1/en/observability/neatlogs",
"v1.11.1/en/observability/openlit",
"v1.11.1/en/observability/opik",
"v1.11.1/en/observability/patronus-evaluation",
"v1.11.1/en/observability/portkey",
"v1.11.1/en/observability/weave",
"v1.11.1/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.11.1/en/learn/overview",
"v1.11.1/en/learn/llm-selection-guide",
"v1.11.1/en/learn/conditional-tasks",
"v1.11.1/en/learn/coding-agents",
"v1.11.1/en/learn/create-custom-tools",
"v1.11.1/en/learn/custom-llm",
"v1.11.1/en/learn/custom-manager-agent",
"v1.11.1/en/learn/customizing-agents",
"v1.11.1/en/learn/dalle-image-generation",
"v1.11.1/en/learn/force-tool-output-as-result",
"v1.11.1/en/learn/hierarchical-process",
"v1.11.1/en/learn/human-input-on-execution",
"v1.11.1/en/learn/human-in-the-loop",
"v1.11.1/en/learn/human-feedback-in-flows",
"v1.11.1/en/learn/kickoff-async",
"v1.11.1/en/learn/kickoff-for-each",
"v1.11.1/en/learn/llm-connections",
"v1.11.1/en/learn/multimodal-agents",
"v1.11.1/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.1/en/learn/sequential-process",
"v1.11.1/en/learn/using-annotations",
"v1.11.1/en/learn/execution-hooks",
"v1.11.1/en/learn/llm-hooks",
"v1.11.1/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.11.1/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.11.1/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.11.1/en/enterprise/features/automations",
"v1.11.1/en/enterprise/features/crew-studio",
"v1.11.1/en/enterprise/features/marketplace",
"v1.11.1/en/enterprise/features/agent-repositories",
"v1.11.1/en/enterprise/features/tools-and-integrations",
"v1.11.1/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.11.1/en/enterprise/features/traces",
"v1.11.1/en/enterprise/features/webhook-streaming",
"v1.11.1/en/enterprise/features/hallucination-guardrail",
"v1.11.1/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.11.1/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.11.1/en/enterprise/integrations/asana",
"v1.11.1/en/enterprise/integrations/box",
"v1.11.1/en/enterprise/integrations/clickup",
"v1.11.1/en/enterprise/integrations/github",
"v1.11.1/en/enterprise/integrations/gmail",
"v1.11.1/en/enterprise/integrations/google_calendar",
"v1.11.1/en/enterprise/integrations/google_contacts",
"v1.11.1/en/enterprise/integrations/google_docs",
"v1.11.1/en/enterprise/integrations/google_drive",
"v1.11.1/en/enterprise/integrations/google_sheets",
"v1.11.1/en/enterprise/integrations/google_slides",
"v1.11.1/en/enterprise/integrations/hubspot",
"v1.11.1/en/enterprise/integrations/jira",
"v1.11.1/en/enterprise/integrations/linear",
"v1.11.1/en/enterprise/integrations/microsoft_excel",
"v1.11.1/en/enterprise/integrations/microsoft_onedrive",
"v1.11.1/en/enterprise/integrations/microsoft_outlook",
"v1.11.1/en/enterprise/integrations/microsoft_sharepoint",
"v1.11.1/en/enterprise/integrations/microsoft_teams",
"v1.11.1/en/enterprise/integrations/microsoft_word",
"v1.11.1/en/enterprise/integrations/notion",
"v1.11.1/en/enterprise/integrations/salesforce",
"v1.11.1/en/enterprise/integrations/shopify",
"v1.11.1/en/enterprise/integrations/slack",
"v1.11.1/en/enterprise/integrations/stripe",
"v1.11.1/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.11.1/en/enterprise/guides/automation-triggers",
"v1.11.1/en/enterprise/guides/gmail-trigger",
"v1.11.1/en/enterprise/guides/google-calendar-trigger",
"v1.11.1/en/enterprise/guides/google-drive-trigger",
"v1.11.1/en/enterprise/guides/outlook-trigger",
"v1.11.1/en/enterprise/guides/onedrive-trigger",
"v1.11.1/en/enterprise/guides/microsoft-teams-trigger",
"v1.11.1/en/enterprise/guides/slack-trigger",
"v1.11.1/en/enterprise/guides/hubspot-trigger",
"v1.11.1/en/enterprise/guides/salesforce-trigger",
"v1.11.1/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.11.1/en/enterprise/guides/build-crew",
"v1.11.1/en/enterprise/guides/prepare-for-deployment",
"v1.11.1/en/enterprise/guides/deploy-to-amp",
"v1.11.1/en/enterprise/guides/private-package-registry",
"v1.11.1/en/enterprise/guides/kickoff-crew",
"v1.11.1/en/enterprise/guides/update-crew",
"v1.11.1/en/enterprise/guides/enable-crew-studio",
"v1.11.1/en/enterprise/guides/capture_telemetry_logs",
"v1.11.1/en/enterprise/guides/azure-openai-setup",
"v1.11.1/en/enterprise/guides/tool-repository",
"v1.11.1/en/enterprise/guides/custom-mcp-server",
"v1.11.1/en/enterprise/guides/react-component-export",
"v1.11.1/en/enterprise/guides/team-management",
"v1.11.1/en/enterprise/guides/human-in-the-loop",
"v1.11.1/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.11.1/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.11.1/en/api-reference/introduction",
"v1.11.1/en/api-reference/inputs",
"v1.11.1/en/api-reference/kickoff",
"v1.11.1/en/api-reference/resume",
"v1.11.1/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.11.1/en/examples/example",
"v1.11.1/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.11.1/en/changelog"
]
}
]
}
]
},
{
"version": "v1.11.0",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.11.0/en/introduction",
"v1.11.0/en/installation",
"v1.11.0/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.11.0/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.11.0/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.11.0/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.11.0/en/guides/flows/first-flow",
"v1.11.0/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.11.0/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.11.0/en/guides/advanced/customizing-prompts",
"v1.11.0/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.11.0/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.11.0/en/concepts/agents",
"v1.11.0/en/concepts/tasks",
"v1.11.0/en/concepts/crews",
"v1.11.0/en/concepts/flows",
"v1.11.0/en/concepts/production-architecture",
"v1.11.0/en/concepts/knowledge",
"v1.11.0/en/concepts/llms",
"v1.11.0/en/concepts/files",
"v1.11.0/en/concepts/processes",
"v1.11.0/en/concepts/collaboration",
"v1.11.0/en/concepts/training",
"v1.11.0/en/concepts/memory",
"v1.11.0/en/concepts/reasoning",
"v1.11.0/en/concepts/planning",
"v1.11.0/en/concepts/testing",
"v1.11.0/en/concepts/cli",
"v1.11.0/en/concepts/tools",
"v1.11.0/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.11.0/en/mcp/overview",
"v1.11.0/en/mcp/dsl-integration",
"v1.11.0/en/mcp/stdio",
"v1.11.0/en/mcp/sse",
"v1.11.0/en/mcp/streamable-http",
"v1.11.0/en/mcp/multiple-servers",
"v1.11.0/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.11.0/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.11.0/en/tools/file-document/overview",
"v1.11.0/en/tools/file-document/filereadtool",
"v1.11.0/en/tools/file-document/filewritetool",
"v1.11.0/en/tools/file-document/pdfsearchtool",
"v1.11.0/en/tools/file-document/docxsearchtool",
"v1.11.0/en/tools/file-document/mdxsearchtool",
"v1.11.0/en/tools/file-document/xmlsearchtool",
"v1.11.0/en/tools/file-document/txtsearchtool",
"v1.11.0/en/tools/file-document/jsonsearchtool",
"v1.11.0/en/tools/file-document/csvsearchtool",
"v1.11.0/en/tools/file-document/directorysearchtool",
"v1.11.0/en/tools/file-document/directoryreadtool",
"v1.11.0/en/tools/file-document/ocrtool",
"v1.11.0/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.11.0/en/tools/web-scraping/overview",
"v1.11.0/en/tools/web-scraping/scrapewebsitetool",
"v1.11.0/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.0/en/tools/web-scraping/scrapflyscrapetool",
"v1.11.0/en/tools/web-scraping/seleniumscrapingtool",
"v1.11.0/en/tools/web-scraping/scrapegraphscrapetool",
"v1.11.0/en/tools/web-scraping/spidertool",
"v1.11.0/en/tools/web-scraping/browserbaseloadtool",
"v1.11.0/en/tools/web-scraping/hyperbrowserloadtool",
"v1.11.0/en/tools/web-scraping/stagehandtool",
"v1.11.0/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.0/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.0/en/tools/web-scraping/oxylabsscraperstool",
"v1.11.0/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.11.0/en/tools/search-research/overview",
"v1.11.0/en/tools/search-research/serperdevtool",
"v1.11.0/en/tools/search-research/bravesearchtool",
"v1.11.0/en/tools/search-research/exasearchtool",
"v1.11.0/en/tools/search-research/linkupsearchtool",
"v1.11.0/en/tools/search-research/githubsearchtool",
"v1.11.0/en/tools/search-research/websitesearchtool",
"v1.11.0/en/tools/search-research/codedocssearchtool",
"v1.11.0/en/tools/search-research/youtubechannelsearchtool",
"v1.11.0/en/tools/search-research/youtubevideosearchtool",
"v1.11.0/en/tools/search-research/tavilysearchtool",
"v1.11.0/en/tools/search-research/tavilyextractortool",
"v1.11.0/en/tools/search-research/arxivpapertool",
"v1.11.0/en/tools/search-research/serpapi-googlesearchtool",
"v1.11.0/en/tools/search-research/serpapi-googleshoppingtool",
"v1.11.0/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.11.0/en/tools/database-data/overview",
"v1.11.0/en/tools/database-data/mysqltool",
"v1.11.0/en/tools/database-data/pgsearchtool",
"v1.11.0/en/tools/database-data/snowflakesearchtool",
"v1.11.0/en/tools/database-data/nl2sqltool",
"v1.11.0/en/tools/database-data/qdrantvectorsearchtool",
"v1.11.0/en/tools/database-data/weaviatevectorsearchtool",
"v1.11.0/en/tools/database-data/mongodbvectorsearchtool",
"v1.11.0/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.11.0/en/tools/ai-ml/overview",
"v1.11.0/en/tools/ai-ml/dalletool",
"v1.11.0/en/tools/ai-ml/visiontool",
"v1.11.0/en/tools/ai-ml/aimindtool",
"v1.11.0/en/tools/ai-ml/llamaindextool",
"v1.11.0/en/tools/ai-ml/langchaintool",
"v1.11.0/en/tools/ai-ml/ragtool",
"v1.11.0/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.11.0/en/tools/cloud-storage/overview",
"v1.11.0/en/tools/cloud-storage/s3readertool",
"v1.11.0/en/tools/cloud-storage/s3writertool",
"v1.11.0/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.0/en/tools/integration/overview",
"v1.11.0/en/tools/integration/bedrockinvokeagenttool",
"v1.11.0/en/tools/integration/crewaiautomationtool",
"v1.11.0/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.11.0/en/tools/automation/overview",
"v1.11.0/en/tools/automation/apifyactorstool",
"v1.11.0/en/tools/automation/composiotool",
"v1.11.0/en/tools/automation/multiontool",
"v1.11.0/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.11.0/en/observability/tracing",
"v1.11.0/en/observability/overview",
"v1.11.0/en/observability/arize-phoenix",
"v1.11.0/en/observability/braintrust",
"v1.11.0/en/observability/datadog",
"v1.11.0/en/observability/galileo",
"v1.11.0/en/observability/langdb",
"v1.11.0/en/observability/langfuse",
"v1.11.0/en/observability/langtrace",
"v1.11.0/en/observability/maxim",
"v1.11.0/en/observability/mlflow",
"v1.11.0/en/observability/neatlogs",
"v1.11.0/en/observability/openlit",
"v1.11.0/en/observability/opik",
"v1.11.0/en/observability/patronus-evaluation",
"v1.11.0/en/observability/portkey",
"v1.11.0/en/observability/weave",
"v1.11.0/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.11.0/en/learn/overview",
"v1.11.0/en/learn/llm-selection-guide",
"v1.11.0/en/learn/conditional-tasks",
"v1.11.0/en/learn/coding-agents",
"v1.11.0/en/learn/create-custom-tools",
"v1.11.0/en/learn/custom-llm",
"v1.11.0/en/learn/custom-manager-agent",
"v1.11.0/en/learn/customizing-agents",
"v1.11.0/en/learn/dalle-image-generation",
"v1.11.0/en/learn/force-tool-output-as-result",
"v1.11.0/en/learn/hierarchical-process",
"v1.11.0/en/learn/human-input-on-execution",
"v1.11.0/en/learn/human-in-the-loop",
"v1.11.0/en/learn/human-feedback-in-flows",
"v1.11.0/en/learn/kickoff-async",
"v1.11.0/en/learn/kickoff-for-each",
"v1.11.0/en/learn/llm-connections",
"v1.11.0/en/learn/multimodal-agents",
"v1.11.0/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.0/en/learn/sequential-process",
"v1.11.0/en/learn/using-annotations",
"v1.11.0/en/learn/execution-hooks",
"v1.11.0/en/learn/llm-hooks",
"v1.11.0/en/learn/tool-hooks",
"v1.11.0/en/learn/a2a-agent-delegation"
]
},
{
"group": "Telemetry",
"pages": [
"v1.11.0/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.11.0/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.11.0/en/enterprise/features/automations",
"v1.11.0/en/enterprise/features/crew-studio",
"v1.11.0/en/enterprise/features/marketplace",
"v1.11.0/en/enterprise/features/agent-repositories",
"v1.11.0/en/enterprise/features/tools-and-integrations",
"v1.11.0/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.11.0/en/enterprise/features/traces",
"v1.11.0/en/enterprise/features/webhook-streaming",
"v1.11.0/en/enterprise/features/hallucination-guardrail",
"v1.11.0/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.11.0/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.11.0/en/enterprise/integrations/asana",
"v1.11.0/en/enterprise/integrations/box",
"v1.11.0/en/enterprise/integrations/clickup",
"v1.11.0/en/enterprise/integrations/github",
"v1.11.0/en/enterprise/integrations/gmail",
"v1.11.0/en/enterprise/integrations/google_calendar",
"v1.11.0/en/enterprise/integrations/google_contacts",
"v1.11.0/en/enterprise/integrations/google_docs",
"v1.11.0/en/enterprise/integrations/google_drive",
"v1.11.0/en/enterprise/integrations/google_sheets",
"v1.11.0/en/enterprise/integrations/google_slides",
"v1.11.0/en/enterprise/integrations/hubspot",
"v1.11.0/en/enterprise/integrations/jira",
"v1.11.0/en/enterprise/integrations/linear",
"v1.11.0/en/enterprise/integrations/microsoft_excel",
"v1.11.0/en/enterprise/integrations/microsoft_onedrive",
"v1.11.0/en/enterprise/integrations/microsoft_outlook",
"v1.11.0/en/enterprise/integrations/microsoft_sharepoint",
"v1.11.0/en/enterprise/integrations/microsoft_teams",
"v1.11.0/en/enterprise/integrations/microsoft_word",
"v1.11.0/en/enterprise/integrations/notion",
"v1.11.0/en/enterprise/integrations/salesforce",
"v1.11.0/en/enterprise/integrations/shopify",
"v1.11.0/en/enterprise/integrations/slack",
"v1.11.0/en/enterprise/integrations/stripe",
"v1.11.0/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.11.0/en/enterprise/guides/automation-triggers",
"v1.11.0/en/enterprise/guides/gmail-trigger",
"v1.11.0/en/enterprise/guides/google-calendar-trigger",
"v1.11.0/en/enterprise/guides/google-drive-trigger",
"v1.11.0/en/enterprise/guides/outlook-trigger",
"v1.11.0/en/enterprise/guides/onedrive-trigger",
"v1.11.0/en/enterprise/guides/microsoft-teams-trigger",
"v1.11.0/en/enterprise/guides/slack-trigger",
"v1.11.0/en/enterprise/guides/hubspot-trigger",
"v1.11.0/en/enterprise/guides/salesforce-trigger",
"v1.11.0/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.11.0/en/enterprise/guides/build-crew",
"v1.11.0/en/enterprise/guides/prepare-for-deployment",
"v1.11.0/en/enterprise/guides/deploy-to-amp",
"v1.11.0/en/enterprise/guides/private-package-registry",
"v1.11.0/en/enterprise/guides/kickoff-crew",
"v1.11.0/en/enterprise/guides/update-crew",
"v1.11.0/en/enterprise/guides/enable-crew-studio",
"v1.11.0/en/enterprise/guides/capture_telemetry_logs",
"v1.11.0/en/enterprise/guides/azure-openai-setup",
"v1.11.0/en/enterprise/guides/tool-repository",
"v1.11.0/en/enterprise/guides/custom-mcp-server",
"v1.11.0/en/enterprise/guides/react-component-export",
"v1.11.0/en/enterprise/guides/team-management",
"v1.11.0/en/enterprise/guides/human-in-the-loop",
"v1.11.0/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.11.0/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.11.0/en/api-reference/introduction",
"v1.11.0/en/api-reference/inputs",
"v1.11.0/en/api-reference/kickoff",
"v1.11.0/en/api-reference/resume",
"v1.11.0/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.11.0/en/examples/example",
"v1.11.0/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.11.0/en/changelog"
]
}
]
}
]
},
{
"version": "v1.10.1",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.10.1/en/introduction",
"v1.10.1/en/installation",
"v1.10.1/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.10.1/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.10.1/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.10.1/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.10.1/en/guides/flows/first-flow",
"v1.10.1/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.10.1/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.10.1/en/guides/advanced/customizing-prompts",
"v1.10.1/en/guides/advanced/fingerprinting"
]
},
{
"group": "Migration",
"icon": "shuffle",
"pages": [
"v1.10.1/en/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.10.1/en/concepts/agents",
"v1.10.1/en/concepts/tasks",
"v1.10.1/en/concepts/crews",
"v1.10.1/en/concepts/flows",
"v1.10.1/en/concepts/production-architecture",
"v1.10.1/en/concepts/knowledge",
"v1.10.1/en/concepts/llms",
"v1.10.1/en/concepts/files",
"v1.10.1/en/concepts/processes",
"v1.10.1/en/concepts/collaboration",
"v1.10.1/en/concepts/training",
"v1.10.1/en/concepts/memory",
"v1.10.1/en/concepts/reasoning",
"v1.10.1/en/concepts/planning",
"v1.10.1/en/concepts/testing",
"v1.10.1/en/concepts/cli",
"v1.10.1/en/concepts/tools",
"v1.10.1/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.10.1/en/mcp/overview",
"v1.10.1/en/mcp/dsl-integration",
"v1.10.1/en/mcp/stdio",
"v1.10.1/en/mcp/sse",
"v1.10.1/en/mcp/streamable-http",
"v1.10.1/en/mcp/multiple-servers",
"v1.10.1/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.10.1/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.10.1/en/tools/file-document/overview",
"v1.10.1/en/tools/file-document/filereadtool",
"v1.10.1/en/tools/file-document/filewritetool",
"v1.10.1/en/tools/file-document/pdfsearchtool",
"v1.10.1/en/tools/file-document/docxsearchtool",
"v1.10.1/en/tools/file-document/mdxsearchtool",
"v1.10.1/en/tools/file-document/xmlsearchtool",
"v1.10.1/en/tools/file-document/txtsearchtool",
"v1.10.1/en/tools/file-document/jsonsearchtool",
"v1.10.1/en/tools/file-document/csvsearchtool",
"v1.10.1/en/tools/file-document/directorysearchtool",
"v1.10.1/en/tools/file-document/directoryreadtool",
"v1.10.1/en/tools/file-document/ocrtool",
"v1.10.1/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.10.1/en/tools/web-scraping/overview",
"v1.10.1/en/tools/web-scraping/scrapewebsitetool",
"v1.10.1/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.1/en/tools/web-scraping/scrapflyscrapetool",
"v1.10.1/en/tools/web-scraping/seleniumscrapingtool",
"v1.10.1/en/tools/web-scraping/scrapegraphscrapetool",
"v1.10.1/en/tools/web-scraping/spidertool",
"v1.10.1/en/tools/web-scraping/browserbaseloadtool",
"v1.10.1/en/tools/web-scraping/hyperbrowserloadtool",
"v1.10.1/en/tools/web-scraping/stagehandtool",
"v1.10.1/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.1/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.1/en/tools/web-scraping/oxylabsscraperstool",
"v1.10.1/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.10.1/en/tools/search-research/overview",
"v1.10.1/en/tools/search-research/serperdevtool",
"v1.10.1/en/tools/search-research/bravesearchtool",
"v1.10.1/en/tools/search-research/exasearchtool",
"v1.10.1/en/tools/search-research/linkupsearchtool",
"v1.10.1/en/tools/search-research/githubsearchtool",
"v1.10.1/en/tools/search-research/websitesearchtool",
"v1.10.1/en/tools/search-research/codedocssearchtool",
"v1.10.1/en/tools/search-research/youtubechannelsearchtool",
"v1.10.1/en/tools/search-research/youtubevideosearchtool",
"v1.10.1/en/tools/search-research/tavilysearchtool",
"v1.10.1/en/tools/search-research/tavilyextractortool",
"v1.10.1/en/tools/search-research/arxivpapertool",
"v1.10.1/en/tools/search-research/serpapi-googlesearchtool",
"v1.10.1/en/tools/search-research/serpapi-googleshoppingtool",
"v1.10.1/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.10.1/en/tools/database-data/overview",
"v1.10.1/en/tools/database-data/mysqltool",
"v1.10.1/en/tools/database-data/pgsearchtool",
"v1.10.1/en/tools/database-data/snowflakesearchtool",
"v1.10.1/en/tools/database-data/nl2sqltool",
"v1.10.1/en/tools/database-data/qdrantvectorsearchtool",
"v1.10.1/en/tools/database-data/weaviatevectorsearchtool",
"v1.10.1/en/tools/database-data/mongodbvectorsearchtool",
"v1.10.1/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.10.1/en/tools/ai-ml/overview",
"v1.10.1/en/tools/ai-ml/dalletool",
"v1.10.1/en/tools/ai-ml/visiontool",
"v1.10.1/en/tools/ai-ml/aimindtool",
"v1.10.1/en/tools/ai-ml/llamaindextool",
"v1.10.1/en/tools/ai-ml/langchaintool",
"v1.10.1/en/tools/ai-ml/ragtool",
"v1.10.1/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.10.1/en/tools/cloud-storage/overview",
"v1.10.1/en/tools/cloud-storage/s3readertool",
"v1.10.1/en/tools/cloud-storage/s3writertool",
"v1.10.1/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.1/en/tools/integration/overview",
"v1.10.1/en/tools/integration/bedrockinvokeagenttool",
"v1.10.1/en/tools/integration/crewaiautomationtool",
"v1.10.1/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.10.1/en/tools/automation/overview",
"v1.10.1/en/tools/automation/apifyactorstool",
"v1.10.1/en/tools/automation/composiotool",
"v1.10.1/en/tools/automation/multiontool",
"v1.10.1/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.10.1/en/observability/tracing",
"v1.10.1/en/observability/overview",
"v1.10.1/en/observability/arize-phoenix",
"v1.10.1/en/observability/braintrust",
"v1.10.1/en/observability/datadog",
"v1.10.1/en/observability/galileo",
"v1.10.1/en/observability/langdb",
"v1.10.1/en/observability/langfuse",
"v1.10.1/en/observability/langtrace",
"v1.10.1/en/observability/maxim",
"v1.10.1/en/observability/mlflow",
"v1.10.1/en/observability/neatlogs",
"v1.10.1/en/observability/openlit",
"v1.10.1/en/observability/opik",
"v1.10.1/en/observability/patronus-evaluation",
"v1.10.1/en/observability/portkey",
"v1.10.1/en/observability/weave",
"v1.10.1/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.10.1/en/learn/overview",
"v1.10.1/en/learn/llm-selection-guide",
"v1.10.1/en/learn/conditional-tasks",
"v1.10.1/en/learn/coding-agents",
"v1.10.1/en/learn/create-custom-tools",
"v1.10.1/en/learn/custom-llm",
"v1.10.1/en/learn/custom-manager-agent",
"v1.10.1/en/learn/customizing-agents",
"v1.10.1/en/learn/dalle-image-generation",
"v1.10.1/en/learn/force-tool-output-as-result",
"v1.10.1/en/learn/hierarchical-process",
"v1.10.1/en/learn/human-input-on-execution",
"v1.10.1/en/learn/human-in-the-loop",
"v1.10.1/en/learn/human-feedback-in-flows",
"v1.10.1/en/learn/kickoff-async",
"v1.10.1/en/learn/kickoff-for-each",
"v1.10.1/en/learn/llm-connections",
"v1.10.1/en/learn/multimodal-agents",
"v1.10.1/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.1/en/learn/sequential-process",
"v1.10.1/en/learn/using-annotations",
"v1.10.1/en/learn/execution-hooks",
"v1.10.1/en/learn/llm-hooks",
"v1.10.1/en/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.10.1/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.10.1/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.10.1/en/enterprise/features/automations",
"v1.10.1/en/enterprise/features/crew-studio",
"v1.10.1/en/enterprise/features/marketplace",
"v1.10.1/en/enterprise/features/agent-repositories",
"v1.10.1/en/enterprise/features/tools-and-integrations",
"v1.10.1/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.10.1/en/enterprise/features/traces",
"v1.10.1/en/enterprise/features/webhook-streaming",
"v1.10.1/en/enterprise/features/hallucination-guardrail",
"v1.10.1/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.10.1/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.10.1/en/enterprise/integrations/asana",
"v1.10.1/en/enterprise/integrations/box",
"v1.10.1/en/enterprise/integrations/clickup",
"v1.10.1/en/enterprise/integrations/github",
"v1.10.1/en/enterprise/integrations/gmail",
"v1.10.1/en/enterprise/integrations/google_calendar",
"v1.10.1/en/enterprise/integrations/google_contacts",
"v1.10.1/en/enterprise/integrations/google_docs",
"v1.10.1/en/enterprise/integrations/google_drive",
"v1.10.1/en/enterprise/integrations/google_sheets",
"v1.10.1/en/enterprise/integrations/google_slides",
"v1.10.1/en/enterprise/integrations/hubspot",
"v1.10.1/en/enterprise/integrations/jira",
"v1.10.1/en/enterprise/integrations/linear",
"v1.10.1/en/enterprise/integrations/microsoft_excel",
"v1.10.1/en/enterprise/integrations/microsoft_onedrive",
"v1.10.1/en/enterprise/integrations/microsoft_outlook",
"v1.10.1/en/enterprise/integrations/microsoft_sharepoint",
"v1.10.1/en/enterprise/integrations/microsoft_teams",
"v1.10.1/en/enterprise/integrations/microsoft_word",
"v1.10.1/en/enterprise/integrations/notion",
"v1.10.1/en/enterprise/integrations/salesforce",
"v1.10.1/en/enterprise/integrations/shopify",
"v1.10.1/en/enterprise/integrations/slack",
"v1.10.1/en/enterprise/integrations/stripe",
"v1.10.1/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.10.1/en/enterprise/guides/automation-triggers",
"v1.10.1/en/enterprise/guides/gmail-trigger",
"v1.10.1/en/enterprise/guides/google-calendar-trigger",
"v1.10.1/en/enterprise/guides/google-drive-trigger",
"v1.10.1/en/enterprise/guides/outlook-trigger",
"v1.10.1/en/enterprise/guides/onedrive-trigger",
"v1.10.1/en/enterprise/guides/microsoft-teams-trigger",
"v1.10.1/en/enterprise/guides/slack-trigger",
"v1.10.1/en/enterprise/guides/hubspot-trigger",
"v1.10.1/en/enterprise/guides/salesforce-trigger",
"v1.10.1/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.10.1/en/enterprise/guides/build-crew",
"v1.10.1/en/enterprise/guides/prepare-for-deployment",
"v1.10.1/en/enterprise/guides/deploy-to-amp",
"v1.10.1/en/enterprise/guides/private-package-registry",
"v1.10.1/en/enterprise/guides/kickoff-crew",
"v1.10.1/en/enterprise/guides/update-crew",
"v1.10.1/en/enterprise/guides/enable-crew-studio",
"v1.10.1/en/enterprise/guides/capture_telemetry_logs",
"v1.10.1/en/enterprise/guides/azure-openai-setup",
"v1.10.1/en/enterprise/guides/tool-repository",
"v1.10.1/en/enterprise/guides/react-component-export",
"v1.10.1/en/enterprise/guides/team-management",
"v1.10.1/en/enterprise/guides/human-in-the-loop",
"v1.10.1/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.10.1/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.10.1/en/api-reference/introduction",
"v1.10.1/en/api-reference/inputs",
"v1.10.1/en/api-reference/kickoff",
"v1.10.1/en/api-reference/resume",
"v1.10.1/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.10.1/en/examples/example",
"v1.10.1/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.10.1/en/changelog"
]
}
]
}
]
},
{
"version": "v1.10.0",
"tabs": [
{
"tab": "Home",
"icon": "house",
"groups": [
{
"group": "Welcome",
"pages": [
"index"
]
}
]
},
{
"tab": "Documentation",
"icon": "book-open",
"groups": [
{
"group": "Get Started",
"pages": [
"v1.10.0/en/introduction",
"v1.10.0/en/installation",
"v1.10.0/en/quickstart"
]
},
{
"group": "Guides",
"pages": [
{
"group": "Strategy",
"icon": "compass",
"pages": [
"v1.10.0/en/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agents",
"icon": "user",
"pages": [
"v1.10.0/en/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.10.0/en/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.10.0/en/guides/flows/first-flow",
"v1.10.0/en/guides/flows/mastering-flow-state"
]
},
{
"group": "Coding Tools",
"icon": "terminal",
"pages": [
"v1.10.0/en/guides/coding-tools/agents-md"
]
},
{
"group": "Advanced",
"icon": "gear",
"pages": [
"v1.10.0/en/guides/advanced/customizing-prompts",
"v1.10.0/en/guides/advanced/fingerprinting"
]
}
]
},
{
"group": "Core Concepts",
"pages": [
"v1.10.0/en/concepts/agents",
"v1.10.0/en/concepts/tasks",
"v1.10.0/en/concepts/crews",
"v1.10.0/en/concepts/flows",
"v1.10.0/en/concepts/production-architecture",
"v1.10.0/en/concepts/knowledge",
"v1.10.0/en/concepts/llms",
"v1.10.0/en/concepts/files",
"v1.10.0/en/concepts/processes",
"v1.10.0/en/concepts/collaboration",
"v1.10.0/en/concepts/training",
"v1.10.0/en/concepts/memory",
"v1.10.0/en/concepts/reasoning",
"v1.10.0/en/concepts/planning",
"v1.10.0/en/concepts/testing",
"v1.10.0/en/concepts/cli",
"v1.10.0/en/concepts/tools",
"v1.10.0/en/concepts/event-listener"
]
},
{
"group": "MCP Integration",
"pages": [
"v1.10.0/en/mcp/overview",
"v1.10.0/en/mcp/dsl-integration",
"v1.10.0/en/mcp/stdio",
"v1.10.0/en/mcp/sse",
"v1.10.0/en/mcp/streamable-http",
"v1.10.0/en/mcp/multiple-servers",
"v1.10.0/en/mcp/security"
]
},
{
"group": "Tools",
"pages": [
"v1.10.0/en/tools/overview",
{
"group": "File & Document",
"icon": "folder-open",
"pages": [
"v1.10.0/en/tools/file-document/overview",
"v1.10.0/en/tools/file-document/filereadtool",
"v1.10.0/en/tools/file-document/filewritetool",
"v1.10.0/en/tools/file-document/pdfsearchtool",
"v1.10.0/en/tools/file-document/docxsearchtool",
"v1.10.0/en/tools/file-document/mdxsearchtool",
"v1.10.0/en/tools/file-document/xmlsearchtool",
"v1.10.0/en/tools/file-document/txtsearchtool",
"v1.10.0/en/tools/file-document/jsonsearchtool",
"v1.10.0/en/tools/file-document/csvsearchtool",
"v1.10.0/en/tools/file-document/directorysearchtool",
"v1.10.0/en/tools/file-document/directoryreadtool",
"v1.10.0/en/tools/file-document/ocrtool",
"v1.10.0/en/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "Web Scraping & Browsing",
"icon": "globe",
"pages": [
"v1.10.0/en/tools/web-scraping/overview",
"v1.10.0/en/tools/web-scraping/scrapewebsitetool",
"v1.10.0/en/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.0/en/tools/web-scraping/scrapflyscrapetool",
"v1.10.0/en/tools/web-scraping/seleniumscrapingtool",
"v1.10.0/en/tools/web-scraping/scrapegraphscrapetool",
"v1.10.0/en/tools/web-scraping/spidertool",
"v1.10.0/en/tools/web-scraping/browserbaseloadtool",
"v1.10.0/en/tools/web-scraping/hyperbrowserloadtool",
"v1.10.0/en/tools/web-scraping/stagehandtool",
"v1.10.0/en/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.0/en/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.0/en/tools/web-scraping/oxylabsscraperstool",
"v1.10.0/en/tools/web-scraping/brightdata-tools"
]
},
{
"group": "Search & Research",
"icon": "magnifying-glass",
"pages": [
"v1.10.0/en/tools/search-research/overview",
"v1.10.0/en/tools/search-research/serperdevtool",
"v1.10.0/en/tools/search-research/bravesearchtool",
"v1.10.0/en/tools/search-research/exasearchtool",
"v1.10.0/en/tools/search-research/linkupsearchtool",
"v1.10.0/en/tools/search-research/githubsearchtool",
"v1.10.0/en/tools/search-research/websitesearchtool",
"v1.10.0/en/tools/search-research/codedocssearchtool",
"v1.10.0/en/tools/search-research/youtubechannelsearchtool",
"v1.10.0/en/tools/search-research/youtubevideosearchtool",
"v1.10.0/en/tools/search-research/tavilysearchtool",
"v1.10.0/en/tools/search-research/tavilyextractortool",
"v1.10.0/en/tools/search-research/arxivpapertool",
"v1.10.0/en/tools/search-research/serpapi-googlesearchtool",
"v1.10.0/en/tools/search-research/serpapi-googleshoppingtool",
"v1.10.0/en/tools/search-research/databricks-query-tool"
]
},
{
"group": "Database & Data",
"icon": "database",
"pages": [
"v1.10.0/en/tools/database-data/overview",
"v1.10.0/en/tools/database-data/mysqltool",
"v1.10.0/en/tools/database-data/pgsearchtool",
"v1.10.0/en/tools/database-data/snowflakesearchtool",
"v1.10.0/en/tools/database-data/nl2sqltool",
"v1.10.0/en/tools/database-data/qdrantvectorsearchtool",
"v1.10.0/en/tools/database-data/weaviatevectorsearchtool",
"v1.10.0/en/tools/database-data/mongodbvectorsearchtool",
"v1.10.0/en/tools/database-data/singlestoresearchtool"
]
},
{
"group": "AI & Machine Learning",
"icon": "brain",
"pages": [
"v1.10.0/en/tools/ai-ml/overview",
"v1.10.0/en/tools/ai-ml/dalletool",
"v1.10.0/en/tools/ai-ml/visiontool",
"v1.10.0/en/tools/ai-ml/aimindtool",
"v1.10.0/en/tools/ai-ml/llamaindextool",
"v1.10.0/en/tools/ai-ml/langchaintool",
"v1.10.0/en/tools/ai-ml/ragtool",
"v1.10.0/en/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Storage",
"icon": "cloud",
"pages": [
"v1.10.0/en/tools/cloud-storage/overview",
"v1.10.0/en/tools/cloud-storage/s3readertool",
"v1.10.0/en/tools/cloud-storage/s3writertool",
"v1.10.0/en/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.0/en/tools/integration/overview",
"v1.10.0/en/tools/integration/bedrockinvokeagenttool",
"v1.10.0/en/tools/integration/crewaiautomationtool",
"v1.10.0/en/tools/integration/mergeagenthandlertool"
]
},
{
"group": "Automation",
"icon": "bolt",
"pages": [
"v1.10.0/en/tools/automation/overview",
"v1.10.0/en/tools/automation/apifyactorstool",
"v1.10.0/en/tools/automation/composiotool",
"v1.10.0/en/tools/automation/multiontool",
"v1.10.0/en/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.10.0/en/observability/tracing",
"v1.10.0/en/observability/overview",
"v1.10.0/en/observability/arize-phoenix",
"v1.10.0/en/observability/braintrust",
"v1.10.0/en/observability/datadog",
"v1.10.0/en/observability/galileo",
"v1.10.0/en/observability/langdb",
"v1.10.0/en/observability/langfuse",
"v1.10.0/en/observability/langtrace",
"v1.10.0/en/observability/maxim",
"v1.10.0/en/observability/mlflow",
"v1.10.0/en/observability/neatlogs",
"v1.10.0/en/observability/openlit",
"v1.10.0/en/observability/opik",
"v1.10.0/en/observability/patronus-evaluation",
"v1.10.0/en/observability/portkey",
"v1.10.0/en/observability/weave",
"v1.10.0/en/observability/truefoundry"
]
},
{
"group": "Learn",
"pages": [
"v1.10.0/en/learn/overview",
"v1.10.0/en/learn/llm-selection-guide",
"v1.10.0/en/learn/conditional-tasks",
"v1.10.0/en/learn/coding-agents",
"v1.10.0/en/learn/create-custom-tools",
"v1.10.0/en/learn/custom-llm",
"v1.10.0/en/learn/custom-manager-agent",
"v1.10.0/en/learn/customizing-agents",
"v1.10.0/en/learn/dalle-image-generation",
"v1.10.0/en/learn/force-tool-output-as-result",
"v1.10.0/en/learn/hierarchical-process",
"v1.10.0/en/learn/human-input-on-execution",
"v1.10.0/en/learn/human-in-the-loop",
"v1.10.0/en/learn/human-feedback-in-flows",
"v1.10.0/en/learn/kickoff-async",
"v1.10.0/en/learn/kickoff-for-each",
"v1.10.0/en/learn/llm-connections",
"v1.10.0/en/learn/multimodal-agents",
"v1.10.0/en/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.0/en/learn/sequential-process",
"v1.10.0/en/learn/using-annotations",
"v1.10.0/en/learn/execution-hooks",
"v1.10.0/en/learn/llm-hooks",
"v1.10.0/en/learn/tool-hooks",
"v1.10.0/en/learn/a2a-agent-delegation"
]
},
{
"group": "Telemetry",
"pages": [
"v1.10.0/en/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.10.0/en/enterprise/introduction"
]
},
{
"group": "Build",
"pages": [
"v1.10.0/en/enterprise/features/automations",
"v1.10.0/en/enterprise/features/crew-studio",
"v1.10.0/en/enterprise/features/marketplace",
"v1.10.0/en/enterprise/features/agent-repositories",
"v1.10.0/en/enterprise/features/tools-and-integrations",
"v1.10.0/en/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operate",
"pages": [
"v1.10.0/en/enterprise/features/traces",
"v1.10.0/en/enterprise/features/webhook-streaming",
"v1.10.0/en/enterprise/features/hallucination-guardrail",
"v1.10.0/en/enterprise/features/flow-hitl-management"
]
},
{
"group": "Manage",
"pages": [
"v1.10.0/en/enterprise/features/rbac"
]
},
{
"group": "Integration Docs",
"pages": [
"v1.10.0/en/enterprise/integrations/asana",
"v1.10.0/en/enterprise/integrations/box",
"v1.10.0/en/enterprise/integrations/clickup",
"v1.10.0/en/enterprise/integrations/github",
"v1.10.0/en/enterprise/integrations/gmail",
"v1.10.0/en/enterprise/integrations/google_calendar",
"v1.10.0/en/enterprise/integrations/google_contacts",
"v1.10.0/en/enterprise/integrations/google_docs",
"v1.10.0/en/enterprise/integrations/google_drive",
"v1.10.0/en/enterprise/integrations/google_sheets",
"v1.10.0/en/enterprise/integrations/google_slides",
"v1.10.0/en/enterprise/integrations/hubspot",
"v1.10.0/en/enterprise/integrations/jira",
"v1.10.0/en/enterprise/integrations/linear",
"v1.10.0/en/enterprise/integrations/microsoft_excel",
"v1.10.0/en/enterprise/integrations/microsoft_onedrive",
"v1.10.0/en/enterprise/integrations/microsoft_outlook",
"v1.10.0/en/enterprise/integrations/microsoft_sharepoint",
"v1.10.0/en/enterprise/integrations/microsoft_teams",
"v1.10.0/en/enterprise/integrations/microsoft_word",
"v1.10.0/en/enterprise/integrations/notion",
"v1.10.0/en/enterprise/integrations/salesforce",
"v1.10.0/en/enterprise/integrations/shopify",
"v1.10.0/en/enterprise/integrations/slack",
"v1.10.0/en/enterprise/integrations/stripe",
"v1.10.0/en/enterprise/integrations/zendesk"
]
},
{
"group": "Triggers",
"pages": [
"v1.10.0/en/enterprise/guides/automation-triggers",
"v1.10.0/en/enterprise/guides/gmail-trigger",
"v1.10.0/en/enterprise/guides/google-calendar-trigger",
"v1.10.0/en/enterprise/guides/google-drive-trigger",
"v1.10.0/en/enterprise/guides/outlook-trigger",
"v1.10.0/en/enterprise/guides/onedrive-trigger",
"v1.10.0/en/enterprise/guides/microsoft-teams-trigger",
"v1.10.0/en/enterprise/guides/slack-trigger",
"v1.10.0/en/enterprise/guides/hubspot-trigger",
"v1.10.0/en/enterprise/guides/salesforce-trigger",
"v1.10.0/en/enterprise/guides/zapier-trigger"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.10.0/en/enterprise/guides/build-crew",
"v1.10.0/en/enterprise/guides/prepare-for-deployment",
"v1.10.0/en/enterprise/guides/deploy-to-amp",
"v1.10.0/en/enterprise/guides/private-package-registry",
"v1.10.0/en/enterprise/guides/kickoff-crew",
"v1.10.0/en/enterprise/guides/update-crew",
"v1.10.0/en/enterprise/guides/enable-crew-studio",
"v1.10.0/en/enterprise/guides/capture_telemetry_logs",
"v1.10.0/en/enterprise/guides/azure-openai-setup",
"v1.10.0/en/enterprise/guides/tool-repository",
"v1.10.0/en/enterprise/guides/react-component-export",
"v1.10.0/en/enterprise/guides/team-management",
"v1.10.0/en/enterprise/guides/human-in-the-loop",
"v1.10.0/en/enterprise/guides/webhook-automation"
]
},
{
"group": "Resources",
"pages": [
"v1.10.0/en/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API Reference",
"icon": "magnifying-glass",
"groups": [
{
"group": "Getting Started",
"pages": [
"v1.10.0/en/api-reference/introduction",
"v1.10.0/en/api-reference/inputs",
"v1.10.0/en/api-reference/kickoff",
"v1.10.0/en/api-reference/resume",
"v1.10.0/en/api-reference/status"
]
}
]
},
{
"tab": "Examples",
"icon": "code",
"groups": [
{
"group": "Examples",
"pages": [
"v1.10.0/en/examples/example",
"v1.10.0/en/examples/cookbooks"
]
}
]
},
{
"tab": "Changelog",
"icon": "clock",
"groups": [
{
"group": "Release Notes",
"pages": [
"v1.10.0/en/changelog"
]
}
]
}
]
}
]
},
{
"language": "pt-BR",
"global": {
"anchors": [
{
"anchor": "Website",
"href": "https://crewai.com",
"icon": "globe"
},
{
"anchor": "Fórum",
"href": "https://community.crewai.com",
"icon": "discourse"
},
{
"anchor": "Blog",
"href": "https://blog.crewai.com",
"icon": "newspaper"
},
{
"anchor": "CrewGPT",
"href": "https://chatgpt.com/g/g-qqTuUWsBY-crewai-assistant",
"icon": "robot"
}
]
},
"versions": [
{
"version": "Edge",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"edge/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"edge/pt-BR/introduction",
"edge/pt-BR/guides/coding-tools/build-with-ai",
"edge/pt-BR/skills",
"edge/pt-BR/installation",
"edge/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"edge/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"edge/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"edge/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"edge/pt-BR/guides/flows/first-flow",
"edge/pt-BR/guides/flows/mastering-flow-state",
"edge/pt-BR/guides/flows/conversational-flows",
"edge/pt-BR/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"edge/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"edge/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"edge/pt-BR/guides/advanced/customizing-prompts",
"edge/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"edge/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"edge/pt-BR/concepts/agents",
"edge/pt-BR/concepts/agent-capabilities",
"edge/pt-BR/concepts/tasks",
"edge/pt-BR/concepts/crews",
"edge/pt-BR/concepts/flows",
"edge/pt-BR/concepts/production-architecture",
"edge/pt-BR/concepts/knowledge",
"edge/pt-BR/concepts/skills",
"edge/pt-BR/concepts/llms",
"edge/pt-BR/concepts/files",
"edge/pt-BR/concepts/processes",
"edge/pt-BR/concepts/collaboration",
"edge/pt-BR/concepts/training",
"edge/pt-BR/concepts/memory",
"edge/pt-BR/concepts/reasoning",
"edge/pt-BR/concepts/planning",
"edge/pt-BR/concepts/testing",
"edge/pt-BR/concepts/cli",
"edge/pt-BR/concepts/tools",
"edge/pt-BR/concepts/event-listener",
"edge/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"edge/pt-BR/mcp/overview",
"edge/pt-BR/mcp/dsl-integration",
"edge/pt-BR/mcp/stdio",
"edge/pt-BR/mcp/sse",
"edge/pt-BR/mcp/streamable-http",
"edge/pt-BR/mcp/multiple-servers",
"edge/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"edge/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"edge/pt-BR/tools/file-document/overview",
"edge/pt-BR/tools/file-document/filereadtool",
"edge/pt-BR/tools/file-document/filewritetool",
"edge/pt-BR/tools/file-document/pdfsearchtool",
"edge/pt-BR/tools/file-document/docxsearchtool",
"edge/pt-BR/tools/file-document/mdxsearchtool",
"edge/pt-BR/tools/file-document/xmlsearchtool",
"edge/pt-BR/tools/file-document/txtsearchtool",
"edge/pt-BR/tools/file-document/jsonsearchtool",
"edge/pt-BR/tools/file-document/csvsearchtool",
"edge/pt-BR/tools/file-document/directorysearchtool",
"edge/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"edge/pt-BR/tools/web-scraping/overview",
"edge/pt-BR/tools/web-scraping/scrapewebsitetool",
"edge/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"edge/pt-BR/tools/web-scraping/scrapflyscrapetool",
"edge/pt-BR/tools/web-scraping/seleniumscrapingtool",
"edge/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"edge/pt-BR/tools/web-scraping/spidertool",
"edge/pt-BR/tools/web-scraping/browserbaseloadtool",
"edge/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"edge/pt-BR/tools/web-scraping/stagehandtool",
"edge/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"edge/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"edge/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"edge/pt-BR/tools/search-research/overview",
"edge/pt-BR/tools/search-research/serperdevtool",
"edge/pt-BR/tools/search-research/bravesearchtool",
"edge/pt-BR/tools/search-research/exasearchtool",
"edge/pt-BR/tools/search-research/linkupsearchtool",
"edge/pt-BR/tools/search-research/githubsearchtool",
"edge/pt-BR/tools/search-research/websitesearchtool",
"edge/pt-BR/tools/search-research/codedocssearchtool",
"edge/pt-BR/tools/search-research/youtubechannelsearchtool",
"edge/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"edge/pt-BR/tools/database-data/overview",
"edge/pt-BR/tools/database-data/mysqltool",
"edge/pt-BR/tools/database-data/pgsearchtool",
"edge/pt-BR/tools/database-data/snowflakesearchtool",
"edge/pt-BR/tools/database-data/nl2sqltool",
"edge/pt-BR/tools/database-data/qdrantvectorsearchtool",
"edge/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"edge/pt-BR/tools/ai-ml/overview",
"edge/pt-BR/tools/ai-ml/dalletool",
"edge/pt-BR/tools/ai-ml/visiontool",
"edge/pt-BR/tools/ai-ml/aimindtool",
"edge/pt-BR/tools/ai-ml/llamaindextool",
"edge/pt-BR/tools/ai-ml/langchaintool",
"edge/pt-BR/tools/ai-ml/ragtool",
"edge/pt-BR/tools/ai-ml/codeinterpretertool",
"edge/pt-BR/tools/ai-ml/daytona"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"edge/pt-BR/tools/cloud-storage/overview",
"edge/pt-BR/tools/cloud-storage/s3readertool",
"edge/pt-BR/tools/cloud-storage/s3writertool",
"edge/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"edge/pt-BR/tools/integration/overview",
"edge/pt-BR/tools/integration/bedrockinvokeagenttool",
"edge/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"edge/pt-BR/tools/automation/overview",
"edge/pt-BR/tools/automation/apifyactorstool",
"edge/pt-BR/tools/automation/composiotool",
"edge/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"edge/pt-BR/observability/tracing",
"edge/pt-BR/observability/overview",
"edge/pt-BR/observability/arize-phoenix",
"edge/pt-BR/observability/braintrust",
"edge/pt-BR/observability/datadog",
"edge/pt-BR/observability/galileo",
"edge/pt-BR/observability/langdb",
"edge/pt-BR/observability/langfuse",
"edge/pt-BR/observability/langtrace",
"edge/pt-BR/observability/maxim",
"edge/pt-BR/observability/mlflow",
"edge/pt-BR/observability/openlit",
"edge/pt-BR/observability/opik",
"edge/pt-BR/observability/patronus-evaluation",
"edge/pt-BR/observability/portkey",
"edge/pt-BR/observability/weave",
"edge/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"edge/pt-BR/learn/overview",
"edge/pt-BR/learn/llm-selection-guide",
"edge/pt-BR/learn/conditional-tasks",
"edge/pt-BR/learn/coding-agents",
"edge/pt-BR/learn/create-custom-tools",
"edge/pt-BR/learn/custom-llm",
"edge/pt-BR/learn/custom-manager-agent",
"edge/pt-BR/learn/customizing-agents",
"edge/pt-BR/learn/dalle-image-generation",
"edge/pt-BR/learn/force-tool-output-as-result",
"edge/pt-BR/learn/hierarchical-process",
"edge/pt-BR/learn/human-input-on-execution",
"edge/pt-BR/learn/human-in-the-loop",
"edge/pt-BR/learn/human-feedback-in-flows",
"edge/pt-BR/learn/kickoff-async",
"edge/pt-BR/learn/kickoff-for-each",
"edge/pt-BR/learn/llm-connections",
"edge/pt-BR/learn/multimodal-agents",
"edge/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"edge/pt-BR/learn/sequential-process",
"edge/pt-BR/learn/using-annotations",
"edge/pt-BR/learn/execution-hooks",
"edge/pt-BR/learn/llm-hooks",
"edge/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"edge/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"edge/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"edge/pt-BR/enterprise/features/automations",
"edge/pt-BR/enterprise/features/crew-studio",
"edge/pt-BR/enterprise/features/marketplace",
"edge/pt-BR/enterprise/features/agent-repositories",
"edge/pt-BR/enterprise/features/tools-and-integrations",
"edge/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"edge/pt-BR/enterprise/features/traces",
"edge/pt-BR/enterprise/features/webhook-streaming",
"edge/pt-BR/enterprise/features/hallucination-guardrail",
"edge/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"edge/pt-BR/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"edge/pt-BR/enterprise/features/secrets-manager/overview",
"edge/pt-BR/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"edge/pt-BR/enterprise/features/secrets-manager/aws",
"edge/pt-BR/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"edge/pt-BR/enterprise/features/secrets-manager/gcp",
"edge/pt-BR/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"edge/pt-BR/enterprise/features/secrets-manager/azure",
"edge/pt-BR/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"edge/pt-BR/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Documentação de Integração",
"pages": [
"edge/pt-BR/enterprise/integrations/asana",
"edge/pt-BR/enterprise/integrations/box",
"edge/pt-BR/enterprise/integrations/clickup",
"edge/pt-BR/enterprise/integrations/databricks",
"edge/pt-BR/enterprise/integrations/github",
"edge/pt-BR/enterprise/integrations/gmail",
"edge/pt-BR/enterprise/integrations/google_calendar",
"edge/pt-BR/enterprise/integrations/google_contacts",
"edge/pt-BR/enterprise/integrations/google_docs",
"edge/pt-BR/enterprise/integrations/google_drive",
"edge/pt-BR/enterprise/integrations/google_sheets",
"edge/pt-BR/enterprise/integrations/google_slides",
"edge/pt-BR/enterprise/integrations/hubspot",
"edge/pt-BR/enterprise/integrations/jira",
"edge/pt-BR/enterprise/integrations/linear",
"edge/pt-BR/enterprise/integrations/microsoft_excel",
"edge/pt-BR/enterprise/integrations/microsoft_onedrive",
"edge/pt-BR/enterprise/integrations/microsoft_outlook",
"edge/pt-BR/enterprise/integrations/microsoft_sharepoint",
"edge/pt-BR/enterprise/integrations/microsoft_teams",
"edge/pt-BR/enterprise/integrations/microsoft_word",
"edge/pt-BR/enterprise/integrations/notion",
"edge/pt-BR/enterprise/integrations/salesforce",
"edge/pt-BR/enterprise/integrations/shopify",
"edge/pt-BR/enterprise/integrations/slack",
"edge/pt-BR/enterprise/integrations/snowflake",
"edge/pt-BR/enterprise/integrations/stripe",
"edge/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"edge/pt-BR/enterprise/guides/build-crew",
"edge/pt-BR/enterprise/guides/prepare-for-deployment",
"edge/pt-BR/enterprise/guides/deploy-to-amp",
"edge/pt-BR/enterprise/guides/monorepo-deployments",
"edge/pt-BR/enterprise/guides/private-package-registry",
"edge/pt-BR/enterprise/guides/kickoff-crew",
"edge/pt-BR/enterprise/guides/training-crews",
"edge/pt-BR/enterprise/guides/update-crew",
"edge/pt-BR/enterprise/guides/enable-crew-studio",
"edge/pt-BR/enterprise/guides/capture_telemetry_logs",
"edge/pt-BR/enterprise/guides/azure-openai-setup",
"edge/pt-BR/enterprise/guides/tool-repository",
"edge/pt-BR/enterprise/guides/custom-mcp-server",
"edge/pt-BR/enterprise/guides/react-component-export",
"edge/pt-BR/enterprise/guides/team-management",
"edge/pt-BR/enterprise/guides/human-in-the-loop",
"edge/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"edge/pt-BR/enterprise/guides/automation-triggers",
"edge/pt-BR/enterprise/guides/gmail-trigger",
"edge/pt-BR/enterprise/guides/google-calendar-trigger",
"edge/pt-BR/enterprise/guides/google-drive-trigger",
"edge/pt-BR/enterprise/guides/outlook-trigger",
"edge/pt-BR/enterprise/guides/onedrive-trigger",
"edge/pt-BR/enterprise/guides/microsoft-teams-trigger",
"edge/pt-BR/enterprise/guides/slack-trigger",
"edge/pt-BR/enterprise/guides/hubspot-trigger",
"edge/pt-BR/enterprise/guides/salesforce-trigger",
"edge/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"edge/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"edge/pt-BR/api-reference/introduction",
"edge/pt-BR/api-reference/inputs",
"edge/pt-BR/api-reference/kickoff",
"edge/pt-BR/api-reference/resume",
"edge/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"edge/pt-BR/examples/example",
"edge/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"edge/pt-BR/changelog"
]
}
]
}
],
"tag": "Edge"
},
{
"version": "v1.14.7",
"default": true,
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.7/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.7/pt-BR/introduction",
"v1.14.7/pt-BR/guides/coding-tools/build-with-ai",
"v1.14.7/pt-BR/skills",
"v1.14.7/pt-BR/installation",
"v1.14.7/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.7/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.7/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.7/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.7/pt-BR/guides/flows/first-flow",
"v1.14.7/pt-BR/guides/flows/mastering-flow-state",
"v1.14.7/pt-BR/guides/flows/conversational-flows",
"v1.14.7/pt-BR/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.7/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.7/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.7/pt-BR/guides/advanced/customizing-prompts",
"v1.14.7/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.7/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.7/pt-BR/concepts/agents",
"v1.14.7/pt-BR/concepts/agent-capabilities",
"v1.14.7/pt-BR/concepts/tasks",
"v1.14.7/pt-BR/concepts/crews",
"v1.14.7/pt-BR/concepts/flows",
"v1.14.7/pt-BR/concepts/production-architecture",
"v1.14.7/pt-BR/concepts/knowledge",
"v1.14.7/pt-BR/concepts/skills",
"v1.14.7/pt-BR/concepts/llms",
"v1.14.7/pt-BR/concepts/files",
"v1.14.7/pt-BR/concepts/processes",
"v1.14.7/pt-BR/concepts/collaboration",
"v1.14.7/pt-BR/concepts/training",
"v1.14.7/pt-BR/concepts/memory",
"v1.14.7/pt-BR/concepts/reasoning",
"v1.14.7/pt-BR/concepts/planning",
"v1.14.7/pt-BR/concepts/testing",
"v1.14.7/pt-BR/concepts/cli",
"v1.14.7/pt-BR/concepts/tools",
"v1.14.7/pt-BR/concepts/event-listener",
"v1.14.7/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.7/pt-BR/mcp/overview",
"v1.14.7/pt-BR/mcp/dsl-integration",
"v1.14.7/pt-BR/mcp/stdio",
"v1.14.7/pt-BR/mcp/sse",
"v1.14.7/pt-BR/mcp/streamable-http",
"v1.14.7/pt-BR/mcp/multiple-servers",
"v1.14.7/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.7/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.7/pt-BR/tools/file-document/overview",
"v1.14.7/pt-BR/tools/file-document/filereadtool",
"v1.14.7/pt-BR/tools/file-document/filewritetool",
"v1.14.7/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.7/pt-BR/tools/file-document/docxsearchtool",
"v1.14.7/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.7/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.7/pt-BR/tools/file-document/txtsearchtool",
"v1.14.7/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.7/pt-BR/tools/file-document/csvsearchtool",
"v1.14.7/pt-BR/tools/file-document/directorysearchtool",
"v1.14.7/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.7/pt-BR/tools/web-scraping/overview",
"v1.14.7/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.7/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.7/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.7/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.7/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.7/pt-BR/tools/web-scraping/spidertool",
"v1.14.7/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.7/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.7/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.7/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.7/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.7/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.7/pt-BR/tools/search-research/overview",
"v1.14.7/pt-BR/tools/search-research/serperdevtool",
"v1.14.7/pt-BR/tools/search-research/bravesearchtool",
"v1.14.7/pt-BR/tools/search-research/exasearchtool",
"v1.14.7/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.7/pt-BR/tools/search-research/githubsearchtool",
"v1.14.7/pt-BR/tools/search-research/websitesearchtool",
"v1.14.7/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.7/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.7/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.7/pt-BR/tools/database-data/overview",
"v1.14.7/pt-BR/tools/database-data/mysqltool",
"v1.14.7/pt-BR/tools/database-data/pgsearchtool",
"v1.14.7/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.7/pt-BR/tools/database-data/nl2sqltool",
"v1.14.7/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.7/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.7/pt-BR/tools/ai-ml/overview",
"v1.14.7/pt-BR/tools/ai-ml/dalletool",
"v1.14.7/pt-BR/tools/ai-ml/visiontool",
"v1.14.7/pt-BR/tools/ai-ml/aimindtool",
"v1.14.7/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.7/pt-BR/tools/ai-ml/langchaintool",
"v1.14.7/pt-BR/tools/ai-ml/ragtool",
"v1.14.7/pt-BR/tools/ai-ml/codeinterpretertool",
"v1.14.7/pt-BR/tools/ai-ml/daytona"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.7/pt-BR/tools/cloud-storage/overview",
"v1.14.7/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.7/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.7/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.7/pt-BR/tools/integration/overview",
"v1.14.7/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.7/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.7/pt-BR/tools/automation/overview",
"v1.14.7/pt-BR/tools/automation/apifyactorstool",
"v1.14.7/pt-BR/tools/automation/composiotool",
"v1.14.7/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.7/pt-BR/observability/tracing",
"v1.14.7/pt-BR/observability/overview",
"v1.14.7/pt-BR/observability/arize-phoenix",
"v1.14.7/pt-BR/observability/braintrust",
"v1.14.7/pt-BR/observability/datadog",
"v1.14.7/pt-BR/observability/galileo",
"v1.14.7/pt-BR/observability/langdb",
"v1.14.7/pt-BR/observability/langfuse",
"v1.14.7/pt-BR/observability/langtrace",
"v1.14.7/pt-BR/observability/maxim",
"v1.14.7/pt-BR/observability/mlflow",
"v1.14.7/pt-BR/observability/openlit",
"v1.14.7/pt-BR/observability/opik",
"v1.14.7/pt-BR/observability/patronus-evaluation",
"v1.14.7/pt-BR/observability/portkey",
"v1.14.7/pt-BR/observability/weave",
"v1.14.7/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.7/pt-BR/learn/overview",
"v1.14.7/pt-BR/learn/llm-selection-guide",
"v1.14.7/pt-BR/learn/conditional-tasks",
"v1.14.7/pt-BR/learn/coding-agents",
"v1.14.7/pt-BR/learn/create-custom-tools",
"v1.14.7/pt-BR/learn/custom-llm",
"v1.14.7/pt-BR/learn/custom-manager-agent",
"v1.14.7/pt-BR/learn/customizing-agents",
"v1.14.7/pt-BR/learn/dalle-image-generation",
"v1.14.7/pt-BR/learn/force-tool-output-as-result",
"v1.14.7/pt-BR/learn/hierarchical-process",
"v1.14.7/pt-BR/learn/human-input-on-execution",
"v1.14.7/pt-BR/learn/human-in-the-loop",
"v1.14.7/pt-BR/learn/human-feedback-in-flows",
"v1.14.7/pt-BR/learn/kickoff-async",
"v1.14.7/pt-BR/learn/kickoff-for-each",
"v1.14.7/pt-BR/learn/llm-connections",
"v1.14.7/pt-BR/learn/multimodal-agents",
"v1.14.7/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.7/pt-BR/learn/sequential-process",
"v1.14.7/pt-BR/learn/using-annotations",
"v1.14.7/pt-BR/learn/execution-hooks",
"v1.14.7/pt-BR/learn/llm-hooks",
"v1.14.7/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.7/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.7/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.7/pt-BR/enterprise/features/automations",
"v1.14.7/pt-BR/enterprise/features/crew-studio",
"v1.14.7/pt-BR/enterprise/features/marketplace",
"v1.14.7/pt-BR/enterprise/features/agent-repositories",
"v1.14.7/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.7/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.7/pt-BR/enterprise/features/traces",
"v1.14.7/pt-BR/enterprise/features/webhook-streaming",
"v1.14.7/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.7/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.7/pt-BR/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.7/pt-BR/enterprise/features/secrets-manager/overview",
"v1.14.7/pt-BR/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.7/pt-BR/enterprise/features/secrets-manager/aws",
"v1.14.7/pt-BR/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.7/pt-BR/enterprise/features/secrets-manager/gcp",
"v1.14.7/pt-BR/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.7/pt-BR/enterprise/features/secrets-manager/azure",
"v1.14.7/pt-BR/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.7/pt-BR/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.7/pt-BR/enterprise/integrations/asana",
"v1.14.7/pt-BR/enterprise/integrations/box",
"v1.14.7/pt-BR/enterprise/integrations/clickup",
"v1.14.7/pt-BR/enterprise/integrations/databricks",
"v1.14.7/pt-BR/enterprise/integrations/github",
"v1.14.7/pt-BR/enterprise/integrations/gmail",
"v1.14.7/pt-BR/enterprise/integrations/google_calendar",
"v1.14.7/pt-BR/enterprise/integrations/google_contacts",
"v1.14.7/pt-BR/enterprise/integrations/google_docs",
"v1.14.7/pt-BR/enterprise/integrations/google_drive",
"v1.14.7/pt-BR/enterprise/integrations/google_sheets",
"v1.14.7/pt-BR/enterprise/integrations/google_slides",
"v1.14.7/pt-BR/enterprise/integrations/hubspot",
"v1.14.7/pt-BR/enterprise/integrations/jira",
"v1.14.7/pt-BR/enterprise/integrations/linear",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.7/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.7/pt-BR/enterprise/integrations/notion",
"v1.14.7/pt-BR/enterprise/integrations/salesforce",
"v1.14.7/pt-BR/enterprise/integrations/shopify",
"v1.14.7/pt-BR/enterprise/integrations/slack",
"v1.14.7/pt-BR/enterprise/integrations/snowflake",
"v1.14.7/pt-BR/enterprise/integrations/stripe",
"v1.14.7/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.7/pt-BR/enterprise/guides/build-crew",
"v1.14.7/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.7/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.7/pt-BR/enterprise/guides/monorepo-deployments",
"v1.14.7/pt-BR/enterprise/guides/private-package-registry",
"v1.14.7/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.7/pt-BR/enterprise/guides/training-crews",
"v1.14.7/pt-BR/enterprise/guides/update-crew",
"v1.14.7/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.7/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.7/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.7/pt-BR/enterprise/guides/tool-repository",
"v1.14.7/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.7/pt-BR/enterprise/guides/react-component-export",
"v1.14.7/pt-BR/enterprise/guides/team-management",
"v1.14.7/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.7/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.7/pt-BR/enterprise/guides/automation-triggers",
"v1.14.7/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.7/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.7/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.7/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.7/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.7/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.7/pt-BR/enterprise/guides/slack-trigger",
"v1.14.7/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.7/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.7/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.7/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.7/pt-BR/api-reference/introduction",
"v1.14.7/pt-BR/api-reference/inputs",
"v1.14.7/pt-BR/api-reference/kickoff",
"v1.14.7/pt-BR/api-reference/resume",
"v1.14.7/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.7/pt-BR/examples/example",
"v1.14.7/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.7/pt-BR/changelog"
]
}
]
}
],
"tag": "Latest"
},
{
"version": "v1.14.6",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.6/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.6/pt-BR/introduction",
"v1.14.6/pt-BR/guides/coding-tools/build-with-ai",
"v1.14.6/pt-BR/skills",
"v1.14.6/pt-BR/installation",
"v1.14.6/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.6/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.6/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.6/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.6/pt-BR/guides/flows/first-flow",
"v1.14.6/pt-BR/guides/flows/mastering-flow-state",
"v1.14.6/pt-BR/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.6/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.6/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.6/pt-BR/guides/advanced/customizing-prompts",
"v1.14.6/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.6/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.6/pt-BR/concepts/agents",
"v1.14.6/pt-BR/concepts/agent-capabilities",
"v1.14.6/pt-BR/concepts/tasks",
"v1.14.6/pt-BR/concepts/crews",
"v1.14.6/pt-BR/concepts/flows",
"v1.14.6/pt-BR/concepts/production-architecture",
"v1.14.6/pt-BR/concepts/knowledge",
"v1.14.6/pt-BR/concepts/skills",
"v1.14.6/pt-BR/concepts/llms",
"v1.14.6/pt-BR/concepts/files",
"v1.14.6/pt-BR/concepts/processes",
"v1.14.6/pt-BR/concepts/collaboration",
"v1.14.6/pt-BR/concepts/training",
"v1.14.6/pt-BR/concepts/memory",
"v1.14.6/pt-BR/concepts/reasoning",
"v1.14.6/pt-BR/concepts/planning",
"v1.14.6/pt-BR/concepts/testing",
"v1.14.6/pt-BR/concepts/cli",
"v1.14.6/pt-BR/concepts/tools",
"v1.14.6/pt-BR/concepts/event-listener",
"v1.14.6/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.6/pt-BR/mcp/overview",
"v1.14.6/pt-BR/mcp/dsl-integration",
"v1.14.6/pt-BR/mcp/stdio",
"v1.14.6/pt-BR/mcp/sse",
"v1.14.6/pt-BR/mcp/streamable-http",
"v1.14.6/pt-BR/mcp/multiple-servers",
"v1.14.6/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.6/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.6/pt-BR/tools/file-document/overview",
"v1.14.6/pt-BR/tools/file-document/filereadtool",
"v1.14.6/pt-BR/tools/file-document/filewritetool",
"v1.14.6/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.6/pt-BR/tools/file-document/docxsearchtool",
"v1.14.6/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.6/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.6/pt-BR/tools/file-document/txtsearchtool",
"v1.14.6/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.6/pt-BR/tools/file-document/csvsearchtool",
"v1.14.6/pt-BR/tools/file-document/directorysearchtool",
"v1.14.6/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.6/pt-BR/tools/web-scraping/overview",
"v1.14.6/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.6/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.6/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.6/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.6/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.6/pt-BR/tools/web-scraping/spidertool",
"v1.14.6/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.6/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.6/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.6/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.6/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.6/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.6/pt-BR/tools/search-research/overview",
"v1.14.6/pt-BR/tools/search-research/serperdevtool",
"v1.14.6/pt-BR/tools/search-research/bravesearchtool",
"v1.14.6/pt-BR/tools/search-research/exasearchtool",
"v1.14.6/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.6/pt-BR/tools/search-research/githubsearchtool",
"v1.14.6/pt-BR/tools/search-research/websitesearchtool",
"v1.14.6/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.6/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.6/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.6/pt-BR/tools/database-data/overview",
"v1.14.6/pt-BR/tools/database-data/mysqltool",
"v1.14.6/pt-BR/tools/database-data/pgsearchtool",
"v1.14.6/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.6/pt-BR/tools/database-data/nl2sqltool",
"v1.14.6/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.6/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.6/pt-BR/tools/ai-ml/overview",
"v1.14.6/pt-BR/tools/ai-ml/dalletool",
"v1.14.6/pt-BR/tools/ai-ml/visiontool",
"v1.14.6/pt-BR/tools/ai-ml/aimindtool",
"v1.14.6/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.6/pt-BR/tools/ai-ml/langchaintool",
"v1.14.6/pt-BR/tools/ai-ml/ragtool",
"v1.14.6/pt-BR/tools/ai-ml/codeinterpretertool",
"v1.14.6/pt-BR/tools/ai-ml/daytona"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.6/pt-BR/tools/cloud-storage/overview",
"v1.14.6/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.6/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.6/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.6/pt-BR/tools/integration/overview",
"v1.14.6/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.6/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.6/pt-BR/tools/automation/overview",
"v1.14.6/pt-BR/tools/automation/apifyactorstool",
"v1.14.6/pt-BR/tools/automation/composiotool",
"v1.14.6/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.6/pt-BR/observability/tracing",
"v1.14.6/pt-BR/observability/overview",
"v1.14.6/pt-BR/observability/arize-phoenix",
"v1.14.6/pt-BR/observability/braintrust",
"v1.14.6/pt-BR/observability/datadog",
"v1.14.6/pt-BR/observability/galileo",
"v1.14.6/pt-BR/observability/langdb",
"v1.14.6/pt-BR/observability/langfuse",
"v1.14.6/pt-BR/observability/langtrace",
"v1.14.6/pt-BR/observability/maxim",
"v1.14.6/pt-BR/observability/mlflow",
"v1.14.6/pt-BR/observability/openlit",
"v1.14.6/pt-BR/observability/opik",
"v1.14.6/pt-BR/observability/patronus-evaluation",
"v1.14.6/pt-BR/observability/portkey",
"v1.14.6/pt-BR/observability/weave",
"v1.14.6/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.6/pt-BR/learn/overview",
"v1.14.6/pt-BR/learn/llm-selection-guide",
"v1.14.6/pt-BR/learn/conditional-tasks",
"v1.14.6/pt-BR/learn/coding-agents",
"v1.14.6/pt-BR/learn/create-custom-tools",
"v1.14.6/pt-BR/learn/custom-llm",
"v1.14.6/pt-BR/learn/custom-manager-agent",
"v1.14.6/pt-BR/learn/customizing-agents",
"v1.14.6/pt-BR/learn/dalle-image-generation",
"v1.14.6/pt-BR/learn/force-tool-output-as-result",
"v1.14.6/pt-BR/learn/hierarchical-process",
"v1.14.6/pt-BR/learn/human-input-on-execution",
"v1.14.6/pt-BR/learn/human-in-the-loop",
"v1.14.6/pt-BR/learn/human-feedback-in-flows",
"v1.14.6/pt-BR/learn/kickoff-async",
"v1.14.6/pt-BR/learn/kickoff-for-each",
"v1.14.6/pt-BR/learn/llm-connections",
"v1.14.6/pt-BR/learn/multimodal-agents",
"v1.14.6/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.6/pt-BR/learn/sequential-process",
"v1.14.6/pt-BR/learn/using-annotations",
"v1.14.6/pt-BR/learn/execution-hooks",
"v1.14.6/pt-BR/learn/llm-hooks",
"v1.14.6/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.6/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.6/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.6/pt-BR/enterprise/features/automations",
"v1.14.6/pt-BR/enterprise/features/crew-studio",
"v1.14.6/pt-BR/enterprise/features/marketplace",
"v1.14.6/pt-BR/enterprise/features/agent-repositories",
"v1.14.6/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.6/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.6/pt-BR/enterprise/features/traces",
"v1.14.6/pt-BR/enterprise/features/webhook-streaming",
"v1.14.6/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.6/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.6/pt-BR/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.6/pt-BR/enterprise/features/secrets-manager/overview",
"v1.14.6/pt-BR/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.6/pt-BR/enterprise/features/secrets-manager/aws",
"v1.14.6/pt-BR/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.6/pt-BR/enterprise/features/secrets-manager/gcp",
"v1.14.6/pt-BR/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.6/pt-BR/enterprise/features/secrets-manager/azure",
"v1.14.6/pt-BR/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.6/pt-BR/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.6/pt-BR/enterprise/integrations/asana",
"v1.14.6/pt-BR/enterprise/integrations/box",
"v1.14.6/pt-BR/enterprise/integrations/clickup",
"v1.14.6/pt-BR/enterprise/integrations/github",
"v1.14.6/pt-BR/enterprise/integrations/gmail",
"v1.14.6/pt-BR/enterprise/integrations/google_calendar",
"v1.14.6/pt-BR/enterprise/integrations/google_contacts",
"v1.14.6/pt-BR/enterprise/integrations/google_docs",
"v1.14.6/pt-BR/enterprise/integrations/google_drive",
"v1.14.6/pt-BR/enterprise/integrations/google_sheets",
"v1.14.6/pt-BR/enterprise/integrations/google_slides",
"v1.14.6/pt-BR/enterprise/integrations/hubspot",
"v1.14.6/pt-BR/enterprise/integrations/jira",
"v1.14.6/pt-BR/enterprise/integrations/linear",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.6/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.6/pt-BR/enterprise/integrations/notion",
"v1.14.6/pt-BR/enterprise/integrations/salesforce",
"v1.14.6/pt-BR/enterprise/integrations/shopify",
"v1.14.6/pt-BR/enterprise/integrations/slack",
"v1.14.6/pt-BR/enterprise/integrations/stripe",
"v1.14.6/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.6/pt-BR/enterprise/guides/build-crew",
"v1.14.6/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.6/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.6/pt-BR/enterprise/guides/private-package-registry",
"v1.14.6/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.6/pt-BR/enterprise/guides/training-crews",
"v1.14.6/pt-BR/enterprise/guides/update-crew",
"v1.14.6/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.6/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.6/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.6/pt-BR/enterprise/guides/tool-repository",
"v1.14.6/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.6/pt-BR/enterprise/guides/react-component-export",
"v1.14.6/pt-BR/enterprise/guides/team-management",
"v1.14.6/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.6/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.6/pt-BR/enterprise/guides/automation-triggers",
"v1.14.6/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.6/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.6/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.6/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.6/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.6/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.6/pt-BR/enterprise/guides/slack-trigger",
"v1.14.6/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.6/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.6/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.6/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.6/pt-BR/api-reference/introduction",
"v1.14.6/pt-BR/api-reference/inputs",
"v1.14.6/pt-BR/api-reference/kickoff",
"v1.14.6/pt-BR/api-reference/resume",
"v1.14.6/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.6/pt-BR/examples/example",
"v1.14.6/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.6/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.5",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.5/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.5/pt-BR/introduction",
"v1.14.5/pt-BR/guides/coding-tools/build-with-ai",
"v1.14.5/pt-BR/skills",
"v1.14.5/pt-BR/installation",
"v1.14.5/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.5/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.5/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.5/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.5/pt-BR/guides/flows/first-flow",
"v1.14.5/pt-BR/guides/flows/mastering-flow-state",
"v1.14.5/pt-BR/guides/flows/inputs-id-deprecation"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.5/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.5/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.5/pt-BR/guides/advanced/customizing-prompts",
"v1.14.5/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.5/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.5/pt-BR/concepts/agents",
"v1.14.5/pt-BR/concepts/agent-capabilities",
"v1.14.5/pt-BR/concepts/tasks",
"v1.14.5/pt-BR/concepts/crews",
"v1.14.5/pt-BR/concepts/flows",
"v1.14.5/pt-BR/concepts/production-architecture",
"v1.14.5/pt-BR/concepts/knowledge",
"v1.14.5/pt-BR/concepts/skills",
"v1.14.5/pt-BR/concepts/llms",
"v1.14.5/pt-BR/concepts/files",
"v1.14.5/pt-BR/concepts/processes",
"v1.14.5/pt-BR/concepts/collaboration",
"v1.14.5/pt-BR/concepts/training",
"v1.14.5/pt-BR/concepts/memory",
"v1.14.5/pt-BR/concepts/reasoning",
"v1.14.5/pt-BR/concepts/planning",
"v1.14.5/pt-BR/concepts/testing",
"v1.14.5/pt-BR/concepts/cli",
"v1.14.5/pt-BR/concepts/tools",
"v1.14.5/pt-BR/concepts/event-listener",
"v1.14.5/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.5/pt-BR/mcp/overview",
"v1.14.5/pt-BR/mcp/dsl-integration",
"v1.14.5/pt-BR/mcp/stdio",
"v1.14.5/pt-BR/mcp/sse",
"v1.14.5/pt-BR/mcp/streamable-http",
"v1.14.5/pt-BR/mcp/multiple-servers",
"v1.14.5/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.5/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.5/pt-BR/tools/file-document/overview",
"v1.14.5/pt-BR/tools/file-document/filereadtool",
"v1.14.5/pt-BR/tools/file-document/filewritetool",
"v1.14.5/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.5/pt-BR/tools/file-document/docxsearchtool",
"v1.14.5/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.5/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.5/pt-BR/tools/file-document/txtsearchtool",
"v1.14.5/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.5/pt-BR/tools/file-document/csvsearchtool",
"v1.14.5/pt-BR/tools/file-document/directorysearchtool",
"v1.14.5/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.5/pt-BR/tools/web-scraping/overview",
"v1.14.5/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.5/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.5/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.5/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.5/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.5/pt-BR/tools/web-scraping/spidertool",
"v1.14.5/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.5/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.5/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.5/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.5/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.5/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.5/pt-BR/tools/search-research/overview",
"v1.14.5/pt-BR/tools/search-research/serperdevtool",
"v1.14.5/pt-BR/tools/search-research/bravesearchtool",
"v1.14.5/pt-BR/tools/search-research/exasearchtool",
"v1.14.5/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.5/pt-BR/tools/search-research/githubsearchtool",
"v1.14.5/pt-BR/tools/search-research/websitesearchtool",
"v1.14.5/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.5/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.5/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.5/pt-BR/tools/database-data/overview",
"v1.14.5/pt-BR/tools/database-data/mysqltool",
"v1.14.5/pt-BR/tools/database-data/pgsearchtool",
"v1.14.5/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.5/pt-BR/tools/database-data/nl2sqltool",
"v1.14.5/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.5/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.5/pt-BR/tools/ai-ml/overview",
"v1.14.5/pt-BR/tools/ai-ml/dalletool",
"v1.14.5/pt-BR/tools/ai-ml/visiontool",
"v1.14.5/pt-BR/tools/ai-ml/aimindtool",
"v1.14.5/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.5/pt-BR/tools/ai-ml/langchaintool",
"v1.14.5/pt-BR/tools/ai-ml/ragtool",
"v1.14.5/pt-BR/tools/ai-ml/codeinterpretertool",
"v1.14.5/pt-BR/tools/ai-ml/daytona"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.5/pt-BR/tools/cloud-storage/overview",
"v1.14.5/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.5/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.5/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.5/pt-BR/tools/integration/overview",
"v1.14.5/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.5/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.5/pt-BR/tools/automation/overview",
"v1.14.5/pt-BR/tools/automation/apifyactorstool",
"v1.14.5/pt-BR/tools/automation/composiotool",
"v1.14.5/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.5/pt-BR/observability/tracing",
"v1.14.5/pt-BR/observability/overview",
"v1.14.5/pt-BR/observability/arize-phoenix",
"v1.14.5/pt-BR/observability/braintrust",
"v1.14.5/pt-BR/observability/datadog",
"v1.14.5/pt-BR/observability/galileo",
"v1.14.5/pt-BR/observability/langdb",
"v1.14.5/pt-BR/observability/langfuse",
"v1.14.5/pt-BR/observability/langtrace",
"v1.14.5/pt-BR/observability/maxim",
"v1.14.5/pt-BR/observability/mlflow",
"v1.14.5/pt-BR/observability/openlit",
"v1.14.5/pt-BR/observability/opik",
"v1.14.5/pt-BR/observability/patronus-evaluation",
"v1.14.5/pt-BR/observability/portkey",
"v1.14.5/pt-BR/observability/weave",
"v1.14.5/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.5/pt-BR/learn/overview",
"v1.14.5/pt-BR/learn/llm-selection-guide",
"v1.14.5/pt-BR/learn/conditional-tasks",
"v1.14.5/pt-BR/learn/coding-agents",
"v1.14.5/pt-BR/learn/create-custom-tools",
"v1.14.5/pt-BR/learn/custom-llm",
"v1.14.5/pt-BR/learn/custom-manager-agent",
"v1.14.5/pt-BR/learn/customizing-agents",
"v1.14.5/pt-BR/learn/dalle-image-generation",
"v1.14.5/pt-BR/learn/force-tool-output-as-result",
"v1.14.5/pt-BR/learn/hierarchical-process",
"v1.14.5/pt-BR/learn/human-input-on-execution",
"v1.14.5/pt-BR/learn/human-in-the-loop",
"v1.14.5/pt-BR/learn/human-feedback-in-flows",
"v1.14.5/pt-BR/learn/kickoff-async",
"v1.14.5/pt-BR/learn/kickoff-for-each",
"v1.14.5/pt-BR/learn/llm-connections",
"v1.14.5/pt-BR/learn/multimodal-agents",
"v1.14.5/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.5/pt-BR/learn/sequential-process",
"v1.14.5/pt-BR/learn/using-annotations",
"v1.14.5/pt-BR/learn/execution-hooks",
"v1.14.5/pt-BR/learn/llm-hooks",
"v1.14.5/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.5/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.5/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.5/pt-BR/enterprise/features/automations",
"v1.14.5/pt-BR/enterprise/features/crew-studio",
"v1.14.5/pt-BR/enterprise/features/marketplace",
"v1.14.5/pt-BR/enterprise/features/agent-repositories",
"v1.14.5/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.5/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.5/pt-BR/enterprise/features/traces",
"v1.14.5/pt-BR/enterprise/features/webhook-streaming",
"v1.14.5/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.5/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.5/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.5/pt-BR/enterprise/integrations/asana",
"v1.14.5/pt-BR/enterprise/integrations/box",
"v1.14.5/pt-BR/enterprise/integrations/clickup",
"v1.14.5/pt-BR/enterprise/integrations/github",
"v1.14.5/pt-BR/enterprise/integrations/gmail",
"v1.14.5/pt-BR/enterprise/integrations/google_calendar",
"v1.14.5/pt-BR/enterprise/integrations/google_contacts",
"v1.14.5/pt-BR/enterprise/integrations/google_docs",
"v1.14.5/pt-BR/enterprise/integrations/google_drive",
"v1.14.5/pt-BR/enterprise/integrations/google_sheets",
"v1.14.5/pt-BR/enterprise/integrations/google_slides",
"v1.14.5/pt-BR/enterprise/integrations/hubspot",
"v1.14.5/pt-BR/enterprise/integrations/jira",
"v1.14.5/pt-BR/enterprise/integrations/linear",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.5/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.5/pt-BR/enterprise/integrations/notion",
"v1.14.5/pt-BR/enterprise/integrations/salesforce",
"v1.14.5/pt-BR/enterprise/integrations/shopify",
"v1.14.5/pt-BR/enterprise/integrations/slack",
"v1.14.5/pt-BR/enterprise/integrations/stripe",
"v1.14.5/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.5/pt-BR/enterprise/guides/build-crew",
"v1.14.5/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.5/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.5/pt-BR/enterprise/guides/private-package-registry",
"v1.14.5/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.5/pt-BR/enterprise/guides/training-crews",
"v1.14.5/pt-BR/enterprise/guides/update-crew",
"v1.14.5/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.5/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.5/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.5/pt-BR/enterprise/guides/tool-repository",
"v1.14.5/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.5/pt-BR/enterprise/guides/react-component-export",
"v1.14.5/pt-BR/enterprise/guides/team-management",
"v1.14.5/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.5/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.5/pt-BR/enterprise/guides/automation-triggers",
"v1.14.5/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.5/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.5/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.5/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.5/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.5/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.5/pt-BR/enterprise/guides/slack-trigger",
"v1.14.5/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.5/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.5/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.5/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.5/pt-BR/api-reference/introduction",
"v1.14.5/pt-BR/api-reference/inputs",
"v1.14.5/pt-BR/api-reference/kickoff",
"v1.14.5/pt-BR/api-reference/resume",
"v1.14.5/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.5/pt-BR/examples/example",
"v1.14.5/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.5/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.4",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.4/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.4/pt-BR/introduction",
"v1.14.4/pt-BR/guides/coding-tools/build-with-ai",
"v1.14.4/pt-BR/skills",
"v1.14.4/pt-BR/installation",
"v1.14.4/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.4/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.4/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.4/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.4/pt-BR/guides/flows/first-flow",
"v1.14.4/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.4/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.4/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.4/pt-BR/guides/advanced/customizing-prompts",
"v1.14.4/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.4/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.4/pt-BR/concepts/agents",
"v1.14.4/pt-BR/concepts/agent-capabilities",
"v1.14.4/pt-BR/concepts/tasks",
"v1.14.4/pt-BR/concepts/crews",
"v1.14.4/pt-BR/concepts/flows",
"v1.14.4/pt-BR/concepts/production-architecture",
"v1.14.4/pt-BR/concepts/knowledge",
"v1.14.4/pt-BR/concepts/skills",
"v1.14.4/pt-BR/concepts/llms",
"v1.14.4/pt-BR/concepts/files",
"v1.14.4/pt-BR/concepts/processes",
"v1.14.4/pt-BR/concepts/collaboration",
"v1.14.4/pt-BR/concepts/training",
"v1.14.4/pt-BR/concepts/memory",
"v1.14.4/pt-BR/concepts/reasoning",
"v1.14.4/pt-BR/concepts/planning",
"v1.14.4/pt-BR/concepts/testing",
"v1.14.4/pt-BR/concepts/cli",
"v1.14.4/pt-BR/concepts/tools",
"v1.14.4/pt-BR/concepts/event-listener",
"v1.14.4/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.4/pt-BR/mcp/overview",
"v1.14.4/pt-BR/mcp/dsl-integration",
"v1.14.4/pt-BR/mcp/stdio",
"v1.14.4/pt-BR/mcp/sse",
"v1.14.4/pt-BR/mcp/streamable-http",
"v1.14.4/pt-BR/mcp/multiple-servers",
"v1.14.4/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.4/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.4/pt-BR/tools/file-document/overview",
"v1.14.4/pt-BR/tools/file-document/filereadtool",
"v1.14.4/pt-BR/tools/file-document/filewritetool",
"v1.14.4/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.4/pt-BR/tools/file-document/docxsearchtool",
"v1.14.4/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.4/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.4/pt-BR/tools/file-document/txtsearchtool",
"v1.14.4/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.4/pt-BR/tools/file-document/csvsearchtool",
"v1.14.4/pt-BR/tools/file-document/directorysearchtool",
"v1.14.4/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.4/pt-BR/tools/web-scraping/overview",
"v1.14.4/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.4/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.4/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.4/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.4/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.4/pt-BR/tools/web-scraping/spidertool",
"v1.14.4/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.4/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.4/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.4/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.4/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.4/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.4/pt-BR/tools/search-research/overview",
"v1.14.4/pt-BR/tools/search-research/serperdevtool",
"v1.14.4/pt-BR/tools/search-research/bravesearchtool",
"v1.14.4/pt-BR/tools/search-research/exasearchtool",
"v1.14.4/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.4/pt-BR/tools/search-research/githubsearchtool",
"v1.14.4/pt-BR/tools/search-research/websitesearchtool",
"v1.14.4/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.4/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.4/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.4/pt-BR/tools/database-data/overview",
"v1.14.4/pt-BR/tools/database-data/mysqltool",
"v1.14.4/pt-BR/tools/database-data/pgsearchtool",
"v1.14.4/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.4/pt-BR/tools/database-data/nl2sqltool",
"v1.14.4/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.4/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.4/pt-BR/tools/ai-ml/overview",
"v1.14.4/pt-BR/tools/ai-ml/dalletool",
"v1.14.4/pt-BR/tools/ai-ml/visiontool",
"v1.14.4/pt-BR/tools/ai-ml/aimindtool",
"v1.14.4/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.4/pt-BR/tools/ai-ml/langchaintool",
"v1.14.4/pt-BR/tools/ai-ml/ragtool",
"v1.14.4/pt-BR/tools/ai-ml/codeinterpretertool",
"v1.14.4/pt-BR/tools/ai-ml/daytona"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.4/pt-BR/tools/cloud-storage/overview",
"v1.14.4/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.4/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.4/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.4/pt-BR/tools/integration/overview",
"v1.14.4/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.4/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.4/pt-BR/tools/automation/overview",
"v1.14.4/pt-BR/tools/automation/apifyactorstool",
"v1.14.4/pt-BR/tools/automation/composiotool",
"v1.14.4/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.4/pt-BR/observability/tracing",
"v1.14.4/pt-BR/observability/overview",
"v1.14.4/pt-BR/observability/arize-phoenix",
"v1.14.4/pt-BR/observability/braintrust",
"v1.14.4/pt-BR/observability/datadog",
"v1.14.4/pt-BR/observability/galileo",
"v1.14.4/pt-BR/observability/langdb",
"v1.14.4/pt-BR/observability/langfuse",
"v1.14.4/pt-BR/observability/langtrace",
"v1.14.4/pt-BR/observability/maxim",
"v1.14.4/pt-BR/observability/mlflow",
"v1.14.4/pt-BR/observability/openlit",
"v1.14.4/pt-BR/observability/opik",
"v1.14.4/pt-BR/observability/patronus-evaluation",
"v1.14.4/pt-BR/observability/portkey",
"v1.14.4/pt-BR/observability/weave",
"v1.14.4/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.4/pt-BR/learn/overview",
"v1.14.4/pt-BR/learn/llm-selection-guide",
"v1.14.4/pt-BR/learn/conditional-tasks",
"v1.14.4/pt-BR/learn/coding-agents",
"v1.14.4/pt-BR/learn/create-custom-tools",
"v1.14.4/pt-BR/learn/custom-llm",
"v1.14.4/pt-BR/learn/custom-manager-agent",
"v1.14.4/pt-BR/learn/customizing-agents",
"v1.14.4/pt-BR/learn/dalle-image-generation",
"v1.14.4/pt-BR/learn/force-tool-output-as-result",
"v1.14.4/pt-BR/learn/hierarchical-process",
"v1.14.4/pt-BR/learn/human-input-on-execution",
"v1.14.4/pt-BR/learn/human-in-the-loop",
"v1.14.4/pt-BR/learn/human-feedback-in-flows",
"v1.14.4/pt-BR/learn/kickoff-async",
"v1.14.4/pt-BR/learn/kickoff-for-each",
"v1.14.4/pt-BR/learn/llm-connections",
"v1.14.4/pt-BR/learn/multimodal-agents",
"v1.14.4/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.4/pt-BR/learn/sequential-process",
"v1.14.4/pt-BR/learn/using-annotations",
"v1.14.4/pt-BR/learn/execution-hooks",
"v1.14.4/pt-BR/learn/llm-hooks",
"v1.14.4/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.4/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.4/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.4/pt-BR/enterprise/features/automations",
"v1.14.4/pt-BR/enterprise/features/crew-studio",
"v1.14.4/pt-BR/enterprise/features/marketplace",
"v1.14.4/pt-BR/enterprise/features/agent-repositories",
"v1.14.4/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.4/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.4/pt-BR/enterprise/features/traces",
"v1.14.4/pt-BR/enterprise/features/webhook-streaming",
"v1.14.4/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.4/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.4/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.4/pt-BR/enterprise/integrations/asana",
"v1.14.4/pt-BR/enterprise/integrations/box",
"v1.14.4/pt-BR/enterprise/integrations/clickup",
"v1.14.4/pt-BR/enterprise/integrations/github",
"v1.14.4/pt-BR/enterprise/integrations/gmail",
"v1.14.4/pt-BR/enterprise/integrations/google_calendar",
"v1.14.4/pt-BR/enterprise/integrations/google_contacts",
"v1.14.4/pt-BR/enterprise/integrations/google_docs",
"v1.14.4/pt-BR/enterprise/integrations/google_drive",
"v1.14.4/pt-BR/enterprise/integrations/google_sheets",
"v1.14.4/pt-BR/enterprise/integrations/google_slides",
"v1.14.4/pt-BR/enterprise/integrations/hubspot",
"v1.14.4/pt-BR/enterprise/integrations/jira",
"v1.14.4/pt-BR/enterprise/integrations/linear",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.4/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.4/pt-BR/enterprise/integrations/notion",
"v1.14.4/pt-BR/enterprise/integrations/salesforce",
"v1.14.4/pt-BR/enterprise/integrations/shopify",
"v1.14.4/pt-BR/enterprise/integrations/slack",
"v1.14.4/pt-BR/enterprise/integrations/stripe",
"v1.14.4/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.4/pt-BR/enterprise/guides/build-crew",
"v1.14.4/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.4/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.4/pt-BR/enterprise/guides/private-package-registry",
"v1.14.4/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.4/pt-BR/enterprise/guides/training-crews",
"v1.14.4/pt-BR/enterprise/guides/update-crew",
"v1.14.4/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.4/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.4/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.4/pt-BR/enterprise/guides/tool-repository",
"v1.14.4/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.4/pt-BR/enterprise/guides/react-component-export",
"v1.14.4/pt-BR/enterprise/guides/team-management",
"v1.14.4/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.4/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.4/pt-BR/enterprise/guides/automation-triggers",
"v1.14.4/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.4/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.4/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.4/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.4/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.4/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.4/pt-BR/enterprise/guides/slack-trigger",
"v1.14.4/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.4/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.4/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.4/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.4/pt-BR/api-reference/introduction",
"v1.14.4/pt-BR/api-reference/inputs",
"v1.14.4/pt-BR/api-reference/kickoff",
"v1.14.4/pt-BR/api-reference/resume",
"v1.14.4/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.4/pt-BR/examples/example",
"v1.14.4/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.4/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.3",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.3/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.3/pt-BR/introduction",
"v1.14.3/pt-BR/guides/coding-tools/build-with-ai",
"v1.14.3/pt-BR/skills",
"v1.14.3/pt-BR/installation",
"v1.14.3/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.3/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.3/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.3/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.3/pt-BR/guides/flows/first-flow",
"v1.14.3/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.3/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.3/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.3/pt-BR/guides/advanced/customizing-prompts",
"v1.14.3/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.3/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.3/pt-BR/concepts/agents",
"v1.14.3/pt-BR/concepts/agent-capabilities",
"v1.14.3/pt-BR/concepts/tasks",
"v1.14.3/pt-BR/concepts/crews",
"v1.14.3/pt-BR/concepts/flows",
"v1.14.3/pt-BR/concepts/production-architecture",
"v1.14.3/pt-BR/concepts/knowledge",
"v1.14.3/pt-BR/concepts/skills",
"v1.14.3/pt-BR/concepts/llms",
"v1.14.3/pt-BR/concepts/files",
"v1.14.3/pt-BR/concepts/processes",
"v1.14.3/pt-BR/concepts/collaboration",
"v1.14.3/pt-BR/concepts/training",
"v1.14.3/pt-BR/concepts/memory",
"v1.14.3/pt-BR/concepts/reasoning",
"v1.14.3/pt-BR/concepts/planning",
"v1.14.3/pt-BR/concepts/testing",
"v1.14.3/pt-BR/concepts/cli",
"v1.14.3/pt-BR/concepts/tools",
"v1.14.3/pt-BR/concepts/event-listener",
"v1.14.3/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.3/pt-BR/mcp/overview",
"v1.14.3/pt-BR/mcp/dsl-integration",
"v1.14.3/pt-BR/mcp/stdio",
"v1.14.3/pt-BR/mcp/sse",
"v1.14.3/pt-BR/mcp/streamable-http",
"v1.14.3/pt-BR/mcp/multiple-servers",
"v1.14.3/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.3/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.3/pt-BR/tools/file-document/overview",
"v1.14.3/pt-BR/tools/file-document/filereadtool",
"v1.14.3/pt-BR/tools/file-document/filewritetool",
"v1.14.3/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.3/pt-BR/tools/file-document/docxsearchtool",
"v1.14.3/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.3/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.3/pt-BR/tools/file-document/txtsearchtool",
"v1.14.3/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.3/pt-BR/tools/file-document/csvsearchtool",
"v1.14.3/pt-BR/tools/file-document/directorysearchtool",
"v1.14.3/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.3/pt-BR/tools/web-scraping/overview",
"v1.14.3/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.3/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.3/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.3/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.3/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.3/pt-BR/tools/web-scraping/spidertool",
"v1.14.3/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.3/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.3/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.3/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.3/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.3/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.3/pt-BR/tools/search-research/overview",
"v1.14.3/pt-BR/tools/search-research/serperdevtool",
"v1.14.3/pt-BR/tools/search-research/bravesearchtool",
"v1.14.3/pt-BR/tools/search-research/exasearchtool",
"v1.14.3/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.3/pt-BR/tools/search-research/githubsearchtool",
"v1.14.3/pt-BR/tools/search-research/websitesearchtool",
"v1.14.3/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.3/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.3/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.3/pt-BR/tools/database-data/overview",
"v1.14.3/pt-BR/tools/database-data/mysqltool",
"v1.14.3/pt-BR/tools/database-data/pgsearchtool",
"v1.14.3/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.3/pt-BR/tools/database-data/nl2sqltool",
"v1.14.3/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.3/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.3/pt-BR/tools/ai-ml/overview",
"v1.14.3/pt-BR/tools/ai-ml/dalletool",
"v1.14.3/pt-BR/tools/ai-ml/visiontool",
"v1.14.3/pt-BR/tools/ai-ml/aimindtool",
"v1.14.3/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.3/pt-BR/tools/ai-ml/langchaintool",
"v1.14.3/pt-BR/tools/ai-ml/ragtool",
"v1.14.3/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.3/pt-BR/tools/cloud-storage/overview",
"v1.14.3/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.3/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.3/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.3/pt-BR/tools/integration/overview",
"v1.14.3/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.3/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.3/pt-BR/tools/automation/overview",
"v1.14.3/pt-BR/tools/automation/apifyactorstool",
"v1.14.3/pt-BR/tools/automation/composiotool",
"v1.14.3/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.3/pt-BR/observability/tracing",
"v1.14.3/pt-BR/observability/overview",
"v1.14.3/pt-BR/observability/arize-phoenix",
"v1.14.3/pt-BR/observability/braintrust",
"v1.14.3/pt-BR/observability/datadog",
"v1.14.3/pt-BR/observability/galileo",
"v1.14.3/pt-BR/observability/langdb",
"v1.14.3/pt-BR/observability/langfuse",
"v1.14.3/pt-BR/observability/langtrace",
"v1.14.3/pt-BR/observability/maxim",
"v1.14.3/pt-BR/observability/mlflow",
"v1.14.3/pt-BR/observability/openlit",
"v1.14.3/pt-BR/observability/opik",
"v1.14.3/pt-BR/observability/patronus-evaluation",
"v1.14.3/pt-BR/observability/portkey",
"v1.14.3/pt-BR/observability/weave",
"v1.14.3/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.3/pt-BR/learn/overview",
"v1.14.3/pt-BR/learn/llm-selection-guide",
"v1.14.3/pt-BR/learn/conditional-tasks",
"v1.14.3/pt-BR/learn/coding-agents",
"v1.14.3/pt-BR/learn/create-custom-tools",
"v1.14.3/pt-BR/learn/custom-llm",
"v1.14.3/pt-BR/learn/custom-manager-agent",
"v1.14.3/pt-BR/learn/customizing-agents",
"v1.14.3/pt-BR/learn/dalle-image-generation",
"v1.14.3/pt-BR/learn/force-tool-output-as-result",
"v1.14.3/pt-BR/learn/hierarchical-process",
"v1.14.3/pt-BR/learn/human-input-on-execution",
"v1.14.3/pt-BR/learn/human-in-the-loop",
"v1.14.3/pt-BR/learn/human-feedback-in-flows",
"v1.14.3/pt-BR/learn/kickoff-async",
"v1.14.3/pt-BR/learn/kickoff-for-each",
"v1.14.3/pt-BR/learn/llm-connections",
"v1.14.3/pt-BR/learn/multimodal-agents",
"v1.14.3/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.3/pt-BR/learn/sequential-process",
"v1.14.3/pt-BR/learn/using-annotations",
"v1.14.3/pt-BR/learn/execution-hooks",
"v1.14.3/pt-BR/learn/llm-hooks",
"v1.14.3/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.3/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.3/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.3/pt-BR/enterprise/features/automations",
"v1.14.3/pt-BR/enterprise/features/crew-studio",
"v1.14.3/pt-BR/enterprise/features/marketplace",
"v1.14.3/pt-BR/enterprise/features/agent-repositories",
"v1.14.3/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.3/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.3/pt-BR/enterprise/features/traces",
"v1.14.3/pt-BR/enterprise/features/webhook-streaming",
"v1.14.3/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.3/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.3/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.3/pt-BR/enterprise/integrations/asana",
"v1.14.3/pt-BR/enterprise/integrations/box",
"v1.14.3/pt-BR/enterprise/integrations/clickup",
"v1.14.3/pt-BR/enterprise/integrations/github",
"v1.14.3/pt-BR/enterprise/integrations/gmail",
"v1.14.3/pt-BR/enterprise/integrations/google_calendar",
"v1.14.3/pt-BR/enterprise/integrations/google_contacts",
"v1.14.3/pt-BR/enterprise/integrations/google_docs",
"v1.14.3/pt-BR/enterprise/integrations/google_drive",
"v1.14.3/pt-BR/enterprise/integrations/google_sheets",
"v1.14.3/pt-BR/enterprise/integrations/google_slides",
"v1.14.3/pt-BR/enterprise/integrations/hubspot",
"v1.14.3/pt-BR/enterprise/integrations/jira",
"v1.14.3/pt-BR/enterprise/integrations/linear",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.3/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.3/pt-BR/enterprise/integrations/notion",
"v1.14.3/pt-BR/enterprise/integrations/salesforce",
"v1.14.3/pt-BR/enterprise/integrations/shopify",
"v1.14.3/pt-BR/enterprise/integrations/slack",
"v1.14.3/pt-BR/enterprise/integrations/stripe",
"v1.14.3/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.3/pt-BR/enterprise/guides/build-crew",
"v1.14.3/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.3/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.3/pt-BR/enterprise/guides/private-package-registry",
"v1.14.3/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.3/pt-BR/enterprise/guides/training-crews",
"v1.14.3/pt-BR/enterprise/guides/update-crew",
"v1.14.3/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.3/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.3/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.3/pt-BR/enterprise/guides/tool-repository",
"v1.14.3/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.3/pt-BR/enterprise/guides/react-component-export",
"v1.14.3/pt-BR/enterprise/guides/team-management",
"v1.14.3/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.3/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.3/pt-BR/enterprise/guides/automation-triggers",
"v1.14.3/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.3/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.3/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.3/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.3/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.3/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.3/pt-BR/enterprise/guides/slack-trigger",
"v1.14.3/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.3/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.3/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.3/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.3/pt-BR/api-reference/introduction",
"v1.14.3/pt-BR/api-reference/inputs",
"v1.14.3/pt-BR/api-reference/kickoff",
"v1.14.3/pt-BR/api-reference/resume",
"v1.14.3/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.3/pt-BR/examples/example",
"v1.14.3/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.3/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.2",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.2/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.2/pt-BR/introduction",
"v1.14.2/pt-BR/skills",
"v1.14.2/pt-BR/installation",
"v1.14.2/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.2/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.2/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.2/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.2/pt-BR/guides/flows/first-flow",
"v1.14.2/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.2/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.2/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.2/pt-BR/guides/advanced/customizing-prompts",
"v1.14.2/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.2/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.2/pt-BR/concepts/agents",
"v1.14.2/pt-BR/concepts/agent-capabilities",
"v1.14.2/pt-BR/concepts/tasks",
"v1.14.2/pt-BR/concepts/crews",
"v1.14.2/pt-BR/concepts/flows",
"v1.14.2/pt-BR/concepts/production-architecture",
"v1.14.2/pt-BR/concepts/knowledge",
"v1.14.2/pt-BR/concepts/skills",
"v1.14.2/pt-BR/concepts/llms",
"v1.14.2/pt-BR/concepts/files",
"v1.14.2/pt-BR/concepts/processes",
"v1.14.2/pt-BR/concepts/collaboration",
"v1.14.2/pt-BR/concepts/training",
"v1.14.2/pt-BR/concepts/memory",
"v1.14.2/pt-BR/concepts/reasoning",
"v1.14.2/pt-BR/concepts/planning",
"v1.14.2/pt-BR/concepts/testing",
"v1.14.2/pt-BR/concepts/cli",
"v1.14.2/pt-BR/concepts/tools",
"v1.14.2/pt-BR/concepts/event-listener",
"v1.14.2/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.2/pt-BR/mcp/overview",
"v1.14.2/pt-BR/mcp/dsl-integration",
"v1.14.2/pt-BR/mcp/stdio",
"v1.14.2/pt-BR/mcp/sse",
"v1.14.2/pt-BR/mcp/streamable-http",
"v1.14.2/pt-BR/mcp/multiple-servers",
"v1.14.2/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.2/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.2/pt-BR/tools/file-document/overview",
"v1.14.2/pt-BR/tools/file-document/filereadtool",
"v1.14.2/pt-BR/tools/file-document/filewritetool",
"v1.14.2/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.2/pt-BR/tools/file-document/docxsearchtool",
"v1.14.2/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.2/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.2/pt-BR/tools/file-document/txtsearchtool",
"v1.14.2/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.2/pt-BR/tools/file-document/csvsearchtool",
"v1.14.2/pt-BR/tools/file-document/directorysearchtool",
"v1.14.2/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.2/pt-BR/tools/web-scraping/overview",
"v1.14.2/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.2/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.2/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.2/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.2/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.2/pt-BR/tools/web-scraping/spidertool",
"v1.14.2/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.2/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.2/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.2/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.2/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.2/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.2/pt-BR/tools/search-research/overview",
"v1.14.2/pt-BR/tools/search-research/serperdevtool",
"v1.14.2/pt-BR/tools/search-research/bravesearchtool",
"v1.14.2/pt-BR/tools/search-research/exasearchtool",
"v1.14.2/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.2/pt-BR/tools/search-research/githubsearchtool",
"v1.14.2/pt-BR/tools/search-research/websitesearchtool",
"v1.14.2/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.2/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.2/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.2/pt-BR/tools/database-data/overview",
"v1.14.2/pt-BR/tools/database-data/mysqltool",
"v1.14.2/pt-BR/tools/database-data/pgsearchtool",
"v1.14.2/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.2/pt-BR/tools/database-data/nl2sqltool",
"v1.14.2/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.2/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.2/pt-BR/tools/ai-ml/overview",
"v1.14.2/pt-BR/tools/ai-ml/dalletool",
"v1.14.2/pt-BR/tools/ai-ml/visiontool",
"v1.14.2/pt-BR/tools/ai-ml/aimindtool",
"v1.14.2/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.2/pt-BR/tools/ai-ml/langchaintool",
"v1.14.2/pt-BR/tools/ai-ml/ragtool",
"v1.14.2/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.2/pt-BR/tools/cloud-storage/overview",
"v1.14.2/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.2/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.2/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.2/pt-BR/tools/integration/overview",
"v1.14.2/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.2/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.2/pt-BR/tools/automation/overview",
"v1.14.2/pt-BR/tools/automation/apifyactorstool",
"v1.14.2/pt-BR/tools/automation/composiotool",
"v1.14.2/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.2/pt-BR/observability/tracing",
"v1.14.2/pt-BR/observability/overview",
"v1.14.2/pt-BR/observability/arize-phoenix",
"v1.14.2/pt-BR/observability/braintrust",
"v1.14.2/pt-BR/observability/datadog",
"v1.14.2/pt-BR/observability/galileo",
"v1.14.2/pt-BR/observability/langdb",
"v1.14.2/pt-BR/observability/langfuse",
"v1.14.2/pt-BR/observability/langtrace",
"v1.14.2/pt-BR/observability/maxim",
"v1.14.2/pt-BR/observability/mlflow",
"v1.14.2/pt-BR/observability/openlit",
"v1.14.2/pt-BR/observability/opik",
"v1.14.2/pt-BR/observability/patronus-evaluation",
"v1.14.2/pt-BR/observability/portkey",
"v1.14.2/pt-BR/observability/weave",
"v1.14.2/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.2/pt-BR/learn/overview",
"v1.14.2/pt-BR/learn/llm-selection-guide",
"v1.14.2/pt-BR/learn/conditional-tasks",
"v1.14.2/pt-BR/learn/coding-agents",
"v1.14.2/pt-BR/learn/create-custom-tools",
"v1.14.2/pt-BR/learn/custom-llm",
"v1.14.2/pt-BR/learn/custom-manager-agent",
"v1.14.2/pt-BR/learn/customizing-agents",
"v1.14.2/pt-BR/learn/dalle-image-generation",
"v1.14.2/pt-BR/learn/force-tool-output-as-result",
"v1.14.2/pt-BR/learn/hierarchical-process",
"v1.14.2/pt-BR/learn/human-input-on-execution",
"v1.14.2/pt-BR/learn/human-in-the-loop",
"v1.14.2/pt-BR/learn/human-feedback-in-flows",
"v1.14.2/pt-BR/learn/kickoff-async",
"v1.14.2/pt-BR/learn/kickoff-for-each",
"v1.14.2/pt-BR/learn/llm-connections",
"v1.14.2/pt-BR/learn/multimodal-agents",
"v1.14.2/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.2/pt-BR/learn/sequential-process",
"v1.14.2/pt-BR/learn/using-annotations",
"v1.14.2/pt-BR/learn/execution-hooks",
"v1.14.2/pt-BR/learn/llm-hooks",
"v1.14.2/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.2/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.2/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.2/pt-BR/enterprise/features/automations",
"v1.14.2/pt-BR/enterprise/features/crew-studio",
"v1.14.2/pt-BR/enterprise/features/marketplace",
"v1.14.2/pt-BR/enterprise/features/agent-repositories",
"v1.14.2/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.2/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.2/pt-BR/enterprise/features/traces",
"v1.14.2/pt-BR/enterprise/features/webhook-streaming",
"v1.14.2/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.2/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.2/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.2/pt-BR/enterprise/integrations/asana",
"v1.14.2/pt-BR/enterprise/integrations/box",
"v1.14.2/pt-BR/enterprise/integrations/clickup",
"v1.14.2/pt-BR/enterprise/integrations/github",
"v1.14.2/pt-BR/enterprise/integrations/gmail",
"v1.14.2/pt-BR/enterprise/integrations/google_calendar",
"v1.14.2/pt-BR/enterprise/integrations/google_contacts",
"v1.14.2/pt-BR/enterprise/integrations/google_docs",
"v1.14.2/pt-BR/enterprise/integrations/google_drive",
"v1.14.2/pt-BR/enterprise/integrations/google_sheets",
"v1.14.2/pt-BR/enterprise/integrations/google_slides",
"v1.14.2/pt-BR/enterprise/integrations/hubspot",
"v1.14.2/pt-BR/enterprise/integrations/jira",
"v1.14.2/pt-BR/enterprise/integrations/linear",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.2/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.2/pt-BR/enterprise/integrations/notion",
"v1.14.2/pt-BR/enterprise/integrations/salesforce",
"v1.14.2/pt-BR/enterprise/integrations/shopify",
"v1.14.2/pt-BR/enterprise/integrations/slack",
"v1.14.2/pt-BR/enterprise/integrations/stripe",
"v1.14.2/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.2/pt-BR/enterprise/guides/build-crew",
"v1.14.2/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.2/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.2/pt-BR/enterprise/guides/private-package-registry",
"v1.14.2/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.2/pt-BR/enterprise/guides/training-crews",
"v1.14.2/pt-BR/enterprise/guides/update-crew",
"v1.14.2/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.2/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.2/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.2/pt-BR/enterprise/guides/tool-repository",
"v1.14.2/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.2/pt-BR/enterprise/guides/react-component-export",
"v1.14.2/pt-BR/enterprise/guides/team-management",
"v1.14.2/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.2/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.2/pt-BR/enterprise/guides/automation-triggers",
"v1.14.2/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.2/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.2/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.2/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.2/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.2/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.2/pt-BR/enterprise/guides/slack-trigger",
"v1.14.2/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.2/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.2/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.2/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.2/pt-BR/api-reference/introduction",
"v1.14.2/pt-BR/api-reference/inputs",
"v1.14.2/pt-BR/api-reference/kickoff",
"v1.14.2/pt-BR/api-reference/resume",
"v1.14.2/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.2/pt-BR/examples/example",
"v1.14.2/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.2/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.1",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.1/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.1/pt-BR/introduction",
"v1.14.1/pt-BR/skills",
"v1.14.1/pt-BR/installation",
"v1.14.1/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.1/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.1/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.1/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.1/pt-BR/guides/flows/first-flow",
"v1.14.1/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.1/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.1/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.1/pt-BR/guides/advanced/customizing-prompts",
"v1.14.1/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.1/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.1/pt-BR/concepts/agents",
"v1.14.1/pt-BR/concepts/agent-capabilities",
"v1.14.1/pt-BR/concepts/tasks",
"v1.14.1/pt-BR/concepts/crews",
"v1.14.1/pt-BR/concepts/flows",
"v1.14.1/pt-BR/concepts/production-architecture",
"v1.14.1/pt-BR/concepts/knowledge",
"v1.14.1/pt-BR/concepts/skills",
"v1.14.1/pt-BR/concepts/llms",
"v1.14.1/pt-BR/concepts/files",
"v1.14.1/pt-BR/concepts/processes",
"v1.14.1/pt-BR/concepts/collaboration",
"v1.14.1/pt-BR/concepts/training",
"v1.14.1/pt-BR/concepts/memory",
"v1.14.1/pt-BR/concepts/reasoning",
"v1.14.1/pt-BR/concepts/planning",
"v1.14.1/pt-BR/concepts/testing",
"v1.14.1/pt-BR/concepts/cli",
"v1.14.1/pt-BR/concepts/tools",
"v1.14.1/pt-BR/concepts/event-listener",
"v1.14.1/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.1/pt-BR/mcp/overview",
"v1.14.1/pt-BR/mcp/dsl-integration",
"v1.14.1/pt-BR/mcp/stdio",
"v1.14.1/pt-BR/mcp/sse",
"v1.14.1/pt-BR/mcp/streamable-http",
"v1.14.1/pt-BR/mcp/multiple-servers",
"v1.14.1/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.1/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.1/pt-BR/tools/file-document/overview",
"v1.14.1/pt-BR/tools/file-document/filereadtool",
"v1.14.1/pt-BR/tools/file-document/filewritetool",
"v1.14.1/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.1/pt-BR/tools/file-document/docxsearchtool",
"v1.14.1/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.1/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.1/pt-BR/tools/file-document/txtsearchtool",
"v1.14.1/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.1/pt-BR/tools/file-document/csvsearchtool",
"v1.14.1/pt-BR/tools/file-document/directorysearchtool",
"v1.14.1/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.1/pt-BR/tools/web-scraping/overview",
"v1.14.1/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.1/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.1/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.1/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.1/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.1/pt-BR/tools/web-scraping/spidertool",
"v1.14.1/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.1/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.1/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.1/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.1/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.1/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.1/pt-BR/tools/search-research/overview",
"v1.14.1/pt-BR/tools/search-research/serperdevtool",
"v1.14.1/pt-BR/tools/search-research/bravesearchtool",
"v1.14.1/pt-BR/tools/search-research/exasearchtool",
"v1.14.1/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.1/pt-BR/tools/search-research/githubsearchtool",
"v1.14.1/pt-BR/tools/search-research/websitesearchtool",
"v1.14.1/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.1/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.1/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.1/pt-BR/tools/database-data/overview",
"v1.14.1/pt-BR/tools/database-data/mysqltool",
"v1.14.1/pt-BR/tools/database-data/pgsearchtool",
"v1.14.1/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.1/pt-BR/tools/database-data/nl2sqltool",
"v1.14.1/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.1/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.1/pt-BR/tools/ai-ml/overview",
"v1.14.1/pt-BR/tools/ai-ml/dalletool",
"v1.14.1/pt-BR/tools/ai-ml/visiontool",
"v1.14.1/pt-BR/tools/ai-ml/aimindtool",
"v1.14.1/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.1/pt-BR/tools/ai-ml/langchaintool",
"v1.14.1/pt-BR/tools/ai-ml/ragtool",
"v1.14.1/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.1/pt-BR/tools/cloud-storage/overview",
"v1.14.1/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.1/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.1/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.1/pt-BR/tools/integration/overview",
"v1.14.1/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.1/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.1/pt-BR/tools/automation/overview",
"v1.14.1/pt-BR/tools/automation/apifyactorstool",
"v1.14.1/pt-BR/tools/automation/composiotool",
"v1.14.1/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.1/pt-BR/observability/tracing",
"v1.14.1/pt-BR/observability/overview",
"v1.14.1/pt-BR/observability/arize-phoenix",
"v1.14.1/pt-BR/observability/braintrust",
"v1.14.1/pt-BR/observability/datadog",
"v1.14.1/pt-BR/observability/galileo",
"v1.14.1/pt-BR/observability/langdb",
"v1.14.1/pt-BR/observability/langfuse",
"v1.14.1/pt-BR/observability/langtrace",
"v1.14.1/pt-BR/observability/maxim",
"v1.14.1/pt-BR/observability/mlflow",
"v1.14.1/pt-BR/observability/openlit",
"v1.14.1/pt-BR/observability/opik",
"v1.14.1/pt-BR/observability/patronus-evaluation",
"v1.14.1/pt-BR/observability/portkey",
"v1.14.1/pt-BR/observability/weave",
"v1.14.1/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.1/pt-BR/learn/overview",
"v1.14.1/pt-BR/learn/llm-selection-guide",
"v1.14.1/pt-BR/learn/conditional-tasks",
"v1.14.1/pt-BR/learn/coding-agents",
"v1.14.1/pt-BR/learn/create-custom-tools",
"v1.14.1/pt-BR/learn/custom-llm",
"v1.14.1/pt-BR/learn/custom-manager-agent",
"v1.14.1/pt-BR/learn/customizing-agents",
"v1.14.1/pt-BR/learn/dalle-image-generation",
"v1.14.1/pt-BR/learn/force-tool-output-as-result",
"v1.14.1/pt-BR/learn/hierarchical-process",
"v1.14.1/pt-BR/learn/human-input-on-execution",
"v1.14.1/pt-BR/learn/human-in-the-loop",
"v1.14.1/pt-BR/learn/human-feedback-in-flows",
"v1.14.1/pt-BR/learn/kickoff-async",
"v1.14.1/pt-BR/learn/kickoff-for-each",
"v1.14.1/pt-BR/learn/llm-connections",
"v1.14.1/pt-BR/learn/multimodal-agents",
"v1.14.1/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.1/pt-BR/learn/sequential-process",
"v1.14.1/pt-BR/learn/using-annotations",
"v1.14.1/pt-BR/learn/execution-hooks",
"v1.14.1/pt-BR/learn/llm-hooks",
"v1.14.1/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.1/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.1/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.1/pt-BR/enterprise/features/automations",
"v1.14.1/pt-BR/enterprise/features/crew-studio",
"v1.14.1/pt-BR/enterprise/features/marketplace",
"v1.14.1/pt-BR/enterprise/features/agent-repositories",
"v1.14.1/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.1/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.1/pt-BR/enterprise/features/traces",
"v1.14.1/pt-BR/enterprise/features/webhook-streaming",
"v1.14.1/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.1/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.1/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.1/pt-BR/enterprise/integrations/asana",
"v1.14.1/pt-BR/enterprise/integrations/box",
"v1.14.1/pt-BR/enterprise/integrations/clickup",
"v1.14.1/pt-BR/enterprise/integrations/github",
"v1.14.1/pt-BR/enterprise/integrations/gmail",
"v1.14.1/pt-BR/enterprise/integrations/google_calendar",
"v1.14.1/pt-BR/enterprise/integrations/google_contacts",
"v1.14.1/pt-BR/enterprise/integrations/google_docs",
"v1.14.1/pt-BR/enterprise/integrations/google_drive",
"v1.14.1/pt-BR/enterprise/integrations/google_sheets",
"v1.14.1/pt-BR/enterprise/integrations/google_slides",
"v1.14.1/pt-BR/enterprise/integrations/hubspot",
"v1.14.1/pt-BR/enterprise/integrations/jira",
"v1.14.1/pt-BR/enterprise/integrations/linear",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.1/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.1/pt-BR/enterprise/integrations/notion",
"v1.14.1/pt-BR/enterprise/integrations/salesforce",
"v1.14.1/pt-BR/enterprise/integrations/shopify",
"v1.14.1/pt-BR/enterprise/integrations/slack",
"v1.14.1/pt-BR/enterprise/integrations/stripe",
"v1.14.1/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.1/pt-BR/enterprise/guides/build-crew",
"v1.14.1/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.1/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.1/pt-BR/enterprise/guides/private-package-registry",
"v1.14.1/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.1/pt-BR/enterprise/guides/training-crews",
"v1.14.1/pt-BR/enterprise/guides/update-crew",
"v1.14.1/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.1/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.1/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.1/pt-BR/enterprise/guides/tool-repository",
"v1.14.1/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.1/pt-BR/enterprise/guides/react-component-export",
"v1.14.1/pt-BR/enterprise/guides/team-management",
"v1.14.1/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.1/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.1/pt-BR/enterprise/guides/automation-triggers",
"v1.14.1/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.1/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.1/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.1/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.1/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.1/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.1/pt-BR/enterprise/guides/slack-trigger",
"v1.14.1/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.1/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.1/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.1/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.1/pt-BR/api-reference/introduction",
"v1.14.1/pt-BR/api-reference/inputs",
"v1.14.1/pt-BR/api-reference/kickoff",
"v1.14.1/pt-BR/api-reference/resume",
"v1.14.1/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.1/pt-BR/examples/example",
"v1.14.1/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.1/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.14.0",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.14.0/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.0/pt-BR/introduction",
"v1.14.0/pt-BR/installation",
"v1.14.0/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.14.0/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.14.0/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.14.0/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.14.0/pt-BR/guides/flows/first-flow",
"v1.14.0/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.14.0/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.14.0/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.14.0/pt-BR/guides/advanced/customizing-prompts",
"v1.14.0/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.14.0/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.14.0/pt-BR/concepts/agents",
"v1.14.0/pt-BR/concepts/agent-capabilities",
"v1.14.0/pt-BR/concepts/tasks",
"v1.14.0/pt-BR/concepts/crews",
"v1.14.0/pt-BR/concepts/flows",
"v1.14.0/pt-BR/concepts/production-architecture",
"v1.14.0/pt-BR/concepts/knowledge",
"v1.14.0/pt-BR/concepts/skills",
"v1.14.0/pt-BR/concepts/llms",
"v1.14.0/pt-BR/concepts/files",
"v1.14.0/pt-BR/concepts/processes",
"v1.14.0/pt-BR/concepts/collaboration",
"v1.14.0/pt-BR/concepts/training",
"v1.14.0/pt-BR/concepts/memory",
"v1.14.0/pt-BR/concepts/reasoning",
"v1.14.0/pt-BR/concepts/planning",
"v1.14.0/pt-BR/concepts/testing",
"v1.14.0/pt-BR/concepts/cli",
"v1.14.0/pt-BR/concepts/tools",
"v1.14.0/pt-BR/concepts/event-listener",
"v1.14.0/pt-BR/concepts/checkpointing"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.14.0/pt-BR/mcp/overview",
"v1.14.0/pt-BR/mcp/dsl-integration",
"v1.14.0/pt-BR/mcp/stdio",
"v1.14.0/pt-BR/mcp/sse",
"v1.14.0/pt-BR/mcp/streamable-http",
"v1.14.0/pt-BR/mcp/multiple-servers",
"v1.14.0/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.14.0/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.14.0/pt-BR/tools/file-document/overview",
"v1.14.0/pt-BR/tools/file-document/filereadtool",
"v1.14.0/pt-BR/tools/file-document/filewritetool",
"v1.14.0/pt-BR/tools/file-document/pdfsearchtool",
"v1.14.0/pt-BR/tools/file-document/docxsearchtool",
"v1.14.0/pt-BR/tools/file-document/mdxsearchtool",
"v1.14.0/pt-BR/tools/file-document/xmlsearchtool",
"v1.14.0/pt-BR/tools/file-document/txtsearchtool",
"v1.14.0/pt-BR/tools/file-document/jsonsearchtool",
"v1.14.0/pt-BR/tools/file-document/csvsearchtool",
"v1.14.0/pt-BR/tools/file-document/directorysearchtool",
"v1.14.0/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.14.0/pt-BR/tools/web-scraping/overview",
"v1.14.0/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.14.0/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.0/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.14.0/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.14.0/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.14.0/pt-BR/tools/web-scraping/spidertool",
"v1.14.0/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.14.0/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.14.0/pt-BR/tools/web-scraping/stagehandtool",
"v1.14.0/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.0/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.0/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.14.0/pt-BR/tools/search-research/overview",
"v1.14.0/pt-BR/tools/search-research/serperdevtool",
"v1.14.0/pt-BR/tools/search-research/bravesearchtool",
"v1.14.0/pt-BR/tools/search-research/exasearchtool",
"v1.14.0/pt-BR/tools/search-research/linkupsearchtool",
"v1.14.0/pt-BR/tools/search-research/githubsearchtool",
"v1.14.0/pt-BR/tools/search-research/websitesearchtool",
"v1.14.0/pt-BR/tools/search-research/codedocssearchtool",
"v1.14.0/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.14.0/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.14.0/pt-BR/tools/database-data/overview",
"v1.14.0/pt-BR/tools/database-data/mysqltool",
"v1.14.0/pt-BR/tools/database-data/pgsearchtool",
"v1.14.0/pt-BR/tools/database-data/snowflakesearchtool",
"v1.14.0/pt-BR/tools/database-data/nl2sqltool",
"v1.14.0/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.14.0/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.14.0/pt-BR/tools/ai-ml/overview",
"v1.14.0/pt-BR/tools/ai-ml/dalletool",
"v1.14.0/pt-BR/tools/ai-ml/visiontool",
"v1.14.0/pt-BR/tools/ai-ml/aimindtool",
"v1.14.0/pt-BR/tools/ai-ml/llamaindextool",
"v1.14.0/pt-BR/tools/ai-ml/langchaintool",
"v1.14.0/pt-BR/tools/ai-ml/ragtool",
"v1.14.0/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.14.0/pt-BR/tools/cloud-storage/overview",
"v1.14.0/pt-BR/tools/cloud-storage/s3readertool",
"v1.14.0/pt-BR/tools/cloud-storage/s3writertool",
"v1.14.0/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.0/pt-BR/tools/integration/overview",
"v1.14.0/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.14.0/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.14.0/pt-BR/tools/automation/overview",
"v1.14.0/pt-BR/tools/automation/apifyactorstool",
"v1.14.0/pt-BR/tools/automation/composiotool",
"v1.14.0/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.14.0/pt-BR/observability/tracing",
"v1.14.0/pt-BR/observability/overview",
"v1.14.0/pt-BR/observability/arize-phoenix",
"v1.14.0/pt-BR/observability/braintrust",
"v1.14.0/pt-BR/observability/datadog",
"v1.14.0/pt-BR/observability/galileo",
"v1.14.0/pt-BR/observability/langdb",
"v1.14.0/pt-BR/observability/langfuse",
"v1.14.0/pt-BR/observability/langtrace",
"v1.14.0/pt-BR/observability/maxim",
"v1.14.0/pt-BR/observability/mlflow",
"v1.14.0/pt-BR/observability/openlit",
"v1.14.0/pt-BR/observability/opik",
"v1.14.0/pt-BR/observability/patronus-evaluation",
"v1.14.0/pt-BR/observability/portkey",
"v1.14.0/pt-BR/observability/weave",
"v1.14.0/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.14.0/pt-BR/learn/overview",
"v1.14.0/pt-BR/learn/llm-selection-guide",
"v1.14.0/pt-BR/learn/conditional-tasks",
"v1.14.0/pt-BR/learn/coding-agents",
"v1.14.0/pt-BR/learn/create-custom-tools",
"v1.14.0/pt-BR/learn/custom-llm",
"v1.14.0/pt-BR/learn/custom-manager-agent",
"v1.14.0/pt-BR/learn/customizing-agents",
"v1.14.0/pt-BR/learn/dalle-image-generation",
"v1.14.0/pt-BR/learn/force-tool-output-as-result",
"v1.14.0/pt-BR/learn/hierarchical-process",
"v1.14.0/pt-BR/learn/human-input-on-execution",
"v1.14.0/pt-BR/learn/human-in-the-loop",
"v1.14.0/pt-BR/learn/human-feedback-in-flows",
"v1.14.0/pt-BR/learn/kickoff-async",
"v1.14.0/pt-BR/learn/kickoff-for-each",
"v1.14.0/pt-BR/learn/llm-connections",
"v1.14.0/pt-BR/learn/multimodal-agents",
"v1.14.0/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.0/pt-BR/learn/sequential-process",
"v1.14.0/pt-BR/learn/using-annotations",
"v1.14.0/pt-BR/learn/execution-hooks",
"v1.14.0/pt-BR/learn/llm-hooks",
"v1.14.0/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.14.0/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.0/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.14.0/pt-BR/enterprise/features/automations",
"v1.14.0/pt-BR/enterprise/features/crew-studio",
"v1.14.0/pt-BR/enterprise/features/marketplace",
"v1.14.0/pt-BR/enterprise/features/agent-repositories",
"v1.14.0/pt-BR/enterprise/features/tools-and-integrations",
"v1.14.0/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.14.0/pt-BR/enterprise/features/traces",
"v1.14.0/pt-BR/enterprise/features/webhook-streaming",
"v1.14.0/pt-BR/enterprise/features/hallucination-guardrail",
"v1.14.0/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.14.0/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.14.0/pt-BR/enterprise/integrations/asana",
"v1.14.0/pt-BR/enterprise/integrations/box",
"v1.14.0/pt-BR/enterprise/integrations/clickup",
"v1.14.0/pt-BR/enterprise/integrations/github",
"v1.14.0/pt-BR/enterprise/integrations/gmail",
"v1.14.0/pt-BR/enterprise/integrations/google_calendar",
"v1.14.0/pt-BR/enterprise/integrations/google_contacts",
"v1.14.0/pt-BR/enterprise/integrations/google_docs",
"v1.14.0/pt-BR/enterprise/integrations/google_drive",
"v1.14.0/pt-BR/enterprise/integrations/google_sheets",
"v1.14.0/pt-BR/enterprise/integrations/google_slides",
"v1.14.0/pt-BR/enterprise/integrations/hubspot",
"v1.14.0/pt-BR/enterprise/integrations/jira",
"v1.14.0/pt-BR/enterprise/integrations/linear",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_excel",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_teams",
"v1.14.0/pt-BR/enterprise/integrations/microsoft_word",
"v1.14.0/pt-BR/enterprise/integrations/notion",
"v1.14.0/pt-BR/enterprise/integrations/salesforce",
"v1.14.0/pt-BR/enterprise/integrations/shopify",
"v1.14.0/pt-BR/enterprise/integrations/slack",
"v1.14.0/pt-BR/enterprise/integrations/stripe",
"v1.14.0/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.14.0/pt-BR/enterprise/guides/build-crew",
"v1.14.0/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.14.0/pt-BR/enterprise/guides/deploy-to-amp",
"v1.14.0/pt-BR/enterprise/guides/private-package-registry",
"v1.14.0/pt-BR/enterprise/guides/kickoff-crew",
"v1.14.0/pt-BR/enterprise/guides/training-crews",
"v1.14.0/pt-BR/enterprise/guides/update-crew",
"v1.14.0/pt-BR/enterprise/guides/enable-crew-studio",
"v1.14.0/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.14.0/pt-BR/enterprise/guides/azure-openai-setup",
"v1.14.0/pt-BR/enterprise/guides/tool-repository",
"v1.14.0/pt-BR/enterprise/guides/custom-mcp-server",
"v1.14.0/pt-BR/enterprise/guides/react-component-export",
"v1.14.0/pt-BR/enterprise/guides/team-management",
"v1.14.0/pt-BR/enterprise/guides/human-in-the-loop",
"v1.14.0/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.14.0/pt-BR/enterprise/guides/automation-triggers",
"v1.14.0/pt-BR/enterprise/guides/gmail-trigger",
"v1.14.0/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.14.0/pt-BR/enterprise/guides/google-drive-trigger",
"v1.14.0/pt-BR/enterprise/guides/outlook-trigger",
"v1.14.0/pt-BR/enterprise/guides/onedrive-trigger",
"v1.14.0/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.14.0/pt-BR/enterprise/guides/slack-trigger",
"v1.14.0/pt-BR/enterprise/guides/hubspot-trigger",
"v1.14.0/pt-BR/enterprise/guides/salesforce-trigger",
"v1.14.0/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.14.0/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.14.0/pt-BR/api-reference/introduction",
"v1.14.0/pt-BR/api-reference/inputs",
"v1.14.0/pt-BR/api-reference/kickoff",
"v1.14.0/pt-BR/api-reference/resume",
"v1.14.0/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.14.0/pt-BR/examples/example",
"v1.14.0/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.14.0/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.13.0",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.13.0/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.13.0/pt-BR/introduction",
"v1.13.0/pt-BR/installation",
"v1.13.0/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.13.0/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.13.0/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.13.0/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.13.0/pt-BR/guides/flows/first-flow",
"v1.13.0/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.13.0/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.13.0/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.13.0/pt-BR/guides/advanced/customizing-prompts",
"v1.13.0/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.13.0/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.13.0/pt-BR/concepts/agents",
"v1.13.0/pt-BR/concepts/agent-capabilities",
"v1.13.0/pt-BR/concepts/tasks",
"v1.13.0/pt-BR/concepts/crews",
"v1.13.0/pt-BR/concepts/flows",
"v1.13.0/pt-BR/concepts/production-architecture",
"v1.13.0/pt-BR/concepts/knowledge",
"v1.13.0/pt-BR/concepts/skills",
"v1.13.0/pt-BR/concepts/llms",
"v1.13.0/pt-BR/concepts/files",
"v1.13.0/pt-BR/concepts/processes",
"v1.13.0/pt-BR/concepts/collaboration",
"v1.13.0/pt-BR/concepts/training",
"v1.13.0/pt-BR/concepts/memory",
"v1.13.0/pt-BR/concepts/reasoning",
"v1.13.0/pt-BR/concepts/planning",
"v1.13.0/pt-BR/concepts/testing",
"v1.13.0/pt-BR/concepts/cli",
"v1.13.0/pt-BR/concepts/tools",
"v1.13.0/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.13.0/pt-BR/mcp/overview",
"v1.13.0/pt-BR/mcp/dsl-integration",
"v1.13.0/pt-BR/mcp/stdio",
"v1.13.0/pt-BR/mcp/sse",
"v1.13.0/pt-BR/mcp/streamable-http",
"v1.13.0/pt-BR/mcp/multiple-servers",
"v1.13.0/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.13.0/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.13.0/pt-BR/tools/file-document/overview",
"v1.13.0/pt-BR/tools/file-document/filereadtool",
"v1.13.0/pt-BR/tools/file-document/filewritetool",
"v1.13.0/pt-BR/tools/file-document/pdfsearchtool",
"v1.13.0/pt-BR/tools/file-document/docxsearchtool",
"v1.13.0/pt-BR/tools/file-document/mdxsearchtool",
"v1.13.0/pt-BR/tools/file-document/xmlsearchtool",
"v1.13.0/pt-BR/tools/file-document/txtsearchtool",
"v1.13.0/pt-BR/tools/file-document/jsonsearchtool",
"v1.13.0/pt-BR/tools/file-document/csvsearchtool",
"v1.13.0/pt-BR/tools/file-document/directorysearchtool",
"v1.13.0/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.13.0/pt-BR/tools/web-scraping/overview",
"v1.13.0/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.13.0/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.13.0/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.13.0/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.13.0/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.13.0/pt-BR/tools/web-scraping/spidertool",
"v1.13.0/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.13.0/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.13.0/pt-BR/tools/web-scraping/stagehandtool",
"v1.13.0/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.13.0/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.13.0/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.13.0/pt-BR/tools/search-research/overview",
"v1.13.0/pt-BR/tools/search-research/serperdevtool",
"v1.13.0/pt-BR/tools/search-research/bravesearchtool",
"v1.13.0/pt-BR/tools/search-research/exasearchtool",
"v1.13.0/pt-BR/tools/search-research/linkupsearchtool",
"v1.13.0/pt-BR/tools/search-research/githubsearchtool",
"v1.13.0/pt-BR/tools/search-research/websitesearchtool",
"v1.13.0/pt-BR/tools/search-research/codedocssearchtool",
"v1.13.0/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.13.0/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.13.0/pt-BR/tools/database-data/overview",
"v1.13.0/pt-BR/tools/database-data/mysqltool",
"v1.13.0/pt-BR/tools/database-data/pgsearchtool",
"v1.13.0/pt-BR/tools/database-data/snowflakesearchtool",
"v1.13.0/pt-BR/tools/database-data/nl2sqltool",
"v1.13.0/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.13.0/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.13.0/pt-BR/tools/ai-ml/overview",
"v1.13.0/pt-BR/tools/ai-ml/dalletool",
"v1.13.0/pt-BR/tools/ai-ml/visiontool",
"v1.13.0/pt-BR/tools/ai-ml/aimindtool",
"v1.13.0/pt-BR/tools/ai-ml/llamaindextool",
"v1.13.0/pt-BR/tools/ai-ml/langchaintool",
"v1.13.0/pt-BR/tools/ai-ml/ragtool",
"v1.13.0/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.13.0/pt-BR/tools/cloud-storage/overview",
"v1.13.0/pt-BR/tools/cloud-storage/s3readertool",
"v1.13.0/pt-BR/tools/cloud-storage/s3writertool",
"v1.13.0/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.13.0/pt-BR/tools/integration/overview",
"v1.13.0/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.13.0/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.13.0/pt-BR/tools/automation/overview",
"v1.13.0/pt-BR/tools/automation/apifyactorstool",
"v1.13.0/pt-BR/tools/automation/composiotool",
"v1.13.0/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.13.0/pt-BR/observability/tracing",
"v1.13.0/pt-BR/observability/overview",
"v1.13.0/pt-BR/observability/arize-phoenix",
"v1.13.0/pt-BR/observability/braintrust",
"v1.13.0/pt-BR/observability/datadog",
"v1.13.0/pt-BR/observability/galileo",
"v1.13.0/pt-BR/observability/langdb",
"v1.13.0/pt-BR/observability/langfuse",
"v1.13.0/pt-BR/observability/langtrace",
"v1.13.0/pt-BR/observability/maxim",
"v1.13.0/pt-BR/observability/mlflow",
"v1.13.0/pt-BR/observability/openlit",
"v1.13.0/pt-BR/observability/opik",
"v1.13.0/pt-BR/observability/patronus-evaluation",
"v1.13.0/pt-BR/observability/portkey",
"v1.13.0/pt-BR/observability/weave",
"v1.13.0/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.13.0/pt-BR/learn/overview",
"v1.13.0/pt-BR/learn/llm-selection-guide",
"v1.13.0/pt-BR/learn/conditional-tasks",
"v1.13.0/pt-BR/learn/coding-agents",
"v1.13.0/pt-BR/learn/create-custom-tools",
"v1.13.0/pt-BR/learn/custom-llm",
"v1.13.0/pt-BR/learn/custom-manager-agent",
"v1.13.0/pt-BR/learn/customizing-agents",
"v1.13.0/pt-BR/learn/dalle-image-generation",
"v1.13.0/pt-BR/learn/force-tool-output-as-result",
"v1.13.0/pt-BR/learn/hierarchical-process",
"v1.13.0/pt-BR/learn/human-input-on-execution",
"v1.13.0/pt-BR/learn/human-in-the-loop",
"v1.13.0/pt-BR/learn/human-feedback-in-flows",
"v1.13.0/pt-BR/learn/kickoff-async",
"v1.13.0/pt-BR/learn/kickoff-for-each",
"v1.13.0/pt-BR/learn/llm-connections",
"v1.13.0/pt-BR/learn/multimodal-agents",
"v1.13.0/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.13.0/pt-BR/learn/sequential-process",
"v1.13.0/pt-BR/learn/using-annotations",
"v1.13.0/pt-BR/learn/execution-hooks",
"v1.13.0/pt-BR/learn/llm-hooks",
"v1.13.0/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.13.0/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.13.0/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.13.0/pt-BR/enterprise/features/automations",
"v1.13.0/pt-BR/enterprise/features/crew-studio",
"v1.13.0/pt-BR/enterprise/features/marketplace",
"v1.13.0/pt-BR/enterprise/features/agent-repositories",
"v1.13.0/pt-BR/enterprise/features/tools-and-integrations",
"v1.13.0/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.13.0/pt-BR/enterprise/features/traces",
"v1.13.0/pt-BR/enterprise/features/webhook-streaming",
"v1.13.0/pt-BR/enterprise/features/hallucination-guardrail",
"v1.13.0/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.13.0/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.13.0/pt-BR/enterprise/integrations/asana",
"v1.13.0/pt-BR/enterprise/integrations/box",
"v1.13.0/pt-BR/enterprise/integrations/clickup",
"v1.13.0/pt-BR/enterprise/integrations/github",
"v1.13.0/pt-BR/enterprise/integrations/gmail",
"v1.13.0/pt-BR/enterprise/integrations/google_calendar",
"v1.13.0/pt-BR/enterprise/integrations/google_contacts",
"v1.13.0/pt-BR/enterprise/integrations/google_docs",
"v1.13.0/pt-BR/enterprise/integrations/google_drive",
"v1.13.0/pt-BR/enterprise/integrations/google_sheets",
"v1.13.0/pt-BR/enterprise/integrations/google_slides",
"v1.13.0/pt-BR/enterprise/integrations/hubspot",
"v1.13.0/pt-BR/enterprise/integrations/jira",
"v1.13.0/pt-BR/enterprise/integrations/linear",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_excel",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_teams",
"v1.13.0/pt-BR/enterprise/integrations/microsoft_word",
"v1.13.0/pt-BR/enterprise/integrations/notion",
"v1.13.0/pt-BR/enterprise/integrations/salesforce",
"v1.13.0/pt-BR/enterprise/integrations/shopify",
"v1.13.0/pt-BR/enterprise/integrations/slack",
"v1.13.0/pt-BR/enterprise/integrations/stripe",
"v1.13.0/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.13.0/pt-BR/enterprise/guides/build-crew",
"v1.13.0/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.13.0/pt-BR/enterprise/guides/deploy-to-amp",
"v1.13.0/pt-BR/enterprise/guides/private-package-registry",
"v1.13.0/pt-BR/enterprise/guides/kickoff-crew",
"v1.13.0/pt-BR/enterprise/guides/update-crew",
"v1.13.0/pt-BR/enterprise/guides/enable-crew-studio",
"v1.13.0/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.13.0/pt-BR/enterprise/guides/azure-openai-setup",
"v1.13.0/pt-BR/enterprise/guides/tool-repository",
"v1.13.0/pt-BR/enterprise/guides/custom-mcp-server",
"v1.13.0/pt-BR/enterprise/guides/react-component-export",
"v1.13.0/pt-BR/enterprise/guides/team-management",
"v1.13.0/pt-BR/enterprise/guides/human-in-the-loop",
"v1.13.0/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.13.0/pt-BR/enterprise/guides/automation-triggers",
"v1.13.0/pt-BR/enterprise/guides/gmail-trigger",
"v1.13.0/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.13.0/pt-BR/enterprise/guides/google-drive-trigger",
"v1.13.0/pt-BR/enterprise/guides/outlook-trigger",
"v1.13.0/pt-BR/enterprise/guides/onedrive-trigger",
"v1.13.0/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.13.0/pt-BR/enterprise/guides/slack-trigger",
"v1.13.0/pt-BR/enterprise/guides/hubspot-trigger",
"v1.13.0/pt-BR/enterprise/guides/salesforce-trigger",
"v1.13.0/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.13.0/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.13.0/pt-BR/api-reference/introduction",
"v1.13.0/pt-BR/api-reference/inputs",
"v1.13.0/pt-BR/api-reference/kickoff",
"v1.13.0/pt-BR/api-reference/resume",
"v1.13.0/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.13.0/pt-BR/examples/example",
"v1.13.0/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.13.0/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.12.2",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.12.2/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.2/pt-BR/introduction",
"v1.12.2/pt-BR/installation",
"v1.12.2/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.12.2/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.12.2/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.2/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.2/pt-BR/guides/flows/first-flow",
"v1.12.2/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.12.2/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.12.2/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.12.2/pt-BR/guides/advanced/customizing-prompts",
"v1.12.2/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.12.2/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.12.2/pt-BR/concepts/agents",
"v1.12.2/pt-BR/concepts/tasks",
"v1.12.2/pt-BR/concepts/crews",
"v1.12.2/pt-BR/concepts/flows",
"v1.12.2/pt-BR/concepts/production-architecture",
"v1.12.2/pt-BR/concepts/knowledge",
"v1.12.2/pt-BR/concepts/skills",
"v1.12.2/pt-BR/concepts/llms",
"v1.12.2/pt-BR/concepts/files",
"v1.12.2/pt-BR/concepts/processes",
"v1.12.2/pt-BR/concepts/collaboration",
"v1.12.2/pt-BR/concepts/training",
"v1.12.2/pt-BR/concepts/memory",
"v1.12.2/pt-BR/concepts/reasoning",
"v1.12.2/pt-BR/concepts/planning",
"v1.12.2/pt-BR/concepts/testing",
"v1.12.2/pt-BR/concepts/cli",
"v1.12.2/pt-BR/concepts/tools",
"v1.12.2/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.12.2/pt-BR/mcp/overview",
"v1.12.2/pt-BR/mcp/dsl-integration",
"v1.12.2/pt-BR/mcp/stdio",
"v1.12.2/pt-BR/mcp/sse",
"v1.12.2/pt-BR/mcp/streamable-http",
"v1.12.2/pt-BR/mcp/multiple-servers",
"v1.12.2/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.12.2/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.12.2/pt-BR/tools/file-document/overview",
"v1.12.2/pt-BR/tools/file-document/filereadtool",
"v1.12.2/pt-BR/tools/file-document/filewritetool",
"v1.12.2/pt-BR/tools/file-document/pdfsearchtool",
"v1.12.2/pt-BR/tools/file-document/docxsearchtool",
"v1.12.2/pt-BR/tools/file-document/mdxsearchtool",
"v1.12.2/pt-BR/tools/file-document/xmlsearchtool",
"v1.12.2/pt-BR/tools/file-document/txtsearchtool",
"v1.12.2/pt-BR/tools/file-document/jsonsearchtool",
"v1.12.2/pt-BR/tools/file-document/csvsearchtool",
"v1.12.2/pt-BR/tools/file-document/directorysearchtool",
"v1.12.2/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.12.2/pt-BR/tools/web-scraping/overview",
"v1.12.2/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.12.2/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.2/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.12.2/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.12.2/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.12.2/pt-BR/tools/web-scraping/spidertool",
"v1.12.2/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.12.2/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.12.2/pt-BR/tools/web-scraping/stagehandtool",
"v1.12.2/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.2/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.2/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.12.2/pt-BR/tools/search-research/overview",
"v1.12.2/pt-BR/tools/search-research/serperdevtool",
"v1.12.2/pt-BR/tools/search-research/bravesearchtool",
"v1.12.2/pt-BR/tools/search-research/exasearchtool",
"v1.12.2/pt-BR/tools/search-research/linkupsearchtool",
"v1.12.2/pt-BR/tools/search-research/githubsearchtool",
"v1.12.2/pt-BR/tools/search-research/websitesearchtool",
"v1.12.2/pt-BR/tools/search-research/codedocssearchtool",
"v1.12.2/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.12.2/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.12.2/pt-BR/tools/database-data/overview",
"v1.12.2/pt-BR/tools/database-data/mysqltool",
"v1.12.2/pt-BR/tools/database-data/pgsearchtool",
"v1.12.2/pt-BR/tools/database-data/snowflakesearchtool",
"v1.12.2/pt-BR/tools/database-data/nl2sqltool",
"v1.12.2/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.12.2/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.2/pt-BR/tools/ai-ml/overview",
"v1.12.2/pt-BR/tools/ai-ml/dalletool",
"v1.12.2/pt-BR/tools/ai-ml/visiontool",
"v1.12.2/pt-BR/tools/ai-ml/aimindtool",
"v1.12.2/pt-BR/tools/ai-ml/llamaindextool",
"v1.12.2/pt-BR/tools/ai-ml/langchaintool",
"v1.12.2/pt-BR/tools/ai-ml/ragtool",
"v1.12.2/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.12.2/pt-BR/tools/cloud-storage/overview",
"v1.12.2/pt-BR/tools/cloud-storage/s3readertool",
"v1.12.2/pt-BR/tools/cloud-storage/s3writertool",
"v1.12.2/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.2/pt-BR/tools/integration/overview",
"v1.12.2/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.12.2/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.12.2/pt-BR/tools/automation/overview",
"v1.12.2/pt-BR/tools/automation/apifyactorstool",
"v1.12.2/pt-BR/tools/automation/composiotool",
"v1.12.2/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.12.2/pt-BR/observability/tracing",
"v1.12.2/pt-BR/observability/overview",
"v1.12.2/pt-BR/observability/arize-phoenix",
"v1.12.2/pt-BR/observability/braintrust",
"v1.12.2/pt-BR/observability/datadog",
"v1.12.2/pt-BR/observability/galileo",
"v1.12.2/pt-BR/observability/langdb",
"v1.12.2/pt-BR/observability/langfuse",
"v1.12.2/pt-BR/observability/langtrace",
"v1.12.2/pt-BR/observability/maxim",
"v1.12.2/pt-BR/observability/mlflow",
"v1.12.2/pt-BR/observability/openlit",
"v1.12.2/pt-BR/observability/opik",
"v1.12.2/pt-BR/observability/patronus-evaluation",
"v1.12.2/pt-BR/observability/portkey",
"v1.12.2/pt-BR/observability/weave",
"v1.12.2/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.12.2/pt-BR/learn/overview",
"v1.12.2/pt-BR/learn/llm-selection-guide",
"v1.12.2/pt-BR/learn/conditional-tasks",
"v1.12.2/pt-BR/learn/coding-agents",
"v1.12.2/pt-BR/learn/create-custom-tools",
"v1.12.2/pt-BR/learn/custom-llm",
"v1.12.2/pt-BR/learn/custom-manager-agent",
"v1.12.2/pt-BR/learn/customizing-agents",
"v1.12.2/pt-BR/learn/dalle-image-generation",
"v1.12.2/pt-BR/learn/force-tool-output-as-result",
"v1.12.2/pt-BR/learn/hierarchical-process",
"v1.12.2/pt-BR/learn/human-input-on-execution",
"v1.12.2/pt-BR/learn/human-in-the-loop",
"v1.12.2/pt-BR/learn/human-feedback-in-flows",
"v1.12.2/pt-BR/learn/kickoff-async",
"v1.12.2/pt-BR/learn/kickoff-for-each",
"v1.12.2/pt-BR/learn/llm-connections",
"v1.12.2/pt-BR/learn/multimodal-agents",
"v1.12.2/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.2/pt-BR/learn/sequential-process",
"v1.12.2/pt-BR/learn/using-annotations",
"v1.12.2/pt-BR/learn/execution-hooks",
"v1.12.2/pt-BR/learn/llm-hooks",
"v1.12.2/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.12.2/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.2/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.12.2/pt-BR/enterprise/features/automations",
"v1.12.2/pt-BR/enterprise/features/crew-studio",
"v1.12.2/pt-BR/enterprise/features/marketplace",
"v1.12.2/pt-BR/enterprise/features/agent-repositories",
"v1.12.2/pt-BR/enterprise/features/tools-and-integrations",
"v1.12.2/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.12.2/pt-BR/enterprise/features/traces",
"v1.12.2/pt-BR/enterprise/features/webhook-streaming",
"v1.12.2/pt-BR/enterprise/features/hallucination-guardrail",
"v1.12.2/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.12.2/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.12.2/pt-BR/enterprise/integrations/asana",
"v1.12.2/pt-BR/enterprise/integrations/box",
"v1.12.2/pt-BR/enterprise/integrations/clickup",
"v1.12.2/pt-BR/enterprise/integrations/github",
"v1.12.2/pt-BR/enterprise/integrations/gmail",
"v1.12.2/pt-BR/enterprise/integrations/google_calendar",
"v1.12.2/pt-BR/enterprise/integrations/google_contacts",
"v1.12.2/pt-BR/enterprise/integrations/google_docs",
"v1.12.2/pt-BR/enterprise/integrations/google_drive",
"v1.12.2/pt-BR/enterprise/integrations/google_sheets",
"v1.12.2/pt-BR/enterprise/integrations/google_slides",
"v1.12.2/pt-BR/enterprise/integrations/hubspot",
"v1.12.2/pt-BR/enterprise/integrations/jira",
"v1.12.2/pt-BR/enterprise/integrations/linear",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_excel",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_teams",
"v1.12.2/pt-BR/enterprise/integrations/microsoft_word",
"v1.12.2/pt-BR/enterprise/integrations/notion",
"v1.12.2/pt-BR/enterprise/integrations/salesforce",
"v1.12.2/pt-BR/enterprise/integrations/shopify",
"v1.12.2/pt-BR/enterprise/integrations/slack",
"v1.12.2/pt-BR/enterprise/integrations/stripe",
"v1.12.2/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.12.2/pt-BR/enterprise/guides/build-crew",
"v1.12.2/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.12.2/pt-BR/enterprise/guides/deploy-to-amp",
"v1.12.2/pt-BR/enterprise/guides/private-package-registry",
"v1.12.2/pt-BR/enterprise/guides/kickoff-crew",
"v1.12.2/pt-BR/enterprise/guides/update-crew",
"v1.12.2/pt-BR/enterprise/guides/enable-crew-studio",
"v1.12.2/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.12.2/pt-BR/enterprise/guides/azure-openai-setup",
"v1.12.2/pt-BR/enterprise/guides/tool-repository",
"v1.12.2/pt-BR/enterprise/guides/custom-mcp-server",
"v1.12.2/pt-BR/enterprise/guides/react-component-export",
"v1.12.2/pt-BR/enterprise/guides/team-management",
"v1.12.2/pt-BR/enterprise/guides/human-in-the-loop",
"v1.12.2/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.2/pt-BR/enterprise/guides/automation-triggers",
"v1.12.2/pt-BR/enterprise/guides/gmail-trigger",
"v1.12.2/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.12.2/pt-BR/enterprise/guides/google-drive-trigger",
"v1.12.2/pt-BR/enterprise/guides/outlook-trigger",
"v1.12.2/pt-BR/enterprise/guides/onedrive-trigger",
"v1.12.2/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.12.2/pt-BR/enterprise/guides/slack-trigger",
"v1.12.2/pt-BR/enterprise/guides/hubspot-trigger",
"v1.12.2/pt-BR/enterprise/guides/salesforce-trigger",
"v1.12.2/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.12.2/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.2/pt-BR/api-reference/introduction",
"v1.12.2/pt-BR/api-reference/inputs",
"v1.12.2/pt-BR/api-reference/kickoff",
"v1.12.2/pt-BR/api-reference/resume",
"v1.12.2/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.12.2/pt-BR/examples/example",
"v1.12.2/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.12.2/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.12.1",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.12.1/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.1/pt-BR/introduction",
"v1.12.1/pt-BR/installation",
"v1.12.1/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.12.1/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.12.1/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.1/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.1/pt-BR/guides/flows/first-flow",
"v1.12.1/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.12.1/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.12.1/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.12.1/pt-BR/guides/advanced/customizing-prompts",
"v1.12.1/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.12.1/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.12.1/pt-BR/concepts/agents",
"v1.12.1/pt-BR/concepts/tasks",
"v1.12.1/pt-BR/concepts/crews",
"v1.12.1/pt-BR/concepts/flows",
"v1.12.1/pt-BR/concepts/production-architecture",
"v1.12.1/pt-BR/concepts/knowledge",
"v1.12.1/pt-BR/concepts/skills",
"v1.12.1/pt-BR/concepts/llms",
"v1.12.1/pt-BR/concepts/files",
"v1.12.1/pt-BR/concepts/processes",
"v1.12.1/pt-BR/concepts/collaboration",
"v1.12.1/pt-BR/concepts/training",
"v1.12.1/pt-BR/concepts/memory",
"v1.12.1/pt-BR/concepts/reasoning",
"v1.12.1/pt-BR/concepts/planning",
"v1.12.1/pt-BR/concepts/testing",
"v1.12.1/pt-BR/concepts/cli",
"v1.12.1/pt-BR/concepts/tools",
"v1.12.1/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.12.1/pt-BR/mcp/overview",
"v1.12.1/pt-BR/mcp/dsl-integration",
"v1.12.1/pt-BR/mcp/stdio",
"v1.12.1/pt-BR/mcp/sse",
"v1.12.1/pt-BR/mcp/streamable-http",
"v1.12.1/pt-BR/mcp/multiple-servers",
"v1.12.1/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.12.1/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.12.1/pt-BR/tools/file-document/overview",
"v1.12.1/pt-BR/tools/file-document/filereadtool",
"v1.12.1/pt-BR/tools/file-document/filewritetool",
"v1.12.1/pt-BR/tools/file-document/pdfsearchtool",
"v1.12.1/pt-BR/tools/file-document/docxsearchtool",
"v1.12.1/pt-BR/tools/file-document/mdxsearchtool",
"v1.12.1/pt-BR/tools/file-document/xmlsearchtool",
"v1.12.1/pt-BR/tools/file-document/txtsearchtool",
"v1.12.1/pt-BR/tools/file-document/jsonsearchtool",
"v1.12.1/pt-BR/tools/file-document/csvsearchtool",
"v1.12.1/pt-BR/tools/file-document/directorysearchtool",
"v1.12.1/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.12.1/pt-BR/tools/web-scraping/overview",
"v1.12.1/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.12.1/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.1/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.12.1/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.12.1/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.12.1/pt-BR/tools/web-scraping/spidertool",
"v1.12.1/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.12.1/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.12.1/pt-BR/tools/web-scraping/stagehandtool",
"v1.12.1/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.1/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.1/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.12.1/pt-BR/tools/search-research/overview",
"v1.12.1/pt-BR/tools/search-research/serperdevtool",
"v1.12.1/pt-BR/tools/search-research/bravesearchtool",
"v1.12.1/pt-BR/tools/search-research/exasearchtool",
"v1.12.1/pt-BR/tools/search-research/linkupsearchtool",
"v1.12.1/pt-BR/tools/search-research/githubsearchtool",
"v1.12.1/pt-BR/tools/search-research/websitesearchtool",
"v1.12.1/pt-BR/tools/search-research/codedocssearchtool",
"v1.12.1/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.12.1/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.12.1/pt-BR/tools/database-data/overview",
"v1.12.1/pt-BR/tools/database-data/mysqltool",
"v1.12.1/pt-BR/tools/database-data/pgsearchtool",
"v1.12.1/pt-BR/tools/database-data/snowflakesearchtool",
"v1.12.1/pt-BR/tools/database-data/nl2sqltool",
"v1.12.1/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.12.1/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.1/pt-BR/tools/ai-ml/overview",
"v1.12.1/pt-BR/tools/ai-ml/dalletool",
"v1.12.1/pt-BR/tools/ai-ml/visiontool",
"v1.12.1/pt-BR/tools/ai-ml/aimindtool",
"v1.12.1/pt-BR/tools/ai-ml/llamaindextool",
"v1.12.1/pt-BR/tools/ai-ml/langchaintool",
"v1.12.1/pt-BR/tools/ai-ml/ragtool",
"v1.12.1/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.12.1/pt-BR/tools/cloud-storage/overview",
"v1.12.1/pt-BR/tools/cloud-storage/s3readertool",
"v1.12.1/pt-BR/tools/cloud-storage/s3writertool",
"v1.12.1/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.1/pt-BR/tools/integration/overview",
"v1.12.1/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.12.1/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.12.1/pt-BR/tools/automation/overview",
"v1.12.1/pt-BR/tools/automation/apifyactorstool",
"v1.12.1/pt-BR/tools/automation/composiotool",
"v1.12.1/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.12.1/pt-BR/observability/tracing",
"v1.12.1/pt-BR/observability/overview",
"v1.12.1/pt-BR/observability/arize-phoenix",
"v1.12.1/pt-BR/observability/braintrust",
"v1.12.1/pt-BR/observability/datadog",
"v1.12.1/pt-BR/observability/galileo",
"v1.12.1/pt-BR/observability/langdb",
"v1.12.1/pt-BR/observability/langfuse",
"v1.12.1/pt-BR/observability/langtrace",
"v1.12.1/pt-BR/observability/maxim",
"v1.12.1/pt-BR/observability/mlflow",
"v1.12.1/pt-BR/observability/openlit",
"v1.12.1/pt-BR/observability/opik",
"v1.12.1/pt-BR/observability/patronus-evaluation",
"v1.12.1/pt-BR/observability/portkey",
"v1.12.1/pt-BR/observability/weave",
"v1.12.1/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.12.1/pt-BR/learn/overview",
"v1.12.1/pt-BR/learn/llm-selection-guide",
"v1.12.1/pt-BR/learn/conditional-tasks",
"v1.12.1/pt-BR/learn/coding-agents",
"v1.12.1/pt-BR/learn/create-custom-tools",
"v1.12.1/pt-BR/learn/custom-llm",
"v1.12.1/pt-BR/learn/custom-manager-agent",
"v1.12.1/pt-BR/learn/customizing-agents",
"v1.12.1/pt-BR/learn/dalle-image-generation",
"v1.12.1/pt-BR/learn/force-tool-output-as-result",
"v1.12.1/pt-BR/learn/hierarchical-process",
"v1.12.1/pt-BR/learn/human-input-on-execution",
"v1.12.1/pt-BR/learn/human-in-the-loop",
"v1.12.1/pt-BR/learn/human-feedback-in-flows",
"v1.12.1/pt-BR/learn/kickoff-async",
"v1.12.1/pt-BR/learn/kickoff-for-each",
"v1.12.1/pt-BR/learn/llm-connections",
"v1.12.1/pt-BR/learn/multimodal-agents",
"v1.12.1/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.1/pt-BR/learn/sequential-process",
"v1.12.1/pt-BR/learn/using-annotations",
"v1.12.1/pt-BR/learn/execution-hooks",
"v1.12.1/pt-BR/learn/llm-hooks",
"v1.12.1/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.12.1/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.1/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.12.1/pt-BR/enterprise/features/automations",
"v1.12.1/pt-BR/enterprise/features/crew-studio",
"v1.12.1/pt-BR/enterprise/features/marketplace",
"v1.12.1/pt-BR/enterprise/features/agent-repositories",
"v1.12.1/pt-BR/enterprise/features/tools-and-integrations",
"v1.12.1/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.12.1/pt-BR/enterprise/features/traces",
"v1.12.1/pt-BR/enterprise/features/webhook-streaming",
"v1.12.1/pt-BR/enterprise/features/hallucination-guardrail",
"v1.12.1/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.12.1/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.12.1/pt-BR/enterprise/integrations/asana",
"v1.12.1/pt-BR/enterprise/integrations/box",
"v1.12.1/pt-BR/enterprise/integrations/clickup",
"v1.12.1/pt-BR/enterprise/integrations/github",
"v1.12.1/pt-BR/enterprise/integrations/gmail",
"v1.12.1/pt-BR/enterprise/integrations/google_calendar",
"v1.12.1/pt-BR/enterprise/integrations/google_contacts",
"v1.12.1/pt-BR/enterprise/integrations/google_docs",
"v1.12.1/pt-BR/enterprise/integrations/google_drive",
"v1.12.1/pt-BR/enterprise/integrations/google_sheets",
"v1.12.1/pt-BR/enterprise/integrations/google_slides",
"v1.12.1/pt-BR/enterprise/integrations/hubspot",
"v1.12.1/pt-BR/enterprise/integrations/jira",
"v1.12.1/pt-BR/enterprise/integrations/linear",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_excel",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_teams",
"v1.12.1/pt-BR/enterprise/integrations/microsoft_word",
"v1.12.1/pt-BR/enterprise/integrations/notion",
"v1.12.1/pt-BR/enterprise/integrations/salesforce",
"v1.12.1/pt-BR/enterprise/integrations/shopify",
"v1.12.1/pt-BR/enterprise/integrations/slack",
"v1.12.1/pt-BR/enterprise/integrations/stripe",
"v1.12.1/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.12.1/pt-BR/enterprise/guides/build-crew",
"v1.12.1/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.12.1/pt-BR/enterprise/guides/deploy-to-amp",
"v1.12.1/pt-BR/enterprise/guides/private-package-registry",
"v1.12.1/pt-BR/enterprise/guides/kickoff-crew",
"v1.12.1/pt-BR/enterprise/guides/update-crew",
"v1.12.1/pt-BR/enterprise/guides/enable-crew-studio",
"v1.12.1/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.12.1/pt-BR/enterprise/guides/azure-openai-setup",
"v1.12.1/pt-BR/enterprise/guides/tool-repository",
"v1.12.1/pt-BR/enterprise/guides/custom-mcp-server",
"v1.12.1/pt-BR/enterprise/guides/react-component-export",
"v1.12.1/pt-BR/enterprise/guides/team-management",
"v1.12.1/pt-BR/enterprise/guides/human-in-the-loop",
"v1.12.1/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.1/pt-BR/enterprise/guides/automation-triggers",
"v1.12.1/pt-BR/enterprise/guides/gmail-trigger",
"v1.12.1/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.12.1/pt-BR/enterprise/guides/google-drive-trigger",
"v1.12.1/pt-BR/enterprise/guides/outlook-trigger",
"v1.12.1/pt-BR/enterprise/guides/onedrive-trigger",
"v1.12.1/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.12.1/pt-BR/enterprise/guides/slack-trigger",
"v1.12.1/pt-BR/enterprise/guides/hubspot-trigger",
"v1.12.1/pt-BR/enterprise/guides/salesforce-trigger",
"v1.12.1/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.12.1/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.1/pt-BR/api-reference/introduction",
"v1.12.1/pt-BR/api-reference/inputs",
"v1.12.1/pt-BR/api-reference/kickoff",
"v1.12.1/pt-BR/api-reference/resume",
"v1.12.1/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.12.1/pt-BR/examples/example",
"v1.12.1/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.12.1/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.12.0",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.12.0/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.0/pt-BR/introduction",
"v1.12.0/pt-BR/installation",
"v1.12.0/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.12.0/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.12.0/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.12.0/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.12.0/pt-BR/guides/flows/first-flow",
"v1.12.0/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.12.0/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.12.0/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.12.0/pt-BR/guides/advanced/customizing-prompts",
"v1.12.0/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.12.0/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.12.0/pt-BR/concepts/agents",
"v1.12.0/pt-BR/concepts/tasks",
"v1.12.0/pt-BR/concepts/crews",
"v1.12.0/pt-BR/concepts/flows",
"v1.12.0/pt-BR/concepts/production-architecture",
"v1.12.0/pt-BR/concepts/knowledge",
"v1.12.0/pt-BR/concepts/skills",
"v1.12.0/pt-BR/concepts/llms",
"v1.12.0/pt-BR/concepts/files",
"v1.12.0/pt-BR/concepts/processes",
"v1.12.0/pt-BR/concepts/collaboration",
"v1.12.0/pt-BR/concepts/training",
"v1.12.0/pt-BR/concepts/memory",
"v1.12.0/pt-BR/concepts/reasoning",
"v1.12.0/pt-BR/concepts/planning",
"v1.12.0/pt-BR/concepts/testing",
"v1.12.0/pt-BR/concepts/cli",
"v1.12.0/pt-BR/concepts/tools",
"v1.12.0/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.12.0/pt-BR/mcp/overview",
"v1.12.0/pt-BR/mcp/dsl-integration",
"v1.12.0/pt-BR/mcp/stdio",
"v1.12.0/pt-BR/mcp/sse",
"v1.12.0/pt-BR/mcp/streamable-http",
"v1.12.0/pt-BR/mcp/multiple-servers",
"v1.12.0/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.12.0/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.12.0/pt-BR/tools/file-document/overview",
"v1.12.0/pt-BR/tools/file-document/filereadtool",
"v1.12.0/pt-BR/tools/file-document/filewritetool",
"v1.12.0/pt-BR/tools/file-document/pdfsearchtool",
"v1.12.0/pt-BR/tools/file-document/docxsearchtool",
"v1.12.0/pt-BR/tools/file-document/mdxsearchtool",
"v1.12.0/pt-BR/tools/file-document/xmlsearchtool",
"v1.12.0/pt-BR/tools/file-document/txtsearchtool",
"v1.12.0/pt-BR/tools/file-document/jsonsearchtool",
"v1.12.0/pt-BR/tools/file-document/csvsearchtool",
"v1.12.0/pt-BR/tools/file-document/directorysearchtool",
"v1.12.0/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.12.0/pt-BR/tools/web-scraping/overview",
"v1.12.0/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.12.0/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.0/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.12.0/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.12.0/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.12.0/pt-BR/tools/web-scraping/spidertool",
"v1.12.0/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.12.0/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.12.0/pt-BR/tools/web-scraping/stagehandtool",
"v1.12.0/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.0/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.0/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.12.0/pt-BR/tools/search-research/overview",
"v1.12.0/pt-BR/tools/search-research/serperdevtool",
"v1.12.0/pt-BR/tools/search-research/bravesearchtool",
"v1.12.0/pt-BR/tools/search-research/exasearchtool",
"v1.12.0/pt-BR/tools/search-research/linkupsearchtool",
"v1.12.0/pt-BR/tools/search-research/githubsearchtool",
"v1.12.0/pt-BR/tools/search-research/websitesearchtool",
"v1.12.0/pt-BR/tools/search-research/codedocssearchtool",
"v1.12.0/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.12.0/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.12.0/pt-BR/tools/database-data/overview",
"v1.12.0/pt-BR/tools/database-data/mysqltool",
"v1.12.0/pt-BR/tools/database-data/pgsearchtool",
"v1.12.0/pt-BR/tools/database-data/snowflakesearchtool",
"v1.12.0/pt-BR/tools/database-data/nl2sqltool",
"v1.12.0/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.12.0/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.12.0/pt-BR/tools/ai-ml/overview",
"v1.12.0/pt-BR/tools/ai-ml/dalletool",
"v1.12.0/pt-BR/tools/ai-ml/visiontool",
"v1.12.0/pt-BR/tools/ai-ml/aimindtool",
"v1.12.0/pt-BR/tools/ai-ml/llamaindextool",
"v1.12.0/pt-BR/tools/ai-ml/langchaintool",
"v1.12.0/pt-BR/tools/ai-ml/ragtool",
"v1.12.0/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.12.0/pt-BR/tools/cloud-storage/overview",
"v1.12.0/pt-BR/tools/cloud-storage/s3readertool",
"v1.12.0/pt-BR/tools/cloud-storage/s3writertool",
"v1.12.0/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.0/pt-BR/tools/integration/overview",
"v1.12.0/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.12.0/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.12.0/pt-BR/tools/automation/overview",
"v1.12.0/pt-BR/tools/automation/apifyactorstool",
"v1.12.0/pt-BR/tools/automation/composiotool",
"v1.12.0/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.12.0/pt-BR/observability/tracing",
"v1.12.0/pt-BR/observability/overview",
"v1.12.0/pt-BR/observability/arize-phoenix",
"v1.12.0/pt-BR/observability/braintrust",
"v1.12.0/pt-BR/observability/datadog",
"v1.12.0/pt-BR/observability/galileo",
"v1.12.0/pt-BR/observability/langdb",
"v1.12.0/pt-BR/observability/langfuse",
"v1.12.0/pt-BR/observability/langtrace",
"v1.12.0/pt-BR/observability/maxim",
"v1.12.0/pt-BR/observability/mlflow",
"v1.12.0/pt-BR/observability/openlit",
"v1.12.0/pt-BR/observability/opik",
"v1.12.0/pt-BR/observability/patronus-evaluation",
"v1.12.0/pt-BR/observability/portkey",
"v1.12.0/pt-BR/observability/weave",
"v1.12.0/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.12.0/pt-BR/learn/overview",
"v1.12.0/pt-BR/learn/llm-selection-guide",
"v1.12.0/pt-BR/learn/conditional-tasks",
"v1.12.0/pt-BR/learn/coding-agents",
"v1.12.0/pt-BR/learn/create-custom-tools",
"v1.12.0/pt-BR/learn/custom-llm",
"v1.12.0/pt-BR/learn/custom-manager-agent",
"v1.12.0/pt-BR/learn/customizing-agents",
"v1.12.0/pt-BR/learn/dalle-image-generation",
"v1.12.0/pt-BR/learn/force-tool-output-as-result",
"v1.12.0/pt-BR/learn/hierarchical-process",
"v1.12.0/pt-BR/learn/human-input-on-execution",
"v1.12.0/pt-BR/learn/human-in-the-loop",
"v1.12.0/pt-BR/learn/human-feedback-in-flows",
"v1.12.0/pt-BR/learn/kickoff-async",
"v1.12.0/pt-BR/learn/kickoff-for-each",
"v1.12.0/pt-BR/learn/llm-connections",
"v1.12.0/pt-BR/learn/multimodal-agents",
"v1.12.0/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.0/pt-BR/learn/sequential-process",
"v1.12.0/pt-BR/learn/using-annotations",
"v1.12.0/pt-BR/learn/execution-hooks",
"v1.12.0/pt-BR/learn/llm-hooks",
"v1.12.0/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.12.0/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.0/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.12.0/pt-BR/enterprise/features/automations",
"v1.12.0/pt-BR/enterprise/features/crew-studio",
"v1.12.0/pt-BR/enterprise/features/marketplace",
"v1.12.0/pt-BR/enterprise/features/agent-repositories",
"v1.12.0/pt-BR/enterprise/features/tools-and-integrations",
"v1.12.0/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.12.0/pt-BR/enterprise/features/traces",
"v1.12.0/pt-BR/enterprise/features/webhook-streaming",
"v1.12.0/pt-BR/enterprise/features/hallucination-guardrail",
"v1.12.0/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.12.0/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.12.0/pt-BR/enterprise/integrations/asana",
"v1.12.0/pt-BR/enterprise/integrations/box",
"v1.12.0/pt-BR/enterprise/integrations/clickup",
"v1.12.0/pt-BR/enterprise/integrations/github",
"v1.12.0/pt-BR/enterprise/integrations/gmail",
"v1.12.0/pt-BR/enterprise/integrations/google_calendar",
"v1.12.0/pt-BR/enterprise/integrations/google_contacts",
"v1.12.0/pt-BR/enterprise/integrations/google_docs",
"v1.12.0/pt-BR/enterprise/integrations/google_drive",
"v1.12.0/pt-BR/enterprise/integrations/google_sheets",
"v1.12.0/pt-BR/enterprise/integrations/google_slides",
"v1.12.0/pt-BR/enterprise/integrations/hubspot",
"v1.12.0/pt-BR/enterprise/integrations/jira",
"v1.12.0/pt-BR/enterprise/integrations/linear",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_excel",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_teams",
"v1.12.0/pt-BR/enterprise/integrations/microsoft_word",
"v1.12.0/pt-BR/enterprise/integrations/notion",
"v1.12.0/pt-BR/enterprise/integrations/salesforce",
"v1.12.0/pt-BR/enterprise/integrations/shopify",
"v1.12.0/pt-BR/enterprise/integrations/slack",
"v1.12.0/pt-BR/enterprise/integrations/stripe",
"v1.12.0/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.12.0/pt-BR/enterprise/guides/build-crew",
"v1.12.0/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.12.0/pt-BR/enterprise/guides/deploy-to-amp",
"v1.12.0/pt-BR/enterprise/guides/private-package-registry",
"v1.12.0/pt-BR/enterprise/guides/kickoff-crew",
"v1.12.0/pt-BR/enterprise/guides/update-crew",
"v1.12.0/pt-BR/enterprise/guides/enable-crew-studio",
"v1.12.0/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.12.0/pt-BR/enterprise/guides/azure-openai-setup",
"v1.12.0/pt-BR/enterprise/guides/tool-repository",
"v1.12.0/pt-BR/enterprise/guides/custom-mcp-server",
"v1.12.0/pt-BR/enterprise/guides/react-component-export",
"v1.12.0/pt-BR/enterprise/guides/team-management",
"v1.12.0/pt-BR/enterprise/guides/human-in-the-loop",
"v1.12.0/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.12.0/pt-BR/enterprise/guides/automation-triggers",
"v1.12.0/pt-BR/enterprise/guides/gmail-trigger",
"v1.12.0/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.12.0/pt-BR/enterprise/guides/google-drive-trigger",
"v1.12.0/pt-BR/enterprise/guides/outlook-trigger",
"v1.12.0/pt-BR/enterprise/guides/onedrive-trigger",
"v1.12.0/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.12.0/pt-BR/enterprise/guides/slack-trigger",
"v1.12.0/pt-BR/enterprise/guides/hubspot-trigger",
"v1.12.0/pt-BR/enterprise/guides/salesforce-trigger",
"v1.12.0/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.12.0/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.12.0/pt-BR/api-reference/introduction",
"v1.12.0/pt-BR/api-reference/inputs",
"v1.12.0/pt-BR/api-reference/kickoff",
"v1.12.0/pt-BR/api-reference/resume",
"v1.12.0/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.12.0/pt-BR/examples/example",
"v1.12.0/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.12.0/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.11.1",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.11.1/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.1/pt-BR/introduction",
"v1.11.1/pt-BR/installation",
"v1.11.1/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.11.1/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.11.1/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.11.1/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.11.1/pt-BR/guides/flows/first-flow",
"v1.11.1/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Ferramentas",
"icon": "wrench",
"pages": [
"v1.11.1/pt-BR/guides/tools/publish-custom-tools"
]
},
{
"group": "Ferramentas de Codificação",
"icon": "terminal",
"pages": [
"v1.11.1/pt-BR/guides/coding-tools/agents-md"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.11.1/pt-BR/guides/advanced/customizing-prompts",
"v1.11.1/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.11.1/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.11.1/pt-BR/concepts/agents",
"v1.11.1/pt-BR/concepts/tasks",
"v1.11.1/pt-BR/concepts/crews",
"v1.11.1/pt-BR/concepts/flows",
"v1.11.1/pt-BR/concepts/production-architecture",
"v1.11.1/pt-BR/concepts/knowledge",
"v1.11.1/pt-BR/concepts/llms",
"v1.11.1/pt-BR/concepts/files",
"v1.11.1/pt-BR/concepts/processes",
"v1.11.1/pt-BR/concepts/collaboration",
"v1.11.1/pt-BR/concepts/training",
"v1.11.1/pt-BR/concepts/memory",
"v1.11.1/pt-BR/concepts/reasoning",
"v1.11.1/pt-BR/concepts/planning",
"v1.11.1/pt-BR/concepts/testing",
"v1.11.1/pt-BR/concepts/cli",
"v1.11.1/pt-BR/concepts/tools",
"v1.11.1/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.11.1/pt-BR/mcp/overview",
"v1.11.1/pt-BR/mcp/dsl-integration",
"v1.11.1/pt-BR/mcp/stdio",
"v1.11.1/pt-BR/mcp/sse",
"v1.11.1/pt-BR/mcp/streamable-http",
"v1.11.1/pt-BR/mcp/multiple-servers",
"v1.11.1/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.11.1/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.11.1/pt-BR/tools/file-document/overview",
"v1.11.1/pt-BR/tools/file-document/filereadtool",
"v1.11.1/pt-BR/tools/file-document/filewritetool",
"v1.11.1/pt-BR/tools/file-document/pdfsearchtool",
"v1.11.1/pt-BR/tools/file-document/docxsearchtool",
"v1.11.1/pt-BR/tools/file-document/mdxsearchtool",
"v1.11.1/pt-BR/tools/file-document/xmlsearchtool",
"v1.11.1/pt-BR/tools/file-document/txtsearchtool",
"v1.11.1/pt-BR/tools/file-document/jsonsearchtool",
"v1.11.1/pt-BR/tools/file-document/csvsearchtool",
"v1.11.1/pt-BR/tools/file-document/directorysearchtool",
"v1.11.1/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.11.1/pt-BR/tools/web-scraping/overview",
"v1.11.1/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.11.1/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.1/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.11.1/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.11.1/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.11.1/pt-BR/tools/web-scraping/spidertool",
"v1.11.1/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.11.1/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.11.1/pt-BR/tools/web-scraping/stagehandtool",
"v1.11.1/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.1/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.1/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.11.1/pt-BR/tools/search-research/overview",
"v1.11.1/pt-BR/tools/search-research/serperdevtool",
"v1.11.1/pt-BR/tools/search-research/bravesearchtool",
"v1.11.1/pt-BR/tools/search-research/exasearchtool",
"v1.11.1/pt-BR/tools/search-research/linkupsearchtool",
"v1.11.1/pt-BR/tools/search-research/githubsearchtool",
"v1.11.1/pt-BR/tools/search-research/websitesearchtool",
"v1.11.1/pt-BR/tools/search-research/codedocssearchtool",
"v1.11.1/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.11.1/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.11.1/pt-BR/tools/database-data/overview",
"v1.11.1/pt-BR/tools/database-data/mysqltool",
"v1.11.1/pt-BR/tools/database-data/pgsearchtool",
"v1.11.1/pt-BR/tools/database-data/snowflakesearchtool",
"v1.11.1/pt-BR/tools/database-data/nl2sqltool",
"v1.11.1/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.11.1/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.11.1/pt-BR/tools/ai-ml/overview",
"v1.11.1/pt-BR/tools/ai-ml/dalletool",
"v1.11.1/pt-BR/tools/ai-ml/visiontool",
"v1.11.1/pt-BR/tools/ai-ml/aimindtool",
"v1.11.1/pt-BR/tools/ai-ml/llamaindextool",
"v1.11.1/pt-BR/tools/ai-ml/langchaintool",
"v1.11.1/pt-BR/tools/ai-ml/ragtool",
"v1.11.1/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.11.1/pt-BR/tools/cloud-storage/overview",
"v1.11.1/pt-BR/tools/cloud-storage/s3readertool",
"v1.11.1/pt-BR/tools/cloud-storage/s3writertool",
"v1.11.1/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.1/pt-BR/tools/integration/overview",
"v1.11.1/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.11.1/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.11.1/pt-BR/tools/automation/overview",
"v1.11.1/pt-BR/tools/automation/apifyactorstool",
"v1.11.1/pt-BR/tools/automation/composiotool",
"v1.11.1/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.11.1/pt-BR/observability/tracing",
"v1.11.1/pt-BR/observability/overview",
"v1.11.1/pt-BR/observability/arize-phoenix",
"v1.11.1/pt-BR/observability/braintrust",
"v1.11.1/pt-BR/observability/datadog",
"v1.11.1/pt-BR/observability/galileo",
"v1.11.1/pt-BR/observability/langdb",
"v1.11.1/pt-BR/observability/langfuse",
"v1.11.1/pt-BR/observability/langtrace",
"v1.11.1/pt-BR/observability/maxim",
"v1.11.1/pt-BR/observability/mlflow",
"v1.11.1/pt-BR/observability/openlit",
"v1.11.1/pt-BR/observability/opik",
"v1.11.1/pt-BR/observability/patronus-evaluation",
"v1.11.1/pt-BR/observability/portkey",
"v1.11.1/pt-BR/observability/weave",
"v1.11.1/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.11.1/pt-BR/learn/overview",
"v1.11.1/pt-BR/learn/llm-selection-guide",
"v1.11.1/pt-BR/learn/conditional-tasks",
"v1.11.1/pt-BR/learn/coding-agents",
"v1.11.1/pt-BR/learn/create-custom-tools",
"v1.11.1/pt-BR/learn/custom-llm",
"v1.11.1/pt-BR/learn/custom-manager-agent",
"v1.11.1/pt-BR/learn/customizing-agents",
"v1.11.1/pt-BR/learn/dalle-image-generation",
"v1.11.1/pt-BR/learn/force-tool-output-as-result",
"v1.11.1/pt-BR/learn/hierarchical-process",
"v1.11.1/pt-BR/learn/human-input-on-execution",
"v1.11.1/pt-BR/learn/human-in-the-loop",
"v1.11.1/pt-BR/learn/human-feedback-in-flows",
"v1.11.1/pt-BR/learn/kickoff-async",
"v1.11.1/pt-BR/learn/kickoff-for-each",
"v1.11.1/pt-BR/learn/llm-connections",
"v1.11.1/pt-BR/learn/multimodal-agents",
"v1.11.1/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.1/pt-BR/learn/sequential-process",
"v1.11.1/pt-BR/learn/using-annotations",
"v1.11.1/pt-BR/learn/execution-hooks",
"v1.11.1/pt-BR/learn/llm-hooks",
"v1.11.1/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.11.1/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.1/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.11.1/pt-BR/enterprise/features/automations",
"v1.11.1/pt-BR/enterprise/features/crew-studio",
"v1.11.1/pt-BR/enterprise/features/marketplace",
"v1.11.1/pt-BR/enterprise/features/agent-repositories",
"v1.11.1/pt-BR/enterprise/features/tools-and-integrations",
"v1.11.1/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.11.1/pt-BR/enterprise/features/traces",
"v1.11.1/pt-BR/enterprise/features/webhook-streaming",
"v1.11.1/pt-BR/enterprise/features/hallucination-guardrail",
"v1.11.1/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.11.1/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.11.1/pt-BR/enterprise/integrations/asana",
"v1.11.1/pt-BR/enterprise/integrations/box",
"v1.11.1/pt-BR/enterprise/integrations/clickup",
"v1.11.1/pt-BR/enterprise/integrations/github",
"v1.11.1/pt-BR/enterprise/integrations/gmail",
"v1.11.1/pt-BR/enterprise/integrations/google_calendar",
"v1.11.1/pt-BR/enterprise/integrations/google_contacts",
"v1.11.1/pt-BR/enterprise/integrations/google_docs",
"v1.11.1/pt-BR/enterprise/integrations/google_drive",
"v1.11.1/pt-BR/enterprise/integrations/google_sheets",
"v1.11.1/pt-BR/enterprise/integrations/google_slides",
"v1.11.1/pt-BR/enterprise/integrations/hubspot",
"v1.11.1/pt-BR/enterprise/integrations/jira",
"v1.11.1/pt-BR/enterprise/integrations/linear",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_excel",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_teams",
"v1.11.1/pt-BR/enterprise/integrations/microsoft_word",
"v1.11.1/pt-BR/enterprise/integrations/notion",
"v1.11.1/pt-BR/enterprise/integrations/salesforce",
"v1.11.1/pt-BR/enterprise/integrations/shopify",
"v1.11.1/pt-BR/enterprise/integrations/slack",
"v1.11.1/pt-BR/enterprise/integrations/stripe",
"v1.11.1/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.11.1/pt-BR/enterprise/guides/build-crew",
"v1.11.1/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.11.1/pt-BR/enterprise/guides/deploy-to-amp",
"v1.11.1/pt-BR/enterprise/guides/private-package-registry",
"v1.11.1/pt-BR/enterprise/guides/kickoff-crew",
"v1.11.1/pt-BR/enterprise/guides/update-crew",
"v1.11.1/pt-BR/enterprise/guides/enable-crew-studio",
"v1.11.1/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.11.1/pt-BR/enterprise/guides/azure-openai-setup",
"v1.11.1/pt-BR/enterprise/guides/tool-repository",
"v1.11.1/pt-BR/enterprise/guides/custom-mcp-server",
"v1.11.1/pt-BR/enterprise/guides/react-component-export",
"v1.11.1/pt-BR/enterprise/guides/team-management",
"v1.11.1/pt-BR/enterprise/guides/human-in-the-loop",
"v1.11.1/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.11.1/pt-BR/enterprise/guides/automation-triggers",
"v1.11.1/pt-BR/enterprise/guides/gmail-trigger",
"v1.11.1/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.11.1/pt-BR/enterprise/guides/google-drive-trigger",
"v1.11.1/pt-BR/enterprise/guides/outlook-trigger",
"v1.11.1/pt-BR/enterprise/guides/onedrive-trigger",
"v1.11.1/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.11.1/pt-BR/enterprise/guides/slack-trigger",
"v1.11.1/pt-BR/enterprise/guides/hubspot-trigger",
"v1.11.1/pt-BR/enterprise/guides/salesforce-trigger",
"v1.11.1/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.11.1/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.1/pt-BR/api-reference/introduction",
"v1.11.1/pt-BR/api-reference/inputs",
"v1.11.1/pt-BR/api-reference/kickoff",
"v1.11.1/pt-BR/api-reference/resume",
"v1.11.1/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.11.1/pt-BR/examples/example",
"v1.11.1/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.11.1/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.11.0",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.11.0/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.0/pt-BR/introduction",
"v1.11.0/pt-BR/installation",
"v1.11.0/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.11.0/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.11.0/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.11.0/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.11.0/pt-BR/guides/flows/first-flow",
"v1.11.0/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.11.0/pt-BR/guides/advanced/customizing-prompts",
"v1.11.0/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.11.0/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.11.0/pt-BR/concepts/agents",
"v1.11.0/pt-BR/concepts/tasks",
"v1.11.0/pt-BR/concepts/crews",
"v1.11.0/pt-BR/concepts/flows",
"v1.11.0/pt-BR/concepts/production-architecture",
"v1.11.0/pt-BR/concepts/knowledge",
"v1.11.0/pt-BR/concepts/llms",
"v1.11.0/pt-BR/concepts/files",
"v1.11.0/pt-BR/concepts/processes",
"v1.11.0/pt-BR/concepts/collaboration",
"v1.11.0/pt-BR/concepts/training",
"v1.11.0/pt-BR/concepts/memory",
"v1.11.0/pt-BR/concepts/reasoning",
"v1.11.0/pt-BR/concepts/planning",
"v1.11.0/pt-BR/concepts/testing",
"v1.11.0/pt-BR/concepts/cli",
"v1.11.0/pt-BR/concepts/tools",
"v1.11.0/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.11.0/pt-BR/mcp/overview",
"v1.11.0/pt-BR/mcp/dsl-integration",
"v1.11.0/pt-BR/mcp/stdio",
"v1.11.0/pt-BR/mcp/sse",
"v1.11.0/pt-BR/mcp/streamable-http",
"v1.11.0/pt-BR/mcp/multiple-servers",
"v1.11.0/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.11.0/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.11.0/pt-BR/tools/file-document/overview",
"v1.11.0/pt-BR/tools/file-document/filereadtool",
"v1.11.0/pt-BR/tools/file-document/filewritetool",
"v1.11.0/pt-BR/tools/file-document/pdfsearchtool",
"v1.11.0/pt-BR/tools/file-document/docxsearchtool",
"v1.11.0/pt-BR/tools/file-document/mdxsearchtool",
"v1.11.0/pt-BR/tools/file-document/xmlsearchtool",
"v1.11.0/pt-BR/tools/file-document/txtsearchtool",
"v1.11.0/pt-BR/tools/file-document/jsonsearchtool",
"v1.11.0/pt-BR/tools/file-document/csvsearchtool",
"v1.11.0/pt-BR/tools/file-document/directorysearchtool",
"v1.11.0/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.11.0/pt-BR/tools/web-scraping/overview",
"v1.11.0/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.11.0/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.0/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.11.0/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.11.0/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.11.0/pt-BR/tools/web-scraping/spidertool",
"v1.11.0/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.11.0/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.11.0/pt-BR/tools/web-scraping/stagehandtool",
"v1.11.0/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.0/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.0/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.11.0/pt-BR/tools/search-research/overview",
"v1.11.0/pt-BR/tools/search-research/serperdevtool",
"v1.11.0/pt-BR/tools/search-research/bravesearchtool",
"v1.11.0/pt-BR/tools/search-research/exasearchtool",
"v1.11.0/pt-BR/tools/search-research/linkupsearchtool",
"v1.11.0/pt-BR/tools/search-research/githubsearchtool",
"v1.11.0/pt-BR/tools/search-research/websitesearchtool",
"v1.11.0/pt-BR/tools/search-research/codedocssearchtool",
"v1.11.0/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.11.0/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.11.0/pt-BR/tools/database-data/overview",
"v1.11.0/pt-BR/tools/database-data/mysqltool",
"v1.11.0/pt-BR/tools/database-data/pgsearchtool",
"v1.11.0/pt-BR/tools/database-data/snowflakesearchtool",
"v1.11.0/pt-BR/tools/database-data/nl2sqltool",
"v1.11.0/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.11.0/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.11.0/pt-BR/tools/ai-ml/overview",
"v1.11.0/pt-BR/tools/ai-ml/dalletool",
"v1.11.0/pt-BR/tools/ai-ml/visiontool",
"v1.11.0/pt-BR/tools/ai-ml/aimindtool",
"v1.11.0/pt-BR/tools/ai-ml/llamaindextool",
"v1.11.0/pt-BR/tools/ai-ml/langchaintool",
"v1.11.0/pt-BR/tools/ai-ml/ragtool",
"v1.11.0/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.11.0/pt-BR/tools/cloud-storage/overview",
"v1.11.0/pt-BR/tools/cloud-storage/s3readertool",
"v1.11.0/pt-BR/tools/cloud-storage/s3writertool",
"v1.11.0/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.0/pt-BR/tools/integration/overview",
"v1.11.0/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.11.0/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.11.0/pt-BR/tools/automation/overview",
"v1.11.0/pt-BR/tools/automation/apifyactorstool",
"v1.11.0/pt-BR/tools/automation/composiotool",
"v1.11.0/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.11.0/pt-BR/observability/tracing",
"v1.11.0/pt-BR/observability/overview",
"v1.11.0/pt-BR/observability/arize-phoenix",
"v1.11.0/pt-BR/observability/braintrust",
"v1.11.0/pt-BR/observability/datadog",
"v1.11.0/pt-BR/observability/galileo",
"v1.11.0/pt-BR/observability/langdb",
"v1.11.0/pt-BR/observability/langfuse",
"v1.11.0/pt-BR/observability/langtrace",
"v1.11.0/pt-BR/observability/maxim",
"v1.11.0/pt-BR/observability/mlflow",
"v1.11.0/pt-BR/observability/openlit",
"v1.11.0/pt-BR/observability/opik",
"v1.11.0/pt-BR/observability/patronus-evaluation",
"v1.11.0/pt-BR/observability/portkey",
"v1.11.0/pt-BR/observability/weave",
"v1.11.0/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.11.0/pt-BR/learn/overview",
"v1.11.0/pt-BR/learn/llm-selection-guide",
"v1.11.0/pt-BR/learn/conditional-tasks",
"v1.11.0/pt-BR/learn/coding-agents",
"v1.11.0/pt-BR/learn/create-custom-tools",
"v1.11.0/pt-BR/learn/custom-llm",
"v1.11.0/pt-BR/learn/custom-manager-agent",
"v1.11.0/pt-BR/learn/customizing-agents",
"v1.11.0/pt-BR/learn/dalle-image-generation",
"v1.11.0/pt-BR/learn/force-tool-output-as-result",
"v1.11.0/pt-BR/learn/hierarchical-process",
"v1.11.0/pt-BR/learn/human-input-on-execution",
"v1.11.0/pt-BR/learn/human-in-the-loop",
"v1.11.0/pt-BR/learn/human-feedback-in-flows",
"v1.11.0/pt-BR/learn/kickoff-async",
"v1.11.0/pt-BR/learn/kickoff-for-each",
"v1.11.0/pt-BR/learn/llm-connections",
"v1.11.0/pt-BR/learn/multimodal-agents",
"v1.11.0/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.0/pt-BR/learn/sequential-process",
"v1.11.0/pt-BR/learn/using-annotations",
"v1.11.0/pt-BR/learn/execution-hooks",
"v1.11.0/pt-BR/learn/llm-hooks",
"v1.11.0/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.11.0/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.0/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.11.0/pt-BR/enterprise/features/automations",
"v1.11.0/pt-BR/enterprise/features/crew-studio",
"v1.11.0/pt-BR/enterprise/features/marketplace",
"v1.11.0/pt-BR/enterprise/features/agent-repositories",
"v1.11.0/pt-BR/enterprise/features/tools-and-integrations",
"v1.11.0/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.11.0/pt-BR/enterprise/features/traces",
"v1.11.0/pt-BR/enterprise/features/webhook-streaming",
"v1.11.0/pt-BR/enterprise/features/hallucination-guardrail",
"v1.11.0/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.11.0/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.11.0/pt-BR/enterprise/integrations/asana",
"v1.11.0/pt-BR/enterprise/integrations/box",
"v1.11.0/pt-BR/enterprise/integrations/clickup",
"v1.11.0/pt-BR/enterprise/integrations/github",
"v1.11.0/pt-BR/enterprise/integrations/gmail",
"v1.11.0/pt-BR/enterprise/integrations/google_calendar",
"v1.11.0/pt-BR/enterprise/integrations/google_contacts",
"v1.11.0/pt-BR/enterprise/integrations/google_docs",
"v1.11.0/pt-BR/enterprise/integrations/google_drive",
"v1.11.0/pt-BR/enterprise/integrations/google_sheets",
"v1.11.0/pt-BR/enterprise/integrations/google_slides",
"v1.11.0/pt-BR/enterprise/integrations/hubspot",
"v1.11.0/pt-BR/enterprise/integrations/jira",
"v1.11.0/pt-BR/enterprise/integrations/linear",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_excel",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_teams",
"v1.11.0/pt-BR/enterprise/integrations/microsoft_word",
"v1.11.0/pt-BR/enterprise/integrations/notion",
"v1.11.0/pt-BR/enterprise/integrations/salesforce",
"v1.11.0/pt-BR/enterprise/integrations/shopify",
"v1.11.0/pt-BR/enterprise/integrations/slack",
"v1.11.0/pt-BR/enterprise/integrations/stripe",
"v1.11.0/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.11.0/pt-BR/enterprise/guides/build-crew",
"v1.11.0/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.11.0/pt-BR/enterprise/guides/deploy-to-amp",
"v1.11.0/pt-BR/enterprise/guides/private-package-registry",
"v1.11.0/pt-BR/enterprise/guides/kickoff-crew",
"v1.11.0/pt-BR/enterprise/guides/update-crew",
"v1.11.0/pt-BR/enterprise/guides/enable-crew-studio",
"v1.11.0/pt-BR/enterprise/guides/capture_telemetry_logs",
"v1.11.0/pt-BR/enterprise/guides/azure-openai-setup",
"v1.11.0/pt-BR/enterprise/guides/tool-repository",
"v1.11.0/pt-BR/enterprise/guides/custom-mcp-server",
"v1.11.0/pt-BR/enterprise/guides/react-component-export",
"v1.11.0/pt-BR/enterprise/guides/team-management",
"v1.11.0/pt-BR/enterprise/guides/human-in-the-loop",
"v1.11.0/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.11.0/pt-BR/enterprise/guides/automation-triggers",
"v1.11.0/pt-BR/enterprise/guides/gmail-trigger",
"v1.11.0/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.11.0/pt-BR/enterprise/guides/google-drive-trigger",
"v1.11.0/pt-BR/enterprise/guides/outlook-trigger",
"v1.11.0/pt-BR/enterprise/guides/onedrive-trigger",
"v1.11.0/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.11.0/pt-BR/enterprise/guides/slack-trigger",
"v1.11.0/pt-BR/enterprise/guides/hubspot-trigger",
"v1.11.0/pt-BR/enterprise/guides/salesforce-trigger",
"v1.11.0/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.11.0/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.11.0/pt-BR/api-reference/introduction",
"v1.11.0/pt-BR/api-reference/inputs",
"v1.11.0/pt-BR/api-reference/kickoff",
"v1.11.0/pt-BR/api-reference/resume",
"v1.11.0/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.11.0/pt-BR/examples/example",
"v1.11.0/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.11.0/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.10.1",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.10.1/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.1/pt-BR/introduction",
"v1.10.1/pt-BR/installation",
"v1.10.1/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.10.1/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.10.1/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.10.1/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.10.1/pt-BR/guides/flows/first-flow",
"v1.10.1/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.10.1/pt-BR/guides/advanced/customizing-prompts",
"v1.10.1/pt-BR/guides/advanced/fingerprinting"
]
},
{
"group": "Migração",
"icon": "shuffle",
"pages": [
"v1.10.1/pt-BR/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.10.1/pt-BR/concepts/agents",
"v1.10.1/pt-BR/concepts/tasks",
"v1.10.1/pt-BR/concepts/crews",
"v1.10.1/pt-BR/concepts/flows",
"v1.10.1/pt-BR/concepts/production-architecture",
"v1.10.1/pt-BR/concepts/knowledge",
"v1.10.1/pt-BR/concepts/llms",
"v1.10.1/pt-BR/concepts/files",
"v1.10.1/pt-BR/concepts/processes",
"v1.10.1/pt-BR/concepts/collaboration",
"v1.10.1/pt-BR/concepts/training",
"v1.10.1/pt-BR/concepts/memory",
"v1.10.1/pt-BR/concepts/reasoning",
"v1.10.1/pt-BR/concepts/planning",
"v1.10.1/pt-BR/concepts/testing",
"v1.10.1/pt-BR/concepts/cli",
"v1.10.1/pt-BR/concepts/tools",
"v1.10.1/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.10.1/pt-BR/mcp/overview",
"v1.10.1/pt-BR/mcp/dsl-integration",
"v1.10.1/pt-BR/mcp/stdio",
"v1.10.1/pt-BR/mcp/sse",
"v1.10.1/pt-BR/mcp/streamable-http",
"v1.10.1/pt-BR/mcp/multiple-servers",
"v1.10.1/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.10.1/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.10.1/pt-BR/tools/file-document/overview",
"v1.10.1/pt-BR/tools/file-document/filereadtool",
"v1.10.1/pt-BR/tools/file-document/filewritetool",
"v1.10.1/pt-BR/tools/file-document/pdfsearchtool",
"v1.10.1/pt-BR/tools/file-document/docxsearchtool",
"v1.10.1/pt-BR/tools/file-document/mdxsearchtool",
"v1.10.1/pt-BR/tools/file-document/xmlsearchtool",
"v1.10.1/pt-BR/tools/file-document/txtsearchtool",
"v1.10.1/pt-BR/tools/file-document/jsonsearchtool",
"v1.10.1/pt-BR/tools/file-document/csvsearchtool",
"v1.10.1/pt-BR/tools/file-document/directorysearchtool",
"v1.10.1/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.10.1/pt-BR/tools/web-scraping/overview",
"v1.10.1/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.10.1/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.1/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.10.1/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.10.1/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.10.1/pt-BR/tools/web-scraping/spidertool",
"v1.10.1/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.10.1/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.10.1/pt-BR/tools/web-scraping/stagehandtool",
"v1.10.1/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.1/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.1/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.10.1/pt-BR/tools/search-research/overview",
"v1.10.1/pt-BR/tools/search-research/serperdevtool",
"v1.10.1/pt-BR/tools/search-research/bravesearchtool",
"v1.10.1/pt-BR/tools/search-research/exasearchtool",
"v1.10.1/pt-BR/tools/search-research/linkupsearchtool",
"v1.10.1/pt-BR/tools/search-research/githubsearchtool",
"v1.10.1/pt-BR/tools/search-research/websitesearchtool",
"v1.10.1/pt-BR/tools/search-research/codedocssearchtool",
"v1.10.1/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.10.1/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.10.1/pt-BR/tools/database-data/overview",
"v1.10.1/pt-BR/tools/database-data/mysqltool",
"v1.10.1/pt-BR/tools/database-data/pgsearchtool",
"v1.10.1/pt-BR/tools/database-data/snowflakesearchtool",
"v1.10.1/pt-BR/tools/database-data/nl2sqltool",
"v1.10.1/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.10.1/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.10.1/pt-BR/tools/ai-ml/overview",
"v1.10.1/pt-BR/tools/ai-ml/dalletool",
"v1.10.1/pt-BR/tools/ai-ml/visiontool",
"v1.10.1/pt-BR/tools/ai-ml/aimindtool",
"v1.10.1/pt-BR/tools/ai-ml/llamaindextool",
"v1.10.1/pt-BR/tools/ai-ml/langchaintool",
"v1.10.1/pt-BR/tools/ai-ml/ragtool",
"v1.10.1/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.10.1/pt-BR/tools/cloud-storage/overview",
"v1.10.1/pt-BR/tools/cloud-storage/s3readertool",
"v1.10.1/pt-BR/tools/cloud-storage/s3writertool",
"v1.10.1/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.1/pt-BR/tools/integration/overview",
"v1.10.1/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.10.1/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.10.1/pt-BR/tools/automation/overview",
"v1.10.1/pt-BR/tools/automation/apifyactorstool",
"v1.10.1/pt-BR/tools/automation/composiotool",
"v1.10.1/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.10.1/pt-BR/observability/tracing",
"v1.10.1/pt-BR/observability/overview",
"v1.10.1/pt-BR/observability/arize-phoenix",
"v1.10.1/pt-BR/observability/braintrust",
"v1.10.1/pt-BR/observability/datadog",
"v1.10.1/pt-BR/observability/galileo",
"v1.10.1/pt-BR/observability/langdb",
"v1.10.1/pt-BR/observability/langfuse",
"v1.10.1/pt-BR/observability/langtrace",
"v1.10.1/pt-BR/observability/maxim",
"v1.10.1/pt-BR/observability/mlflow",
"v1.10.1/pt-BR/observability/openlit",
"v1.10.1/pt-BR/observability/opik",
"v1.10.1/pt-BR/observability/patronus-evaluation",
"v1.10.1/pt-BR/observability/portkey",
"v1.10.1/pt-BR/observability/weave",
"v1.10.1/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.10.1/pt-BR/learn/overview",
"v1.10.1/pt-BR/learn/llm-selection-guide",
"v1.10.1/pt-BR/learn/conditional-tasks",
"v1.10.1/pt-BR/learn/coding-agents",
"v1.10.1/pt-BR/learn/create-custom-tools",
"v1.10.1/pt-BR/learn/custom-llm",
"v1.10.1/pt-BR/learn/custom-manager-agent",
"v1.10.1/pt-BR/learn/customizing-agents",
"v1.10.1/pt-BR/learn/dalle-image-generation",
"v1.10.1/pt-BR/learn/force-tool-output-as-result",
"v1.10.1/pt-BR/learn/hierarchical-process",
"v1.10.1/pt-BR/learn/human-input-on-execution",
"v1.10.1/pt-BR/learn/human-in-the-loop",
"v1.10.1/pt-BR/learn/human-feedback-in-flows",
"v1.10.1/pt-BR/learn/kickoff-async",
"v1.10.1/pt-BR/learn/kickoff-for-each",
"v1.10.1/pt-BR/learn/llm-connections",
"v1.10.1/pt-BR/learn/multimodal-agents",
"v1.10.1/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.1/pt-BR/learn/sequential-process",
"v1.10.1/pt-BR/learn/using-annotations",
"v1.10.1/pt-BR/learn/execution-hooks",
"v1.10.1/pt-BR/learn/llm-hooks",
"v1.10.1/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.10.1/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.1/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.10.1/pt-BR/enterprise/features/automations",
"v1.10.1/pt-BR/enterprise/features/crew-studio",
"v1.10.1/pt-BR/enterprise/features/marketplace",
"v1.10.1/pt-BR/enterprise/features/agent-repositories",
"v1.10.1/pt-BR/enterprise/features/tools-and-integrations",
"v1.10.1/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.10.1/pt-BR/enterprise/features/traces",
"v1.10.1/pt-BR/enterprise/features/webhook-streaming",
"v1.10.1/pt-BR/enterprise/features/hallucination-guardrail",
"v1.10.1/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.10.1/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.10.1/pt-BR/enterprise/integrations/asana",
"v1.10.1/pt-BR/enterprise/integrations/box",
"v1.10.1/pt-BR/enterprise/integrations/clickup",
"v1.10.1/pt-BR/enterprise/integrations/github",
"v1.10.1/pt-BR/enterprise/integrations/gmail",
"v1.10.1/pt-BR/enterprise/integrations/google_calendar",
"v1.10.1/pt-BR/enterprise/integrations/google_contacts",
"v1.10.1/pt-BR/enterprise/integrations/google_docs",
"v1.10.1/pt-BR/enterprise/integrations/google_drive",
"v1.10.1/pt-BR/enterprise/integrations/google_sheets",
"v1.10.1/pt-BR/enterprise/integrations/google_slides",
"v1.10.1/pt-BR/enterprise/integrations/hubspot",
"v1.10.1/pt-BR/enterprise/integrations/jira",
"v1.10.1/pt-BR/enterprise/integrations/linear",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_excel",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_teams",
"v1.10.1/pt-BR/enterprise/integrations/microsoft_word",
"v1.10.1/pt-BR/enterprise/integrations/notion",
"v1.10.1/pt-BR/enterprise/integrations/salesforce",
"v1.10.1/pt-BR/enterprise/integrations/shopify",
"v1.10.1/pt-BR/enterprise/integrations/slack",
"v1.10.1/pt-BR/enterprise/integrations/stripe",
"v1.10.1/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.10.1/pt-BR/enterprise/guides/build-crew",
"v1.10.1/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.10.1/pt-BR/enterprise/guides/deploy-to-amp",
"v1.10.1/pt-BR/enterprise/guides/private-package-registry",
"v1.10.1/pt-BR/enterprise/guides/kickoff-crew",
"v1.10.1/pt-BR/enterprise/guides/update-crew",
"v1.10.1/pt-BR/enterprise/guides/enable-crew-studio",
"v1.10.1/pt-BR/enterprise/guides/azure-openai-setup",
"v1.10.1/pt-BR/enterprise/guides/tool-repository",
"v1.10.1/pt-BR/enterprise/guides/react-component-export",
"v1.10.1/pt-BR/enterprise/guides/team-management",
"v1.10.1/pt-BR/enterprise/guides/human-in-the-loop",
"v1.10.1/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.10.1/pt-BR/enterprise/guides/automation-triggers",
"v1.10.1/pt-BR/enterprise/guides/gmail-trigger",
"v1.10.1/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.10.1/pt-BR/enterprise/guides/google-drive-trigger",
"v1.10.1/pt-BR/enterprise/guides/outlook-trigger",
"v1.10.1/pt-BR/enterprise/guides/onedrive-trigger",
"v1.10.1/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.10.1/pt-BR/enterprise/guides/slack-trigger",
"v1.10.1/pt-BR/enterprise/guides/hubspot-trigger",
"v1.10.1/pt-BR/enterprise/guides/salesforce-trigger",
"v1.10.1/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.10.1/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.1/pt-BR/api-reference/introduction",
"v1.10.1/pt-BR/api-reference/inputs",
"v1.10.1/pt-BR/api-reference/kickoff",
"v1.10.1/pt-BR/api-reference/resume",
"v1.10.1/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.10.1/pt-BR/examples/example",
"v1.10.1/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.10.1/pt-BR/changelog"
]
}
]
}
]
},
{
"version": "v1.10.0",
"tabs": [
{
"tab": "Início",
"icon": "house",
"groups": [
{
"group": "Bem-vindo",
"pages": [
"v1.10.0/pt-BR/index"
]
}
]
},
{
"tab": "Documentação",
"icon": "book-open",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.0/pt-BR/introduction",
"v1.10.0/pt-BR/installation",
"v1.10.0/pt-BR/quickstart"
]
},
{
"group": "Guias",
"pages": [
{
"group": "Estratégia",
"icon": "compass",
"pages": [
"v1.10.0/pt-BR/guides/concepts/evaluating-use-cases"
]
},
{
"group": "Agentes",
"icon": "user",
"pages": [
"v1.10.0/pt-BR/guides/agents/crafting-effective-agents"
]
},
{
"group": "Crews",
"icon": "users",
"pages": [
"v1.10.0/pt-BR/guides/crews/first-crew"
]
},
{
"group": "Flows",
"icon": "code-branch",
"pages": [
"v1.10.0/pt-BR/guides/flows/first-flow",
"v1.10.0/pt-BR/guides/flows/mastering-flow-state"
]
},
{
"group": "Avançado",
"icon": "gear",
"pages": [
"v1.10.0/pt-BR/guides/advanced/customizing-prompts",
"v1.10.0/pt-BR/guides/advanced/fingerprinting"
]
}
]
},
{
"group": "Conceitos-Chave",
"pages": [
"v1.10.0/pt-BR/concepts/agents",
"v1.10.0/pt-BR/concepts/tasks",
"v1.10.0/pt-BR/concepts/crews",
"v1.10.0/pt-BR/concepts/flows",
"v1.10.0/pt-BR/concepts/production-architecture",
"v1.10.0/pt-BR/concepts/knowledge",
"v1.10.0/pt-BR/concepts/llms",
"v1.10.0/pt-BR/concepts/files",
"v1.10.0/pt-BR/concepts/processes",
"v1.10.0/pt-BR/concepts/collaboration",
"v1.10.0/pt-BR/concepts/training",
"v1.10.0/pt-BR/concepts/memory",
"v1.10.0/pt-BR/concepts/reasoning",
"v1.10.0/pt-BR/concepts/planning",
"v1.10.0/pt-BR/concepts/testing",
"v1.10.0/pt-BR/concepts/cli",
"v1.10.0/pt-BR/concepts/tools",
"v1.10.0/pt-BR/concepts/event-listener"
]
},
{
"group": "Integração MCP",
"pages": [
"v1.10.0/pt-BR/mcp/overview",
"v1.10.0/pt-BR/mcp/dsl-integration",
"v1.10.0/pt-BR/mcp/stdio",
"v1.10.0/pt-BR/mcp/sse",
"v1.10.0/pt-BR/mcp/streamable-http",
"v1.10.0/pt-BR/mcp/multiple-servers",
"v1.10.0/pt-BR/mcp/security"
]
},
{
"group": "Ferramentas",
"pages": [
"v1.10.0/pt-BR/tools/overview",
{
"group": "Arquivo & Documento",
"icon": "folder-open",
"pages": [
"v1.10.0/pt-BR/tools/file-document/overview",
"v1.10.0/pt-BR/tools/file-document/filereadtool",
"v1.10.0/pt-BR/tools/file-document/filewritetool",
"v1.10.0/pt-BR/tools/file-document/pdfsearchtool",
"v1.10.0/pt-BR/tools/file-document/docxsearchtool",
"v1.10.0/pt-BR/tools/file-document/mdxsearchtool",
"v1.10.0/pt-BR/tools/file-document/xmlsearchtool",
"v1.10.0/pt-BR/tools/file-document/txtsearchtool",
"v1.10.0/pt-BR/tools/file-document/jsonsearchtool",
"v1.10.0/pt-BR/tools/file-document/csvsearchtool",
"v1.10.0/pt-BR/tools/file-document/directorysearchtool",
"v1.10.0/pt-BR/tools/file-document/directoryreadtool"
]
},
{
"group": "Web Scraping & Navegação",
"icon": "globe",
"pages": [
"v1.10.0/pt-BR/tools/web-scraping/overview",
"v1.10.0/pt-BR/tools/web-scraping/scrapewebsitetool",
"v1.10.0/pt-BR/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.0/pt-BR/tools/web-scraping/scrapflyscrapetool",
"v1.10.0/pt-BR/tools/web-scraping/seleniumscrapingtool",
"v1.10.0/pt-BR/tools/web-scraping/scrapegraphscrapetool",
"v1.10.0/pt-BR/tools/web-scraping/spidertool",
"v1.10.0/pt-BR/tools/web-scraping/browserbaseloadtool",
"v1.10.0/pt-BR/tools/web-scraping/hyperbrowserloadtool",
"v1.10.0/pt-BR/tools/web-scraping/stagehandtool",
"v1.10.0/pt-BR/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.0/pt-BR/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.0/pt-BR/tools/web-scraping/oxylabsscraperstool"
]
},
{
"group": "Pesquisa",
"icon": "magnifying-glass",
"pages": [
"v1.10.0/pt-BR/tools/search-research/overview",
"v1.10.0/pt-BR/tools/search-research/serperdevtool",
"v1.10.0/pt-BR/tools/search-research/bravesearchtool",
"v1.10.0/pt-BR/tools/search-research/exasearchtool",
"v1.10.0/pt-BR/tools/search-research/linkupsearchtool",
"v1.10.0/pt-BR/tools/search-research/githubsearchtool",
"v1.10.0/pt-BR/tools/search-research/websitesearchtool",
"v1.10.0/pt-BR/tools/search-research/codedocssearchtool",
"v1.10.0/pt-BR/tools/search-research/youtubechannelsearchtool",
"v1.10.0/pt-BR/tools/search-research/youtubevideosearchtool"
]
},
{
"group": "Dados",
"icon": "database",
"pages": [
"v1.10.0/pt-BR/tools/database-data/overview",
"v1.10.0/pt-BR/tools/database-data/mysqltool",
"v1.10.0/pt-BR/tools/database-data/pgsearchtool",
"v1.10.0/pt-BR/tools/database-data/snowflakesearchtool",
"v1.10.0/pt-BR/tools/database-data/nl2sqltool",
"v1.10.0/pt-BR/tools/database-data/qdrantvectorsearchtool",
"v1.10.0/pt-BR/tools/database-data/weaviatevectorsearchtool"
]
},
{
"group": "IA & Machine Learning",
"icon": "brain",
"pages": [
"v1.10.0/pt-BR/tools/ai-ml/overview",
"v1.10.0/pt-BR/tools/ai-ml/dalletool",
"v1.10.0/pt-BR/tools/ai-ml/visiontool",
"v1.10.0/pt-BR/tools/ai-ml/aimindtool",
"v1.10.0/pt-BR/tools/ai-ml/llamaindextool",
"v1.10.0/pt-BR/tools/ai-ml/langchaintool",
"v1.10.0/pt-BR/tools/ai-ml/ragtool",
"v1.10.0/pt-BR/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "Cloud & Armazenamento",
"icon": "cloud",
"pages": [
"v1.10.0/pt-BR/tools/cloud-storage/overview",
"v1.10.0/pt-BR/tools/cloud-storage/s3readertool",
"v1.10.0/pt-BR/tools/cloud-storage/s3writertool",
"v1.10.0/pt-BR/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.0/pt-BR/tools/integration/overview",
"v1.10.0/pt-BR/tools/integration/bedrockinvokeagenttool",
"v1.10.0/pt-BR/tools/integration/crewaiautomationtool"
]
},
{
"group": "Automação",
"icon": "bolt",
"pages": [
"v1.10.0/pt-BR/tools/automation/overview",
"v1.10.0/pt-BR/tools/automation/apifyactorstool",
"v1.10.0/pt-BR/tools/automation/composiotool",
"v1.10.0/pt-BR/tools/automation/multiontool"
]
}
]
},
{
"group": "Observabilidade",
"pages": [
"v1.10.0/pt-BR/observability/tracing",
"v1.10.0/pt-BR/observability/overview",
"v1.10.0/pt-BR/observability/arize-phoenix",
"v1.10.0/pt-BR/observability/braintrust",
"v1.10.0/pt-BR/observability/datadog",
"v1.10.0/pt-BR/observability/galileo",
"v1.10.0/pt-BR/observability/langdb",
"v1.10.0/pt-BR/observability/langfuse",
"v1.10.0/pt-BR/observability/langtrace",
"v1.10.0/pt-BR/observability/maxim",
"v1.10.0/pt-BR/observability/mlflow",
"v1.10.0/pt-BR/observability/openlit",
"v1.10.0/pt-BR/observability/opik",
"v1.10.0/pt-BR/observability/patronus-evaluation",
"v1.10.0/pt-BR/observability/portkey",
"v1.10.0/pt-BR/observability/weave",
"v1.10.0/pt-BR/observability/truefoundry"
]
},
{
"group": "Aprenda",
"pages": [
"v1.10.0/pt-BR/learn/overview",
"v1.10.0/pt-BR/learn/llm-selection-guide",
"v1.10.0/pt-BR/learn/conditional-tasks",
"v1.10.0/pt-BR/learn/coding-agents",
"v1.10.0/pt-BR/learn/create-custom-tools",
"v1.10.0/pt-BR/learn/custom-llm",
"v1.10.0/pt-BR/learn/custom-manager-agent",
"v1.10.0/pt-BR/learn/customizing-agents",
"v1.10.0/pt-BR/learn/dalle-image-generation",
"v1.10.0/pt-BR/learn/force-tool-output-as-result",
"v1.10.0/pt-BR/learn/hierarchical-process",
"v1.10.0/pt-BR/learn/human-input-on-execution",
"v1.10.0/pt-BR/learn/human-in-the-loop",
"v1.10.0/pt-BR/learn/human-feedback-in-flows",
"v1.10.0/pt-BR/learn/kickoff-async",
"v1.10.0/pt-BR/learn/kickoff-for-each",
"v1.10.0/pt-BR/learn/llm-connections",
"v1.10.0/pt-BR/learn/multimodal-agents",
"v1.10.0/pt-BR/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.0/pt-BR/learn/sequential-process",
"v1.10.0/pt-BR/learn/using-annotations",
"v1.10.0/pt-BR/learn/execution-hooks",
"v1.10.0/pt-BR/learn/llm-hooks",
"v1.10.0/pt-BR/learn/tool-hooks"
]
},
{
"group": "Telemetria",
"pages": [
"v1.10.0/pt-BR/telemetry"
]
}
]
},
{
"tab": "AMP",
"icon": "briefcase",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.0/pt-BR/enterprise/introduction"
]
},
{
"group": "Construir",
"pages": [
"v1.10.0/pt-BR/enterprise/features/automations",
"v1.10.0/pt-BR/enterprise/features/crew-studio",
"v1.10.0/pt-BR/enterprise/features/marketplace",
"v1.10.0/pt-BR/enterprise/features/agent-repositories",
"v1.10.0/pt-BR/enterprise/features/tools-and-integrations",
"v1.10.0/pt-BR/enterprise/features/pii-trace-redactions"
]
},
{
"group": "Operar",
"pages": [
"v1.10.0/pt-BR/enterprise/features/traces",
"v1.10.0/pt-BR/enterprise/features/webhook-streaming",
"v1.10.0/pt-BR/enterprise/features/hallucination-guardrail",
"v1.10.0/pt-BR/enterprise/features/flow-hitl-management"
]
},
{
"group": "Gerenciar",
"pages": [
"v1.10.0/pt-BR/enterprise/features/rbac"
]
},
{
"group": "Documentação de Integração",
"pages": [
"v1.10.0/pt-BR/enterprise/integrations/asana",
"v1.10.0/pt-BR/enterprise/integrations/box",
"v1.10.0/pt-BR/enterprise/integrations/clickup",
"v1.10.0/pt-BR/enterprise/integrations/github",
"v1.10.0/pt-BR/enterprise/integrations/gmail",
"v1.10.0/pt-BR/enterprise/integrations/google_calendar",
"v1.10.0/pt-BR/enterprise/integrations/google_contacts",
"v1.10.0/pt-BR/enterprise/integrations/google_docs",
"v1.10.0/pt-BR/enterprise/integrations/google_drive",
"v1.10.0/pt-BR/enterprise/integrations/google_sheets",
"v1.10.0/pt-BR/enterprise/integrations/google_slides",
"v1.10.0/pt-BR/enterprise/integrations/hubspot",
"v1.10.0/pt-BR/enterprise/integrations/jira",
"v1.10.0/pt-BR/enterprise/integrations/linear",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_excel",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_onedrive",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_outlook",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_sharepoint",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_teams",
"v1.10.0/pt-BR/enterprise/integrations/microsoft_word",
"v1.10.0/pt-BR/enterprise/integrations/notion",
"v1.10.0/pt-BR/enterprise/integrations/salesforce",
"v1.10.0/pt-BR/enterprise/integrations/shopify",
"v1.10.0/pt-BR/enterprise/integrations/slack",
"v1.10.0/pt-BR/enterprise/integrations/stripe",
"v1.10.0/pt-BR/enterprise/integrations/zendesk"
]
},
{
"group": "Guias",
"pages": [
"v1.10.0/pt-BR/enterprise/guides/build-crew",
"v1.10.0/pt-BR/enterprise/guides/prepare-for-deployment",
"v1.10.0/pt-BR/enterprise/guides/deploy-to-amp",
"v1.10.0/pt-BR/enterprise/guides/private-package-registry",
"v1.10.0/pt-BR/enterprise/guides/kickoff-crew",
"v1.10.0/pt-BR/enterprise/guides/update-crew",
"v1.10.0/pt-BR/enterprise/guides/enable-crew-studio",
"v1.10.0/pt-BR/enterprise/guides/azure-openai-setup",
"v1.10.0/pt-BR/enterprise/guides/tool-repository",
"v1.10.0/pt-BR/enterprise/guides/react-component-export",
"v1.10.0/pt-BR/enterprise/guides/team-management",
"v1.10.0/pt-BR/enterprise/guides/human-in-the-loop",
"v1.10.0/pt-BR/enterprise/guides/webhook-automation"
]
},
{
"group": "Triggers",
"pages": [
"v1.10.0/pt-BR/enterprise/guides/automation-triggers",
"v1.10.0/pt-BR/enterprise/guides/gmail-trigger",
"v1.10.0/pt-BR/enterprise/guides/google-calendar-trigger",
"v1.10.0/pt-BR/enterprise/guides/google-drive-trigger",
"v1.10.0/pt-BR/enterprise/guides/outlook-trigger",
"v1.10.0/pt-BR/enterprise/guides/onedrive-trigger",
"v1.10.0/pt-BR/enterprise/guides/microsoft-teams-trigger",
"v1.10.0/pt-BR/enterprise/guides/slack-trigger",
"v1.10.0/pt-BR/enterprise/guides/hubspot-trigger",
"v1.10.0/pt-BR/enterprise/guides/salesforce-trigger",
"v1.10.0/pt-BR/enterprise/guides/zapier-trigger"
]
},
{
"group": "Recursos",
"pages": [
"v1.10.0/pt-BR/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "Referência da API",
"icon": "magnifying-glass",
"groups": [
{
"group": "Começando",
"pages": [
"v1.10.0/pt-BR/api-reference/introduction",
"v1.10.0/pt-BR/api-reference/inputs",
"v1.10.0/pt-BR/api-reference/kickoff",
"v1.10.0/pt-BR/api-reference/resume",
"v1.10.0/pt-BR/api-reference/status"
]
}
]
},
{
"tab": "Exemplos",
"icon": "code",
"groups": [
{
"group": "Exemplos",
"pages": [
"v1.10.0/pt-BR/examples/example",
"v1.10.0/pt-BR/examples/cookbooks"
]
}
]
},
{
"tab": "Notas de Versão",
"icon": "clock",
"groups": [
{
"group": "Notas de Versão",
"pages": [
"v1.10.0/pt-BR/changelog"
]
}
]
}
]
}
]
},
{
"language": "ko",
"global": {
"anchors": [
{
"anchor": "웹사이트",
"href": "https://crewai.com",
"icon": "globe"
},
{
"anchor": "포럼",
"href": "https://community.crewai.com",
"icon": "discourse"
},
{
"anchor": "블로그",
"href": "https://blog.crewai.com",
"icon": "newspaper"
},
{
"anchor": "CrewGPT",
"href": "https://chatgpt.com/g/g-qqTuUWsBY-crewai-assistant",
"icon": "robot"
}
]
},
"versions": [
{
"version": "Edge",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"edge/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"edge/ko/introduction",
"edge/ko/guides/coding-tools/build-with-ai",
"edge/ko/skills",
"edge/ko/installation",
"edge/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"edge/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"edge/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"edge/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"edge/ko/guides/flows/first-flow",
"edge/ko/guides/flows/mastering-flow-state",
"edge/ko/guides/flows/conversational-flows",
"edge/ko/guides/flows/inputs-id-deprecation"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"edge/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"edge/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"edge/ko/guides/advanced/customizing-prompts",
"edge/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"edge/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"edge/ko/concepts/agents",
"edge/ko/concepts/tasks",
"edge/ko/concepts/agent-capabilities",
"edge/ko/concepts/crews",
"edge/ko/concepts/flows",
"edge/ko/concepts/production-architecture",
"edge/ko/concepts/knowledge",
"edge/ko/concepts/skills",
"edge/ko/concepts/llms",
"edge/ko/concepts/files",
"edge/ko/concepts/processes",
"edge/ko/concepts/collaboration",
"edge/ko/concepts/training",
"edge/ko/concepts/memory",
"edge/ko/concepts/reasoning",
"edge/ko/concepts/planning",
"edge/ko/concepts/testing",
"edge/ko/concepts/cli",
"edge/ko/concepts/tools",
"edge/ko/concepts/event-listener",
"edge/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"edge/ko/mcp/overview",
"edge/ko/mcp/dsl-integration",
"edge/ko/mcp/stdio",
"edge/ko/mcp/sse",
"edge/ko/mcp/streamable-http",
"edge/ko/mcp/multiple-servers",
"edge/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"edge/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"edge/ko/tools/file-document/overview",
"edge/ko/tools/file-document/filereadtool",
"edge/ko/tools/file-document/filewritetool",
"edge/ko/tools/file-document/pdfsearchtool",
"edge/ko/tools/file-document/docxsearchtool",
"edge/ko/tools/file-document/mdxsearchtool",
"edge/ko/tools/file-document/xmlsearchtool",
"edge/ko/tools/file-document/txtsearchtool",
"edge/ko/tools/file-document/jsonsearchtool",
"edge/ko/tools/file-document/csvsearchtool",
"edge/ko/tools/file-document/directorysearchtool",
"edge/ko/tools/file-document/directoryreadtool",
"edge/ko/tools/file-document/ocrtool",
"edge/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"edge/ko/tools/web-scraping/overview",
"edge/ko/tools/web-scraping/scrapewebsitetool",
"edge/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"edge/ko/tools/web-scraping/scrapflyscrapetool",
"edge/ko/tools/web-scraping/seleniumscrapingtool",
"edge/ko/tools/web-scraping/scrapegraphscrapetool",
"edge/ko/tools/web-scraping/spidertool",
"edge/ko/tools/web-scraping/browserbaseloadtool",
"edge/ko/tools/web-scraping/hyperbrowserloadtool",
"edge/ko/tools/web-scraping/stagehandtool",
"edge/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"edge/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"edge/ko/tools/web-scraping/oxylabsscraperstool",
"edge/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"edge/ko/tools/search-research/overview",
"edge/ko/tools/search-research/serperdevtool",
"edge/ko/tools/search-research/bravesearchtool",
"edge/ko/tools/search-research/exasearchtool",
"edge/ko/tools/search-research/linkupsearchtool",
"edge/ko/tools/search-research/githubsearchtool",
"edge/ko/tools/search-research/websitesearchtool",
"edge/ko/tools/search-research/codedocssearchtool",
"edge/ko/tools/search-research/youtubechannelsearchtool",
"edge/ko/tools/search-research/youtubevideosearchtool",
"edge/ko/tools/search-research/tavilysearchtool",
"edge/ko/tools/search-research/tavilyextractortool",
"edge/ko/tools/search-research/tavilyresearchtool",
"edge/ko/tools/search-research/arxivpapertool",
"edge/ko/tools/search-research/serpapi-googlesearchtool",
"edge/ko/tools/search-research/serpapi-googleshoppingtool",
"edge/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"edge/ko/tools/database-data/overview",
"edge/ko/tools/database-data/mysqltool",
"edge/ko/tools/database-data/pgsearchtool",
"edge/ko/tools/database-data/snowflakesearchtool",
"edge/ko/tools/database-data/nl2sqltool",
"edge/ko/tools/database-data/qdrantvectorsearchtool",
"edge/ko/tools/database-data/weaviatevectorsearchtool",
"edge/ko/tools/database-data/mongodbvectorsearchtool",
"edge/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"edge/ko/tools/ai-ml/overview",
"edge/ko/tools/ai-ml/dalletool",
"edge/ko/tools/ai-ml/visiontool",
"edge/ko/tools/ai-ml/aimindtool",
"edge/ko/tools/ai-ml/llamaindextool",
"edge/ko/tools/ai-ml/langchaintool",
"edge/ko/tools/ai-ml/ragtool",
"edge/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"edge/ko/tools/cloud-storage/overview",
"edge/ko/tools/cloud-storage/s3readertool",
"edge/ko/tools/cloud-storage/s3writertool",
"edge/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"edge/ko/tools/integration/overview",
"edge/ko/tools/integration/bedrockinvokeagenttool",
"edge/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"edge/ko/tools/automation/overview",
"edge/ko/tools/automation/apifyactorstool",
"edge/ko/tools/automation/composiotool",
"edge/ko/tools/automation/multiontool",
"edge/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"edge/ko/observability/tracing",
"edge/ko/observability/overview",
"edge/ko/observability/arize-phoenix",
"edge/ko/observability/braintrust",
"edge/ko/observability/datadog",
"edge/ko/observability/galileo",
"edge/ko/observability/langdb",
"edge/ko/observability/langfuse",
"edge/ko/observability/langtrace",
"edge/ko/observability/maxim",
"edge/ko/observability/mlflow",
"edge/ko/observability/neatlogs",
"edge/ko/observability/openlit",
"edge/ko/observability/opik",
"edge/ko/observability/patronus-evaluation",
"edge/ko/observability/portkey",
"edge/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"edge/ko/learn/overview",
"edge/ko/learn/llm-selection-guide",
"edge/ko/learn/conditional-tasks",
"edge/ko/learn/coding-agents",
"edge/ko/learn/create-custom-tools",
"edge/ko/learn/custom-llm",
"edge/ko/learn/custom-manager-agent",
"edge/ko/learn/customizing-agents",
"edge/ko/learn/dalle-image-generation",
"edge/ko/learn/force-tool-output-as-result",
"edge/ko/learn/hierarchical-process",
"edge/ko/learn/human-input-on-execution",
"edge/ko/learn/human-in-the-loop",
"edge/ko/learn/human-feedback-in-flows",
"edge/ko/learn/kickoff-async",
"edge/ko/learn/kickoff-for-each",
"edge/ko/learn/llm-connections",
"edge/ko/learn/multimodal-agents",
"edge/ko/learn/replay-tasks-from-latest-crew-kickoff",
"edge/ko/learn/sequential-process",
"edge/ko/learn/using-annotations",
"edge/ko/learn/execution-hooks",
"edge/ko/learn/llm-hooks",
"edge/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"edge/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"edge/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"edge/ko/enterprise/features/automations",
"edge/ko/enterprise/features/crew-studio",
"edge/ko/enterprise/features/marketplace",
"edge/ko/enterprise/features/agent-repositories",
"edge/ko/enterprise/features/tools-and-integrations",
"edge/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"edge/ko/enterprise/features/traces",
"edge/ko/enterprise/features/webhook-streaming",
"edge/ko/enterprise/features/hallucination-guardrail",
"edge/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"edge/ko/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"edge/ko/enterprise/features/secrets-manager/overview",
"edge/ko/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"edge/ko/enterprise/features/secrets-manager/aws",
"edge/ko/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"edge/ko/enterprise/features/secrets-manager/gcp",
"edge/ko/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"edge/ko/enterprise/features/secrets-manager/azure",
"edge/ko/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"edge/ko/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "통합 문서",
"pages": [
"edge/ko/enterprise/integrations/asana",
"edge/ko/enterprise/integrations/box",
"edge/ko/enterprise/integrations/clickup",
"edge/ko/enterprise/integrations/databricks",
"edge/ko/enterprise/integrations/github",
"edge/ko/enterprise/integrations/gmail",
"edge/ko/enterprise/integrations/google_calendar",
"edge/ko/enterprise/integrations/google_contacts",
"edge/ko/enterprise/integrations/google_docs",
"edge/ko/enterprise/integrations/google_drive",
"edge/ko/enterprise/integrations/google_sheets",
"edge/ko/enterprise/integrations/google_slides",
"edge/ko/enterprise/integrations/hubspot",
"edge/ko/enterprise/integrations/jira",
"edge/ko/enterprise/integrations/linear",
"edge/ko/enterprise/integrations/microsoft_excel",
"edge/ko/enterprise/integrations/microsoft_onedrive",
"edge/ko/enterprise/integrations/microsoft_outlook",
"edge/ko/enterprise/integrations/microsoft_sharepoint",
"edge/ko/enterprise/integrations/microsoft_teams",
"edge/ko/enterprise/integrations/microsoft_word",
"edge/ko/enterprise/integrations/notion",
"edge/ko/enterprise/integrations/salesforce",
"edge/ko/enterprise/integrations/shopify",
"edge/ko/enterprise/integrations/slack",
"edge/ko/enterprise/integrations/snowflake",
"edge/ko/enterprise/integrations/stripe",
"edge/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"edge/ko/enterprise/guides/build-crew",
"edge/ko/enterprise/guides/prepare-for-deployment",
"edge/ko/enterprise/guides/deploy-to-amp",
"edge/ko/enterprise/guides/monorepo-deployments",
"edge/ko/enterprise/guides/private-package-registry",
"edge/ko/enterprise/guides/kickoff-crew",
"edge/ko/enterprise/guides/training-crews",
"edge/ko/enterprise/guides/update-crew",
"edge/ko/enterprise/guides/enable-crew-studio",
"edge/ko/enterprise/guides/capture_telemetry_logs",
"edge/ko/enterprise/guides/azure-openai-setup",
"edge/ko/enterprise/guides/tool-repository",
"edge/ko/enterprise/guides/custom-mcp-server",
"edge/ko/enterprise/guides/react-component-export",
"edge/ko/enterprise/guides/team-management",
"edge/ko/enterprise/guides/human-in-the-loop",
"edge/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"edge/ko/enterprise/guides/automation-triggers",
"edge/ko/enterprise/guides/gmail-trigger",
"edge/ko/enterprise/guides/google-calendar-trigger",
"edge/ko/enterprise/guides/google-drive-trigger",
"edge/ko/enterprise/guides/outlook-trigger",
"edge/ko/enterprise/guides/onedrive-trigger",
"edge/ko/enterprise/guides/microsoft-teams-trigger",
"edge/ko/enterprise/guides/slack-trigger",
"edge/ko/enterprise/guides/hubspot-trigger",
"edge/ko/enterprise/guides/salesforce-trigger",
"edge/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"edge/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"edge/ko/api-reference/introduction",
"edge/ko/api-reference/inputs",
"edge/ko/api-reference/kickoff",
"edge/ko/api-reference/resume",
"edge/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"edge/ko/examples/example",
"edge/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"edge/ko/changelog"
]
}
]
}
],
"tag": "Edge"
},
{
"version": "v1.14.7",
"default": true,
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.7/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.7/ko/introduction",
"v1.14.7/ko/guides/coding-tools/build-with-ai",
"v1.14.7/ko/skills",
"v1.14.7/ko/installation",
"v1.14.7/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.7/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.7/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.7/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.7/ko/guides/flows/first-flow",
"v1.14.7/ko/guides/flows/mastering-flow-state",
"v1.14.7/ko/guides/flows/conversational-flows",
"v1.14.7/ko/guides/flows/inputs-id-deprecation"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.7/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.7/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.7/ko/guides/advanced/customizing-prompts",
"v1.14.7/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.7/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.7/ko/concepts/agents",
"v1.14.7/ko/concepts/tasks",
"v1.14.7/ko/concepts/agent-capabilities",
"v1.14.7/ko/concepts/crews",
"v1.14.7/ko/concepts/flows",
"v1.14.7/ko/concepts/production-architecture",
"v1.14.7/ko/concepts/knowledge",
"v1.14.7/ko/concepts/skills",
"v1.14.7/ko/concepts/llms",
"v1.14.7/ko/concepts/files",
"v1.14.7/ko/concepts/processes",
"v1.14.7/ko/concepts/collaboration",
"v1.14.7/ko/concepts/training",
"v1.14.7/ko/concepts/memory",
"v1.14.7/ko/concepts/reasoning",
"v1.14.7/ko/concepts/planning",
"v1.14.7/ko/concepts/testing",
"v1.14.7/ko/concepts/cli",
"v1.14.7/ko/concepts/tools",
"v1.14.7/ko/concepts/event-listener",
"v1.14.7/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.7/ko/mcp/overview",
"v1.14.7/ko/mcp/dsl-integration",
"v1.14.7/ko/mcp/stdio",
"v1.14.7/ko/mcp/sse",
"v1.14.7/ko/mcp/streamable-http",
"v1.14.7/ko/mcp/multiple-servers",
"v1.14.7/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.7/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.7/ko/tools/file-document/overview",
"v1.14.7/ko/tools/file-document/filereadtool",
"v1.14.7/ko/tools/file-document/filewritetool",
"v1.14.7/ko/tools/file-document/pdfsearchtool",
"v1.14.7/ko/tools/file-document/docxsearchtool",
"v1.14.7/ko/tools/file-document/mdxsearchtool",
"v1.14.7/ko/tools/file-document/xmlsearchtool",
"v1.14.7/ko/tools/file-document/txtsearchtool",
"v1.14.7/ko/tools/file-document/jsonsearchtool",
"v1.14.7/ko/tools/file-document/csvsearchtool",
"v1.14.7/ko/tools/file-document/directorysearchtool",
"v1.14.7/ko/tools/file-document/directoryreadtool",
"v1.14.7/ko/tools/file-document/ocrtool",
"v1.14.7/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.7/ko/tools/web-scraping/overview",
"v1.14.7/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.7/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.7/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.7/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.7/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.7/ko/tools/web-scraping/spidertool",
"v1.14.7/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.7/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.7/ko/tools/web-scraping/stagehandtool",
"v1.14.7/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.7/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.7/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.7/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.7/ko/tools/search-research/overview",
"v1.14.7/ko/tools/search-research/serperdevtool",
"v1.14.7/ko/tools/search-research/bravesearchtool",
"v1.14.7/ko/tools/search-research/exasearchtool",
"v1.14.7/ko/tools/search-research/linkupsearchtool",
"v1.14.7/ko/tools/search-research/githubsearchtool",
"v1.14.7/ko/tools/search-research/websitesearchtool",
"v1.14.7/ko/tools/search-research/codedocssearchtool",
"v1.14.7/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.7/ko/tools/search-research/youtubevideosearchtool",
"v1.14.7/ko/tools/search-research/tavilysearchtool",
"v1.14.7/ko/tools/search-research/tavilyextractortool",
"v1.14.7/ko/tools/search-research/tavilyresearchtool",
"v1.14.7/ko/tools/search-research/arxivpapertool",
"v1.14.7/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.7/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.7/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.7/ko/tools/database-data/overview",
"v1.14.7/ko/tools/database-data/mysqltool",
"v1.14.7/ko/tools/database-data/pgsearchtool",
"v1.14.7/ko/tools/database-data/snowflakesearchtool",
"v1.14.7/ko/tools/database-data/nl2sqltool",
"v1.14.7/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.7/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.7/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.7/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.7/ko/tools/ai-ml/overview",
"v1.14.7/ko/tools/ai-ml/dalletool",
"v1.14.7/ko/tools/ai-ml/visiontool",
"v1.14.7/ko/tools/ai-ml/aimindtool",
"v1.14.7/ko/tools/ai-ml/llamaindextool",
"v1.14.7/ko/tools/ai-ml/langchaintool",
"v1.14.7/ko/tools/ai-ml/ragtool",
"v1.14.7/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.7/ko/tools/cloud-storage/overview",
"v1.14.7/ko/tools/cloud-storage/s3readertool",
"v1.14.7/ko/tools/cloud-storage/s3writertool",
"v1.14.7/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.7/ko/tools/integration/overview",
"v1.14.7/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.7/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.7/ko/tools/automation/overview",
"v1.14.7/ko/tools/automation/apifyactorstool",
"v1.14.7/ko/tools/automation/composiotool",
"v1.14.7/ko/tools/automation/multiontool",
"v1.14.7/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.7/ko/observability/tracing",
"v1.14.7/ko/observability/overview",
"v1.14.7/ko/observability/arize-phoenix",
"v1.14.7/ko/observability/braintrust",
"v1.14.7/ko/observability/datadog",
"v1.14.7/ko/observability/galileo",
"v1.14.7/ko/observability/langdb",
"v1.14.7/ko/observability/langfuse",
"v1.14.7/ko/observability/langtrace",
"v1.14.7/ko/observability/maxim",
"v1.14.7/ko/observability/mlflow",
"v1.14.7/ko/observability/neatlogs",
"v1.14.7/ko/observability/openlit",
"v1.14.7/ko/observability/opik",
"v1.14.7/ko/observability/patronus-evaluation",
"v1.14.7/ko/observability/portkey",
"v1.14.7/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.7/ko/learn/overview",
"v1.14.7/ko/learn/llm-selection-guide",
"v1.14.7/ko/learn/conditional-tasks",
"v1.14.7/ko/learn/coding-agents",
"v1.14.7/ko/learn/create-custom-tools",
"v1.14.7/ko/learn/custom-llm",
"v1.14.7/ko/learn/custom-manager-agent",
"v1.14.7/ko/learn/customizing-agents",
"v1.14.7/ko/learn/dalle-image-generation",
"v1.14.7/ko/learn/force-tool-output-as-result",
"v1.14.7/ko/learn/hierarchical-process",
"v1.14.7/ko/learn/human-input-on-execution",
"v1.14.7/ko/learn/human-in-the-loop",
"v1.14.7/ko/learn/human-feedback-in-flows",
"v1.14.7/ko/learn/kickoff-async",
"v1.14.7/ko/learn/kickoff-for-each",
"v1.14.7/ko/learn/llm-connections",
"v1.14.7/ko/learn/multimodal-agents",
"v1.14.7/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.7/ko/learn/sequential-process",
"v1.14.7/ko/learn/using-annotations",
"v1.14.7/ko/learn/execution-hooks",
"v1.14.7/ko/learn/llm-hooks",
"v1.14.7/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.7/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.7/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.7/ko/enterprise/features/automations",
"v1.14.7/ko/enterprise/features/crew-studio",
"v1.14.7/ko/enterprise/features/marketplace",
"v1.14.7/ko/enterprise/features/agent-repositories",
"v1.14.7/ko/enterprise/features/tools-and-integrations",
"v1.14.7/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.7/ko/enterprise/features/traces",
"v1.14.7/ko/enterprise/features/webhook-streaming",
"v1.14.7/ko/enterprise/features/hallucination-guardrail",
"v1.14.7/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.7/ko/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.7/ko/enterprise/features/secrets-manager/overview",
"v1.14.7/ko/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.7/ko/enterprise/features/secrets-manager/aws",
"v1.14.7/ko/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.7/ko/enterprise/features/secrets-manager/gcp",
"v1.14.7/ko/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.7/ko/enterprise/features/secrets-manager/azure",
"v1.14.7/ko/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.7/ko/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.7/ko/enterprise/integrations/asana",
"v1.14.7/ko/enterprise/integrations/box",
"v1.14.7/ko/enterprise/integrations/clickup",
"v1.14.7/ko/enterprise/integrations/databricks",
"v1.14.7/ko/enterprise/integrations/github",
"v1.14.7/ko/enterprise/integrations/gmail",
"v1.14.7/ko/enterprise/integrations/google_calendar",
"v1.14.7/ko/enterprise/integrations/google_contacts",
"v1.14.7/ko/enterprise/integrations/google_docs",
"v1.14.7/ko/enterprise/integrations/google_drive",
"v1.14.7/ko/enterprise/integrations/google_sheets",
"v1.14.7/ko/enterprise/integrations/google_slides",
"v1.14.7/ko/enterprise/integrations/hubspot",
"v1.14.7/ko/enterprise/integrations/jira",
"v1.14.7/ko/enterprise/integrations/linear",
"v1.14.7/ko/enterprise/integrations/microsoft_excel",
"v1.14.7/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.7/ko/enterprise/integrations/microsoft_outlook",
"v1.14.7/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.7/ko/enterprise/integrations/microsoft_teams",
"v1.14.7/ko/enterprise/integrations/microsoft_word",
"v1.14.7/ko/enterprise/integrations/notion",
"v1.14.7/ko/enterprise/integrations/salesforce",
"v1.14.7/ko/enterprise/integrations/shopify",
"v1.14.7/ko/enterprise/integrations/slack",
"v1.14.7/ko/enterprise/integrations/snowflake",
"v1.14.7/ko/enterprise/integrations/stripe",
"v1.14.7/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.7/ko/enterprise/guides/build-crew",
"v1.14.7/ko/enterprise/guides/prepare-for-deployment",
"v1.14.7/ko/enterprise/guides/deploy-to-amp",
"v1.14.7/ko/enterprise/guides/monorepo-deployments",
"v1.14.7/ko/enterprise/guides/private-package-registry",
"v1.14.7/ko/enterprise/guides/kickoff-crew",
"v1.14.7/ko/enterprise/guides/training-crews",
"v1.14.7/ko/enterprise/guides/update-crew",
"v1.14.7/ko/enterprise/guides/enable-crew-studio",
"v1.14.7/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.7/ko/enterprise/guides/azure-openai-setup",
"v1.14.7/ko/enterprise/guides/tool-repository",
"v1.14.7/ko/enterprise/guides/custom-mcp-server",
"v1.14.7/ko/enterprise/guides/react-component-export",
"v1.14.7/ko/enterprise/guides/team-management",
"v1.14.7/ko/enterprise/guides/human-in-the-loop",
"v1.14.7/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.7/ko/enterprise/guides/automation-triggers",
"v1.14.7/ko/enterprise/guides/gmail-trigger",
"v1.14.7/ko/enterprise/guides/google-calendar-trigger",
"v1.14.7/ko/enterprise/guides/google-drive-trigger",
"v1.14.7/ko/enterprise/guides/outlook-trigger",
"v1.14.7/ko/enterprise/guides/onedrive-trigger",
"v1.14.7/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.7/ko/enterprise/guides/slack-trigger",
"v1.14.7/ko/enterprise/guides/hubspot-trigger",
"v1.14.7/ko/enterprise/guides/salesforce-trigger",
"v1.14.7/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.7/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.7/ko/api-reference/introduction",
"v1.14.7/ko/api-reference/inputs",
"v1.14.7/ko/api-reference/kickoff",
"v1.14.7/ko/api-reference/resume",
"v1.14.7/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.7/ko/examples/example",
"v1.14.7/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.7/ko/changelog"
]
}
]
}
],
"tag": "Latest"
},
{
"version": "v1.14.6",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.6/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.6/ko/introduction",
"v1.14.6/ko/guides/coding-tools/build-with-ai",
"v1.14.6/ko/skills",
"v1.14.6/ko/installation",
"v1.14.6/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.6/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.6/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.6/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.6/ko/guides/flows/first-flow",
"v1.14.6/ko/guides/flows/mastering-flow-state",
"v1.14.6/ko/guides/flows/inputs-id-deprecation"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.6/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.6/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.6/ko/guides/advanced/customizing-prompts",
"v1.14.6/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.6/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.6/ko/concepts/agents",
"v1.14.6/ko/concepts/tasks",
"v1.14.6/ko/concepts/agent-capabilities",
"v1.14.6/ko/concepts/crews",
"v1.14.6/ko/concepts/flows",
"v1.14.6/ko/concepts/production-architecture",
"v1.14.6/ko/concepts/knowledge",
"v1.14.6/ko/concepts/skills",
"v1.14.6/ko/concepts/llms",
"v1.14.6/ko/concepts/files",
"v1.14.6/ko/concepts/processes",
"v1.14.6/ko/concepts/collaboration",
"v1.14.6/ko/concepts/training",
"v1.14.6/ko/concepts/memory",
"v1.14.6/ko/concepts/reasoning",
"v1.14.6/ko/concepts/planning",
"v1.14.6/ko/concepts/testing",
"v1.14.6/ko/concepts/cli",
"v1.14.6/ko/concepts/tools",
"v1.14.6/ko/concepts/event-listener",
"v1.14.6/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.6/ko/mcp/overview",
"v1.14.6/ko/mcp/dsl-integration",
"v1.14.6/ko/mcp/stdio",
"v1.14.6/ko/mcp/sse",
"v1.14.6/ko/mcp/streamable-http",
"v1.14.6/ko/mcp/multiple-servers",
"v1.14.6/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.6/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.6/ko/tools/file-document/overview",
"v1.14.6/ko/tools/file-document/filereadtool",
"v1.14.6/ko/tools/file-document/filewritetool",
"v1.14.6/ko/tools/file-document/pdfsearchtool",
"v1.14.6/ko/tools/file-document/docxsearchtool",
"v1.14.6/ko/tools/file-document/mdxsearchtool",
"v1.14.6/ko/tools/file-document/xmlsearchtool",
"v1.14.6/ko/tools/file-document/txtsearchtool",
"v1.14.6/ko/tools/file-document/jsonsearchtool",
"v1.14.6/ko/tools/file-document/csvsearchtool",
"v1.14.6/ko/tools/file-document/directorysearchtool",
"v1.14.6/ko/tools/file-document/directoryreadtool",
"v1.14.6/ko/tools/file-document/ocrtool",
"v1.14.6/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.6/ko/tools/web-scraping/overview",
"v1.14.6/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.6/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.6/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.6/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.6/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.6/ko/tools/web-scraping/spidertool",
"v1.14.6/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.6/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.6/ko/tools/web-scraping/stagehandtool",
"v1.14.6/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.6/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.6/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.6/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.6/ko/tools/search-research/overview",
"v1.14.6/ko/tools/search-research/serperdevtool",
"v1.14.6/ko/tools/search-research/bravesearchtool",
"v1.14.6/ko/tools/search-research/exasearchtool",
"v1.14.6/ko/tools/search-research/linkupsearchtool",
"v1.14.6/ko/tools/search-research/githubsearchtool",
"v1.14.6/ko/tools/search-research/websitesearchtool",
"v1.14.6/ko/tools/search-research/codedocssearchtool",
"v1.14.6/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.6/ko/tools/search-research/youtubevideosearchtool",
"v1.14.6/ko/tools/search-research/tavilysearchtool",
"v1.14.6/ko/tools/search-research/tavilyextractortool",
"v1.14.6/ko/tools/search-research/tavilyresearchtool",
"v1.14.6/ko/tools/search-research/arxivpapertool",
"v1.14.6/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.6/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.6/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.6/ko/tools/database-data/overview",
"v1.14.6/ko/tools/database-data/mysqltool",
"v1.14.6/ko/tools/database-data/pgsearchtool",
"v1.14.6/ko/tools/database-data/snowflakesearchtool",
"v1.14.6/ko/tools/database-data/nl2sqltool",
"v1.14.6/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.6/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.6/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.6/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.6/ko/tools/ai-ml/overview",
"v1.14.6/ko/tools/ai-ml/dalletool",
"v1.14.6/ko/tools/ai-ml/visiontool",
"v1.14.6/ko/tools/ai-ml/aimindtool",
"v1.14.6/ko/tools/ai-ml/llamaindextool",
"v1.14.6/ko/tools/ai-ml/langchaintool",
"v1.14.6/ko/tools/ai-ml/ragtool",
"v1.14.6/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.6/ko/tools/cloud-storage/overview",
"v1.14.6/ko/tools/cloud-storage/s3readertool",
"v1.14.6/ko/tools/cloud-storage/s3writertool",
"v1.14.6/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.6/ko/tools/integration/overview",
"v1.14.6/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.6/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.6/ko/tools/automation/overview",
"v1.14.6/ko/tools/automation/apifyactorstool",
"v1.14.6/ko/tools/automation/composiotool",
"v1.14.6/ko/tools/automation/multiontool",
"v1.14.6/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.6/ko/observability/tracing",
"v1.14.6/ko/observability/overview",
"v1.14.6/ko/observability/arize-phoenix",
"v1.14.6/ko/observability/braintrust",
"v1.14.6/ko/observability/datadog",
"v1.14.6/ko/observability/galileo",
"v1.14.6/ko/observability/langdb",
"v1.14.6/ko/observability/langfuse",
"v1.14.6/ko/observability/langtrace",
"v1.14.6/ko/observability/maxim",
"v1.14.6/ko/observability/mlflow",
"v1.14.6/ko/observability/neatlogs",
"v1.14.6/ko/observability/openlit",
"v1.14.6/ko/observability/opik",
"v1.14.6/ko/observability/patronus-evaluation",
"v1.14.6/ko/observability/portkey",
"v1.14.6/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.6/ko/learn/overview",
"v1.14.6/ko/learn/llm-selection-guide",
"v1.14.6/ko/learn/conditional-tasks",
"v1.14.6/ko/learn/coding-agents",
"v1.14.6/ko/learn/create-custom-tools",
"v1.14.6/ko/learn/custom-llm",
"v1.14.6/ko/learn/custom-manager-agent",
"v1.14.6/ko/learn/customizing-agents",
"v1.14.6/ko/learn/dalle-image-generation",
"v1.14.6/ko/learn/force-tool-output-as-result",
"v1.14.6/ko/learn/hierarchical-process",
"v1.14.6/ko/learn/human-input-on-execution",
"v1.14.6/ko/learn/human-in-the-loop",
"v1.14.6/ko/learn/human-feedback-in-flows",
"v1.14.6/ko/learn/kickoff-async",
"v1.14.6/ko/learn/kickoff-for-each",
"v1.14.6/ko/learn/llm-connections",
"v1.14.6/ko/learn/multimodal-agents",
"v1.14.6/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.6/ko/learn/sequential-process",
"v1.14.6/ko/learn/using-annotations",
"v1.14.6/ko/learn/execution-hooks",
"v1.14.6/ko/learn/llm-hooks",
"v1.14.6/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.6/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.6/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.6/ko/enterprise/features/automations",
"v1.14.6/ko/enterprise/features/crew-studio",
"v1.14.6/ko/enterprise/features/marketplace",
"v1.14.6/ko/enterprise/features/agent-repositories",
"v1.14.6/ko/enterprise/features/tools-and-integrations",
"v1.14.6/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.6/ko/enterprise/features/traces",
"v1.14.6/ko/enterprise/features/webhook-streaming",
"v1.14.6/ko/enterprise/features/hallucination-guardrail",
"v1.14.6/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.6/ko/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.6/ko/enterprise/features/secrets-manager/overview",
"v1.14.6/ko/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.6/ko/enterprise/features/secrets-manager/aws",
"v1.14.6/ko/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.6/ko/enterprise/features/secrets-manager/gcp",
"v1.14.6/ko/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.6/ko/enterprise/features/secrets-manager/azure",
"v1.14.6/ko/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.6/ko/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.6/ko/enterprise/integrations/asana",
"v1.14.6/ko/enterprise/integrations/box",
"v1.14.6/ko/enterprise/integrations/clickup",
"v1.14.6/ko/enterprise/integrations/github",
"v1.14.6/ko/enterprise/integrations/gmail",
"v1.14.6/ko/enterprise/integrations/google_calendar",
"v1.14.6/ko/enterprise/integrations/google_contacts",
"v1.14.6/ko/enterprise/integrations/google_docs",
"v1.14.6/ko/enterprise/integrations/google_drive",
"v1.14.6/ko/enterprise/integrations/google_sheets",
"v1.14.6/ko/enterprise/integrations/google_slides",
"v1.14.6/ko/enterprise/integrations/hubspot",
"v1.14.6/ko/enterprise/integrations/jira",
"v1.14.6/ko/enterprise/integrations/linear",
"v1.14.6/ko/enterprise/integrations/microsoft_excel",
"v1.14.6/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.6/ko/enterprise/integrations/microsoft_outlook",
"v1.14.6/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.6/ko/enterprise/integrations/microsoft_teams",
"v1.14.6/ko/enterprise/integrations/microsoft_word",
"v1.14.6/ko/enterprise/integrations/notion",
"v1.14.6/ko/enterprise/integrations/salesforce",
"v1.14.6/ko/enterprise/integrations/shopify",
"v1.14.6/ko/enterprise/integrations/slack",
"v1.14.6/ko/enterprise/integrations/stripe",
"v1.14.6/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.6/ko/enterprise/guides/build-crew",
"v1.14.6/ko/enterprise/guides/prepare-for-deployment",
"v1.14.6/ko/enterprise/guides/deploy-to-amp",
"v1.14.6/ko/enterprise/guides/private-package-registry",
"v1.14.6/ko/enterprise/guides/kickoff-crew",
"v1.14.6/ko/enterprise/guides/training-crews",
"v1.14.6/ko/enterprise/guides/update-crew",
"v1.14.6/ko/enterprise/guides/enable-crew-studio",
"v1.14.6/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.6/ko/enterprise/guides/azure-openai-setup",
"v1.14.6/ko/enterprise/guides/tool-repository",
"v1.14.6/ko/enterprise/guides/custom-mcp-server",
"v1.14.6/ko/enterprise/guides/react-component-export",
"v1.14.6/ko/enterprise/guides/team-management",
"v1.14.6/ko/enterprise/guides/human-in-the-loop",
"v1.14.6/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.6/ko/enterprise/guides/automation-triggers",
"v1.14.6/ko/enterprise/guides/gmail-trigger",
"v1.14.6/ko/enterprise/guides/google-calendar-trigger",
"v1.14.6/ko/enterprise/guides/google-drive-trigger",
"v1.14.6/ko/enterprise/guides/outlook-trigger",
"v1.14.6/ko/enterprise/guides/onedrive-trigger",
"v1.14.6/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.6/ko/enterprise/guides/slack-trigger",
"v1.14.6/ko/enterprise/guides/hubspot-trigger",
"v1.14.6/ko/enterprise/guides/salesforce-trigger",
"v1.14.6/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.6/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.6/ko/api-reference/introduction",
"v1.14.6/ko/api-reference/inputs",
"v1.14.6/ko/api-reference/kickoff",
"v1.14.6/ko/api-reference/resume",
"v1.14.6/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.6/ko/examples/example",
"v1.14.6/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.6/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.5",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.5/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.5/ko/introduction",
"v1.14.5/ko/guides/coding-tools/build-with-ai",
"v1.14.5/ko/skills",
"v1.14.5/ko/installation",
"v1.14.5/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.5/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.5/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.5/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.5/ko/guides/flows/first-flow",
"v1.14.5/ko/guides/flows/mastering-flow-state",
"v1.14.5/ko/guides/flows/inputs-id-deprecation"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.5/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.5/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.5/ko/guides/advanced/customizing-prompts",
"v1.14.5/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.5/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.5/ko/concepts/agents",
"v1.14.5/ko/concepts/tasks",
"v1.14.5/ko/concepts/agent-capabilities",
"v1.14.5/ko/concepts/crews",
"v1.14.5/ko/concepts/flows",
"v1.14.5/ko/concepts/production-architecture",
"v1.14.5/ko/concepts/knowledge",
"v1.14.5/ko/concepts/skills",
"v1.14.5/ko/concepts/llms",
"v1.14.5/ko/concepts/files",
"v1.14.5/ko/concepts/processes",
"v1.14.5/ko/concepts/collaboration",
"v1.14.5/ko/concepts/training",
"v1.14.5/ko/concepts/memory",
"v1.14.5/ko/concepts/reasoning",
"v1.14.5/ko/concepts/planning",
"v1.14.5/ko/concepts/testing",
"v1.14.5/ko/concepts/cli",
"v1.14.5/ko/concepts/tools",
"v1.14.5/ko/concepts/event-listener",
"v1.14.5/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.5/ko/mcp/overview",
"v1.14.5/ko/mcp/dsl-integration",
"v1.14.5/ko/mcp/stdio",
"v1.14.5/ko/mcp/sse",
"v1.14.5/ko/mcp/streamable-http",
"v1.14.5/ko/mcp/multiple-servers",
"v1.14.5/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.5/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.5/ko/tools/file-document/overview",
"v1.14.5/ko/tools/file-document/filereadtool",
"v1.14.5/ko/tools/file-document/filewritetool",
"v1.14.5/ko/tools/file-document/pdfsearchtool",
"v1.14.5/ko/tools/file-document/docxsearchtool",
"v1.14.5/ko/tools/file-document/mdxsearchtool",
"v1.14.5/ko/tools/file-document/xmlsearchtool",
"v1.14.5/ko/tools/file-document/txtsearchtool",
"v1.14.5/ko/tools/file-document/jsonsearchtool",
"v1.14.5/ko/tools/file-document/csvsearchtool",
"v1.14.5/ko/tools/file-document/directorysearchtool",
"v1.14.5/ko/tools/file-document/directoryreadtool",
"v1.14.5/ko/tools/file-document/ocrtool",
"v1.14.5/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.5/ko/tools/web-scraping/overview",
"v1.14.5/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.5/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.5/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.5/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.5/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.5/ko/tools/web-scraping/spidertool",
"v1.14.5/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.5/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.5/ko/tools/web-scraping/stagehandtool",
"v1.14.5/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.5/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.5/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.5/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.5/ko/tools/search-research/overview",
"v1.14.5/ko/tools/search-research/serperdevtool",
"v1.14.5/ko/tools/search-research/bravesearchtool",
"v1.14.5/ko/tools/search-research/exasearchtool",
"v1.14.5/ko/tools/search-research/linkupsearchtool",
"v1.14.5/ko/tools/search-research/githubsearchtool",
"v1.14.5/ko/tools/search-research/websitesearchtool",
"v1.14.5/ko/tools/search-research/codedocssearchtool",
"v1.14.5/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.5/ko/tools/search-research/youtubevideosearchtool",
"v1.14.5/ko/tools/search-research/tavilysearchtool",
"v1.14.5/ko/tools/search-research/tavilyextractortool",
"v1.14.5/ko/tools/search-research/tavilyresearchtool",
"v1.14.5/ko/tools/search-research/arxivpapertool",
"v1.14.5/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.5/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.5/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.5/ko/tools/database-data/overview",
"v1.14.5/ko/tools/database-data/mysqltool",
"v1.14.5/ko/tools/database-data/pgsearchtool",
"v1.14.5/ko/tools/database-data/snowflakesearchtool",
"v1.14.5/ko/tools/database-data/nl2sqltool",
"v1.14.5/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.5/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.5/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.5/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.5/ko/tools/ai-ml/overview",
"v1.14.5/ko/tools/ai-ml/dalletool",
"v1.14.5/ko/tools/ai-ml/visiontool",
"v1.14.5/ko/tools/ai-ml/aimindtool",
"v1.14.5/ko/tools/ai-ml/llamaindextool",
"v1.14.5/ko/tools/ai-ml/langchaintool",
"v1.14.5/ko/tools/ai-ml/ragtool",
"v1.14.5/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.5/ko/tools/cloud-storage/overview",
"v1.14.5/ko/tools/cloud-storage/s3readertool",
"v1.14.5/ko/tools/cloud-storage/s3writertool",
"v1.14.5/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.5/ko/tools/integration/overview",
"v1.14.5/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.5/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.5/ko/tools/automation/overview",
"v1.14.5/ko/tools/automation/apifyactorstool",
"v1.14.5/ko/tools/automation/composiotool",
"v1.14.5/ko/tools/automation/multiontool",
"v1.14.5/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.5/ko/observability/tracing",
"v1.14.5/ko/observability/overview",
"v1.14.5/ko/observability/arize-phoenix",
"v1.14.5/ko/observability/braintrust",
"v1.14.5/ko/observability/datadog",
"v1.14.5/ko/observability/galileo",
"v1.14.5/ko/observability/langdb",
"v1.14.5/ko/observability/langfuse",
"v1.14.5/ko/observability/langtrace",
"v1.14.5/ko/observability/maxim",
"v1.14.5/ko/observability/mlflow",
"v1.14.5/ko/observability/neatlogs",
"v1.14.5/ko/observability/openlit",
"v1.14.5/ko/observability/opik",
"v1.14.5/ko/observability/patronus-evaluation",
"v1.14.5/ko/observability/portkey",
"v1.14.5/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.5/ko/learn/overview",
"v1.14.5/ko/learn/llm-selection-guide",
"v1.14.5/ko/learn/conditional-tasks",
"v1.14.5/ko/learn/coding-agents",
"v1.14.5/ko/learn/create-custom-tools",
"v1.14.5/ko/learn/custom-llm",
"v1.14.5/ko/learn/custom-manager-agent",
"v1.14.5/ko/learn/customizing-agents",
"v1.14.5/ko/learn/dalle-image-generation",
"v1.14.5/ko/learn/force-tool-output-as-result",
"v1.14.5/ko/learn/hierarchical-process",
"v1.14.5/ko/learn/human-input-on-execution",
"v1.14.5/ko/learn/human-in-the-loop",
"v1.14.5/ko/learn/human-feedback-in-flows",
"v1.14.5/ko/learn/kickoff-async",
"v1.14.5/ko/learn/kickoff-for-each",
"v1.14.5/ko/learn/llm-connections",
"v1.14.5/ko/learn/multimodal-agents",
"v1.14.5/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.5/ko/learn/sequential-process",
"v1.14.5/ko/learn/using-annotations",
"v1.14.5/ko/learn/execution-hooks",
"v1.14.5/ko/learn/llm-hooks",
"v1.14.5/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.5/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.5/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.5/ko/enterprise/features/automations",
"v1.14.5/ko/enterprise/features/crew-studio",
"v1.14.5/ko/enterprise/features/marketplace",
"v1.14.5/ko/enterprise/features/agent-repositories",
"v1.14.5/ko/enterprise/features/tools-and-integrations",
"v1.14.5/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.5/ko/enterprise/features/traces",
"v1.14.5/ko/enterprise/features/webhook-streaming",
"v1.14.5/ko/enterprise/features/hallucination-guardrail",
"v1.14.5/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.5/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.5/ko/enterprise/integrations/asana",
"v1.14.5/ko/enterprise/integrations/box",
"v1.14.5/ko/enterprise/integrations/clickup",
"v1.14.5/ko/enterprise/integrations/github",
"v1.14.5/ko/enterprise/integrations/gmail",
"v1.14.5/ko/enterprise/integrations/google_calendar",
"v1.14.5/ko/enterprise/integrations/google_contacts",
"v1.14.5/ko/enterprise/integrations/google_docs",
"v1.14.5/ko/enterprise/integrations/google_drive",
"v1.14.5/ko/enterprise/integrations/google_sheets",
"v1.14.5/ko/enterprise/integrations/google_slides",
"v1.14.5/ko/enterprise/integrations/hubspot",
"v1.14.5/ko/enterprise/integrations/jira",
"v1.14.5/ko/enterprise/integrations/linear",
"v1.14.5/ko/enterprise/integrations/microsoft_excel",
"v1.14.5/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.5/ko/enterprise/integrations/microsoft_outlook",
"v1.14.5/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.5/ko/enterprise/integrations/microsoft_teams",
"v1.14.5/ko/enterprise/integrations/microsoft_word",
"v1.14.5/ko/enterprise/integrations/notion",
"v1.14.5/ko/enterprise/integrations/salesforce",
"v1.14.5/ko/enterprise/integrations/shopify",
"v1.14.5/ko/enterprise/integrations/slack",
"v1.14.5/ko/enterprise/integrations/stripe",
"v1.14.5/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.5/ko/enterprise/guides/build-crew",
"v1.14.5/ko/enterprise/guides/prepare-for-deployment",
"v1.14.5/ko/enterprise/guides/deploy-to-amp",
"v1.14.5/ko/enterprise/guides/private-package-registry",
"v1.14.5/ko/enterprise/guides/kickoff-crew",
"v1.14.5/ko/enterprise/guides/training-crews",
"v1.14.5/ko/enterprise/guides/update-crew",
"v1.14.5/ko/enterprise/guides/enable-crew-studio",
"v1.14.5/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.5/ko/enterprise/guides/azure-openai-setup",
"v1.14.5/ko/enterprise/guides/tool-repository",
"v1.14.5/ko/enterprise/guides/custom-mcp-server",
"v1.14.5/ko/enterprise/guides/react-component-export",
"v1.14.5/ko/enterprise/guides/team-management",
"v1.14.5/ko/enterprise/guides/human-in-the-loop",
"v1.14.5/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.5/ko/enterprise/guides/automation-triggers",
"v1.14.5/ko/enterprise/guides/gmail-trigger",
"v1.14.5/ko/enterprise/guides/google-calendar-trigger",
"v1.14.5/ko/enterprise/guides/google-drive-trigger",
"v1.14.5/ko/enterprise/guides/outlook-trigger",
"v1.14.5/ko/enterprise/guides/onedrive-trigger",
"v1.14.5/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.5/ko/enterprise/guides/slack-trigger",
"v1.14.5/ko/enterprise/guides/hubspot-trigger",
"v1.14.5/ko/enterprise/guides/salesforce-trigger",
"v1.14.5/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.5/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.5/ko/api-reference/introduction",
"v1.14.5/ko/api-reference/inputs",
"v1.14.5/ko/api-reference/kickoff",
"v1.14.5/ko/api-reference/resume",
"v1.14.5/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.5/ko/examples/example",
"v1.14.5/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.5/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.4",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.4/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.4/ko/introduction",
"v1.14.4/ko/guides/coding-tools/build-with-ai",
"v1.14.4/ko/skills",
"v1.14.4/ko/installation",
"v1.14.4/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.4/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.4/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.4/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.4/ko/guides/flows/first-flow",
"v1.14.4/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.4/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.4/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.4/ko/guides/advanced/customizing-prompts",
"v1.14.4/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.4/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.4/ko/concepts/agents",
"v1.14.4/ko/concepts/tasks",
"v1.14.4/ko/concepts/agent-capabilities",
"v1.14.4/ko/concepts/crews",
"v1.14.4/ko/concepts/flows",
"v1.14.4/ko/concepts/production-architecture",
"v1.14.4/ko/concepts/knowledge",
"v1.14.4/ko/concepts/skills",
"v1.14.4/ko/concepts/llms",
"v1.14.4/ko/concepts/files",
"v1.14.4/ko/concepts/processes",
"v1.14.4/ko/concepts/collaboration",
"v1.14.4/ko/concepts/training",
"v1.14.4/ko/concepts/memory",
"v1.14.4/ko/concepts/reasoning",
"v1.14.4/ko/concepts/planning",
"v1.14.4/ko/concepts/testing",
"v1.14.4/ko/concepts/cli",
"v1.14.4/ko/concepts/tools",
"v1.14.4/ko/concepts/event-listener",
"v1.14.4/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.4/ko/mcp/overview",
"v1.14.4/ko/mcp/dsl-integration",
"v1.14.4/ko/mcp/stdio",
"v1.14.4/ko/mcp/sse",
"v1.14.4/ko/mcp/streamable-http",
"v1.14.4/ko/mcp/multiple-servers",
"v1.14.4/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.4/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.4/ko/tools/file-document/overview",
"v1.14.4/ko/tools/file-document/filereadtool",
"v1.14.4/ko/tools/file-document/filewritetool",
"v1.14.4/ko/tools/file-document/pdfsearchtool",
"v1.14.4/ko/tools/file-document/docxsearchtool",
"v1.14.4/ko/tools/file-document/mdxsearchtool",
"v1.14.4/ko/tools/file-document/xmlsearchtool",
"v1.14.4/ko/tools/file-document/txtsearchtool",
"v1.14.4/ko/tools/file-document/jsonsearchtool",
"v1.14.4/ko/tools/file-document/csvsearchtool",
"v1.14.4/ko/tools/file-document/directorysearchtool",
"v1.14.4/ko/tools/file-document/directoryreadtool",
"v1.14.4/ko/tools/file-document/ocrtool",
"v1.14.4/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.4/ko/tools/web-scraping/overview",
"v1.14.4/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.4/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.4/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.4/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.4/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.4/ko/tools/web-scraping/spidertool",
"v1.14.4/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.4/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.4/ko/tools/web-scraping/stagehandtool",
"v1.14.4/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.4/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.4/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.4/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.4/ko/tools/search-research/overview",
"v1.14.4/ko/tools/search-research/serperdevtool",
"v1.14.4/ko/tools/search-research/bravesearchtool",
"v1.14.4/ko/tools/search-research/exasearchtool",
"v1.14.4/ko/tools/search-research/linkupsearchtool",
"v1.14.4/ko/tools/search-research/githubsearchtool",
"v1.14.4/ko/tools/search-research/websitesearchtool",
"v1.14.4/ko/tools/search-research/codedocssearchtool",
"v1.14.4/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.4/ko/tools/search-research/youtubevideosearchtool",
"v1.14.4/ko/tools/search-research/tavilysearchtool",
"v1.14.4/ko/tools/search-research/tavilyextractortool",
"v1.14.4/ko/tools/search-research/tavilyresearchtool",
"v1.14.4/ko/tools/search-research/arxivpapertool",
"v1.14.4/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.4/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.4/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.4/ko/tools/database-data/overview",
"v1.14.4/ko/tools/database-data/mysqltool",
"v1.14.4/ko/tools/database-data/pgsearchtool",
"v1.14.4/ko/tools/database-data/snowflakesearchtool",
"v1.14.4/ko/tools/database-data/nl2sqltool",
"v1.14.4/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.4/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.4/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.4/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.4/ko/tools/ai-ml/overview",
"v1.14.4/ko/tools/ai-ml/dalletool",
"v1.14.4/ko/tools/ai-ml/visiontool",
"v1.14.4/ko/tools/ai-ml/aimindtool",
"v1.14.4/ko/tools/ai-ml/llamaindextool",
"v1.14.4/ko/tools/ai-ml/langchaintool",
"v1.14.4/ko/tools/ai-ml/ragtool",
"v1.14.4/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.4/ko/tools/cloud-storage/overview",
"v1.14.4/ko/tools/cloud-storage/s3readertool",
"v1.14.4/ko/tools/cloud-storage/s3writertool",
"v1.14.4/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.4/ko/tools/integration/overview",
"v1.14.4/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.4/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.4/ko/tools/automation/overview",
"v1.14.4/ko/tools/automation/apifyactorstool",
"v1.14.4/ko/tools/automation/composiotool",
"v1.14.4/ko/tools/automation/multiontool",
"v1.14.4/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.4/ko/observability/tracing",
"v1.14.4/ko/observability/overview",
"v1.14.4/ko/observability/arize-phoenix",
"v1.14.4/ko/observability/braintrust",
"v1.14.4/ko/observability/datadog",
"v1.14.4/ko/observability/galileo",
"v1.14.4/ko/observability/langdb",
"v1.14.4/ko/observability/langfuse",
"v1.14.4/ko/observability/langtrace",
"v1.14.4/ko/observability/maxim",
"v1.14.4/ko/observability/mlflow",
"v1.14.4/ko/observability/neatlogs",
"v1.14.4/ko/observability/openlit",
"v1.14.4/ko/observability/opik",
"v1.14.4/ko/observability/patronus-evaluation",
"v1.14.4/ko/observability/portkey",
"v1.14.4/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.4/ko/learn/overview",
"v1.14.4/ko/learn/llm-selection-guide",
"v1.14.4/ko/learn/conditional-tasks",
"v1.14.4/ko/learn/coding-agents",
"v1.14.4/ko/learn/create-custom-tools",
"v1.14.4/ko/learn/custom-llm",
"v1.14.4/ko/learn/custom-manager-agent",
"v1.14.4/ko/learn/customizing-agents",
"v1.14.4/ko/learn/dalle-image-generation",
"v1.14.4/ko/learn/force-tool-output-as-result",
"v1.14.4/ko/learn/hierarchical-process",
"v1.14.4/ko/learn/human-input-on-execution",
"v1.14.4/ko/learn/human-in-the-loop",
"v1.14.4/ko/learn/human-feedback-in-flows",
"v1.14.4/ko/learn/kickoff-async",
"v1.14.4/ko/learn/kickoff-for-each",
"v1.14.4/ko/learn/llm-connections",
"v1.14.4/ko/learn/multimodal-agents",
"v1.14.4/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.4/ko/learn/sequential-process",
"v1.14.4/ko/learn/using-annotations",
"v1.14.4/ko/learn/execution-hooks",
"v1.14.4/ko/learn/llm-hooks",
"v1.14.4/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.4/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.4/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.4/ko/enterprise/features/automations",
"v1.14.4/ko/enterprise/features/crew-studio",
"v1.14.4/ko/enterprise/features/marketplace",
"v1.14.4/ko/enterprise/features/agent-repositories",
"v1.14.4/ko/enterprise/features/tools-and-integrations",
"v1.14.4/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.4/ko/enterprise/features/traces",
"v1.14.4/ko/enterprise/features/webhook-streaming",
"v1.14.4/ko/enterprise/features/hallucination-guardrail",
"v1.14.4/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.4/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.4/ko/enterprise/integrations/asana",
"v1.14.4/ko/enterprise/integrations/box",
"v1.14.4/ko/enterprise/integrations/clickup",
"v1.14.4/ko/enterprise/integrations/github",
"v1.14.4/ko/enterprise/integrations/gmail",
"v1.14.4/ko/enterprise/integrations/google_calendar",
"v1.14.4/ko/enterprise/integrations/google_contacts",
"v1.14.4/ko/enterprise/integrations/google_docs",
"v1.14.4/ko/enterprise/integrations/google_drive",
"v1.14.4/ko/enterprise/integrations/google_sheets",
"v1.14.4/ko/enterprise/integrations/google_slides",
"v1.14.4/ko/enterprise/integrations/hubspot",
"v1.14.4/ko/enterprise/integrations/jira",
"v1.14.4/ko/enterprise/integrations/linear",
"v1.14.4/ko/enterprise/integrations/microsoft_excel",
"v1.14.4/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.4/ko/enterprise/integrations/microsoft_outlook",
"v1.14.4/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.4/ko/enterprise/integrations/microsoft_teams",
"v1.14.4/ko/enterprise/integrations/microsoft_word",
"v1.14.4/ko/enterprise/integrations/notion",
"v1.14.4/ko/enterprise/integrations/salesforce",
"v1.14.4/ko/enterprise/integrations/shopify",
"v1.14.4/ko/enterprise/integrations/slack",
"v1.14.4/ko/enterprise/integrations/stripe",
"v1.14.4/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.4/ko/enterprise/guides/build-crew",
"v1.14.4/ko/enterprise/guides/prepare-for-deployment",
"v1.14.4/ko/enterprise/guides/deploy-to-amp",
"v1.14.4/ko/enterprise/guides/private-package-registry",
"v1.14.4/ko/enterprise/guides/kickoff-crew",
"v1.14.4/ko/enterprise/guides/training-crews",
"v1.14.4/ko/enterprise/guides/update-crew",
"v1.14.4/ko/enterprise/guides/enable-crew-studio",
"v1.14.4/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.4/ko/enterprise/guides/azure-openai-setup",
"v1.14.4/ko/enterprise/guides/tool-repository",
"v1.14.4/ko/enterprise/guides/custom-mcp-server",
"v1.14.4/ko/enterprise/guides/react-component-export",
"v1.14.4/ko/enterprise/guides/team-management",
"v1.14.4/ko/enterprise/guides/human-in-the-loop",
"v1.14.4/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.4/ko/enterprise/guides/automation-triggers",
"v1.14.4/ko/enterprise/guides/gmail-trigger",
"v1.14.4/ko/enterprise/guides/google-calendar-trigger",
"v1.14.4/ko/enterprise/guides/google-drive-trigger",
"v1.14.4/ko/enterprise/guides/outlook-trigger",
"v1.14.4/ko/enterprise/guides/onedrive-trigger",
"v1.14.4/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.4/ko/enterprise/guides/slack-trigger",
"v1.14.4/ko/enterprise/guides/hubspot-trigger",
"v1.14.4/ko/enterprise/guides/salesforce-trigger",
"v1.14.4/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.4/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.4/ko/api-reference/introduction",
"v1.14.4/ko/api-reference/inputs",
"v1.14.4/ko/api-reference/kickoff",
"v1.14.4/ko/api-reference/resume",
"v1.14.4/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.4/ko/examples/example",
"v1.14.4/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.4/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.3",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.3/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.3/ko/introduction",
"v1.14.3/ko/guides/coding-tools/build-with-ai",
"v1.14.3/ko/skills",
"v1.14.3/ko/installation",
"v1.14.3/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.3/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.3/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.3/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.3/ko/guides/flows/first-flow",
"v1.14.3/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.3/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.3/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.3/ko/guides/advanced/customizing-prompts",
"v1.14.3/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.3/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.3/ko/concepts/agents",
"v1.14.3/ko/concepts/tasks",
"v1.14.3/ko/concepts/agent-capabilities",
"v1.14.3/ko/concepts/crews",
"v1.14.3/ko/concepts/flows",
"v1.14.3/ko/concepts/production-architecture",
"v1.14.3/ko/concepts/knowledge",
"v1.14.3/ko/concepts/skills",
"v1.14.3/ko/concepts/llms",
"v1.14.3/ko/concepts/files",
"v1.14.3/ko/concepts/processes",
"v1.14.3/ko/concepts/collaboration",
"v1.14.3/ko/concepts/training",
"v1.14.3/ko/concepts/memory",
"v1.14.3/ko/concepts/reasoning",
"v1.14.3/ko/concepts/planning",
"v1.14.3/ko/concepts/testing",
"v1.14.3/ko/concepts/cli",
"v1.14.3/ko/concepts/tools",
"v1.14.3/ko/concepts/event-listener",
"v1.14.3/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.3/ko/mcp/overview",
"v1.14.3/ko/mcp/dsl-integration",
"v1.14.3/ko/mcp/stdio",
"v1.14.3/ko/mcp/sse",
"v1.14.3/ko/mcp/streamable-http",
"v1.14.3/ko/mcp/multiple-servers",
"v1.14.3/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.3/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.3/ko/tools/file-document/overview",
"v1.14.3/ko/tools/file-document/filereadtool",
"v1.14.3/ko/tools/file-document/filewritetool",
"v1.14.3/ko/tools/file-document/pdfsearchtool",
"v1.14.3/ko/tools/file-document/docxsearchtool",
"v1.14.3/ko/tools/file-document/mdxsearchtool",
"v1.14.3/ko/tools/file-document/xmlsearchtool",
"v1.14.3/ko/tools/file-document/txtsearchtool",
"v1.14.3/ko/tools/file-document/jsonsearchtool",
"v1.14.3/ko/tools/file-document/csvsearchtool",
"v1.14.3/ko/tools/file-document/directorysearchtool",
"v1.14.3/ko/tools/file-document/directoryreadtool",
"v1.14.3/ko/tools/file-document/ocrtool",
"v1.14.3/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.3/ko/tools/web-scraping/overview",
"v1.14.3/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.3/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.3/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.3/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.3/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.3/ko/tools/web-scraping/spidertool",
"v1.14.3/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.3/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.3/ko/tools/web-scraping/stagehandtool",
"v1.14.3/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.3/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.3/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.3/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.3/ko/tools/search-research/overview",
"v1.14.3/ko/tools/search-research/serperdevtool",
"v1.14.3/ko/tools/search-research/bravesearchtool",
"v1.14.3/ko/tools/search-research/exasearchtool",
"v1.14.3/ko/tools/search-research/linkupsearchtool",
"v1.14.3/ko/tools/search-research/githubsearchtool",
"v1.14.3/ko/tools/search-research/websitesearchtool",
"v1.14.3/ko/tools/search-research/codedocssearchtool",
"v1.14.3/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.3/ko/tools/search-research/youtubevideosearchtool",
"v1.14.3/ko/tools/search-research/tavilysearchtool",
"v1.14.3/ko/tools/search-research/tavilyextractortool",
"v1.14.3/ko/tools/search-research/arxivpapertool",
"v1.14.3/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.3/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.3/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.3/ko/tools/database-data/overview",
"v1.14.3/ko/tools/database-data/mysqltool",
"v1.14.3/ko/tools/database-data/pgsearchtool",
"v1.14.3/ko/tools/database-data/snowflakesearchtool",
"v1.14.3/ko/tools/database-data/nl2sqltool",
"v1.14.3/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.3/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.3/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.3/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.3/ko/tools/ai-ml/overview",
"v1.14.3/ko/tools/ai-ml/dalletool",
"v1.14.3/ko/tools/ai-ml/visiontool",
"v1.14.3/ko/tools/ai-ml/aimindtool",
"v1.14.3/ko/tools/ai-ml/llamaindextool",
"v1.14.3/ko/tools/ai-ml/langchaintool",
"v1.14.3/ko/tools/ai-ml/ragtool",
"v1.14.3/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.3/ko/tools/cloud-storage/overview",
"v1.14.3/ko/tools/cloud-storage/s3readertool",
"v1.14.3/ko/tools/cloud-storage/s3writertool",
"v1.14.3/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.3/ko/tools/integration/overview",
"v1.14.3/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.3/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.3/ko/tools/automation/overview",
"v1.14.3/ko/tools/automation/apifyactorstool",
"v1.14.3/ko/tools/automation/composiotool",
"v1.14.3/ko/tools/automation/multiontool",
"v1.14.3/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.3/ko/observability/tracing",
"v1.14.3/ko/observability/overview",
"v1.14.3/ko/observability/arize-phoenix",
"v1.14.3/ko/observability/braintrust",
"v1.14.3/ko/observability/datadog",
"v1.14.3/ko/observability/galileo",
"v1.14.3/ko/observability/langdb",
"v1.14.3/ko/observability/langfuse",
"v1.14.3/ko/observability/langtrace",
"v1.14.3/ko/observability/maxim",
"v1.14.3/ko/observability/mlflow",
"v1.14.3/ko/observability/neatlogs",
"v1.14.3/ko/observability/openlit",
"v1.14.3/ko/observability/opik",
"v1.14.3/ko/observability/patronus-evaluation",
"v1.14.3/ko/observability/portkey",
"v1.14.3/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.3/ko/learn/overview",
"v1.14.3/ko/learn/llm-selection-guide",
"v1.14.3/ko/learn/conditional-tasks",
"v1.14.3/ko/learn/coding-agents",
"v1.14.3/ko/learn/create-custom-tools",
"v1.14.3/ko/learn/custom-llm",
"v1.14.3/ko/learn/custom-manager-agent",
"v1.14.3/ko/learn/customizing-agents",
"v1.14.3/ko/learn/dalle-image-generation",
"v1.14.3/ko/learn/force-tool-output-as-result",
"v1.14.3/ko/learn/hierarchical-process",
"v1.14.3/ko/learn/human-input-on-execution",
"v1.14.3/ko/learn/human-in-the-loop",
"v1.14.3/ko/learn/human-feedback-in-flows",
"v1.14.3/ko/learn/kickoff-async",
"v1.14.3/ko/learn/kickoff-for-each",
"v1.14.3/ko/learn/llm-connections",
"v1.14.3/ko/learn/multimodal-agents",
"v1.14.3/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.3/ko/learn/sequential-process",
"v1.14.3/ko/learn/using-annotations",
"v1.14.3/ko/learn/execution-hooks",
"v1.14.3/ko/learn/llm-hooks",
"v1.14.3/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.3/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.3/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.3/ko/enterprise/features/automations",
"v1.14.3/ko/enterprise/features/crew-studio",
"v1.14.3/ko/enterprise/features/marketplace",
"v1.14.3/ko/enterprise/features/agent-repositories",
"v1.14.3/ko/enterprise/features/tools-and-integrations",
"v1.14.3/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.3/ko/enterprise/features/traces",
"v1.14.3/ko/enterprise/features/webhook-streaming",
"v1.14.3/ko/enterprise/features/hallucination-guardrail",
"v1.14.3/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.3/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.3/ko/enterprise/integrations/asana",
"v1.14.3/ko/enterprise/integrations/box",
"v1.14.3/ko/enterprise/integrations/clickup",
"v1.14.3/ko/enterprise/integrations/github",
"v1.14.3/ko/enterprise/integrations/gmail",
"v1.14.3/ko/enterprise/integrations/google_calendar",
"v1.14.3/ko/enterprise/integrations/google_contacts",
"v1.14.3/ko/enterprise/integrations/google_docs",
"v1.14.3/ko/enterprise/integrations/google_drive",
"v1.14.3/ko/enterprise/integrations/google_sheets",
"v1.14.3/ko/enterprise/integrations/google_slides",
"v1.14.3/ko/enterprise/integrations/hubspot",
"v1.14.3/ko/enterprise/integrations/jira",
"v1.14.3/ko/enterprise/integrations/linear",
"v1.14.3/ko/enterprise/integrations/microsoft_excel",
"v1.14.3/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.3/ko/enterprise/integrations/microsoft_outlook",
"v1.14.3/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.3/ko/enterprise/integrations/microsoft_teams",
"v1.14.3/ko/enterprise/integrations/microsoft_word",
"v1.14.3/ko/enterprise/integrations/notion",
"v1.14.3/ko/enterprise/integrations/salesforce",
"v1.14.3/ko/enterprise/integrations/shopify",
"v1.14.3/ko/enterprise/integrations/slack",
"v1.14.3/ko/enterprise/integrations/stripe",
"v1.14.3/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.3/ko/enterprise/guides/build-crew",
"v1.14.3/ko/enterprise/guides/prepare-for-deployment",
"v1.14.3/ko/enterprise/guides/deploy-to-amp",
"v1.14.3/ko/enterprise/guides/private-package-registry",
"v1.14.3/ko/enterprise/guides/kickoff-crew",
"v1.14.3/ko/enterprise/guides/training-crews",
"v1.14.3/ko/enterprise/guides/update-crew",
"v1.14.3/ko/enterprise/guides/enable-crew-studio",
"v1.14.3/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.3/ko/enterprise/guides/azure-openai-setup",
"v1.14.3/ko/enterprise/guides/tool-repository",
"v1.14.3/ko/enterprise/guides/custom-mcp-server",
"v1.14.3/ko/enterprise/guides/react-component-export",
"v1.14.3/ko/enterprise/guides/team-management",
"v1.14.3/ko/enterprise/guides/human-in-the-loop",
"v1.14.3/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.3/ko/enterprise/guides/automation-triggers",
"v1.14.3/ko/enterprise/guides/gmail-trigger",
"v1.14.3/ko/enterprise/guides/google-calendar-trigger",
"v1.14.3/ko/enterprise/guides/google-drive-trigger",
"v1.14.3/ko/enterprise/guides/outlook-trigger",
"v1.14.3/ko/enterprise/guides/onedrive-trigger",
"v1.14.3/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.3/ko/enterprise/guides/slack-trigger",
"v1.14.3/ko/enterprise/guides/hubspot-trigger",
"v1.14.3/ko/enterprise/guides/salesforce-trigger",
"v1.14.3/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.3/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.3/ko/api-reference/introduction",
"v1.14.3/ko/api-reference/inputs",
"v1.14.3/ko/api-reference/kickoff",
"v1.14.3/ko/api-reference/resume",
"v1.14.3/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.3/ko/examples/example",
"v1.14.3/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.3/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.2",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.2/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.2/ko/introduction",
"v1.14.2/ko/skills",
"v1.14.2/ko/installation",
"v1.14.2/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.2/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.2/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.2/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.2/ko/guides/flows/first-flow",
"v1.14.2/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.2/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.2/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.2/ko/guides/advanced/customizing-prompts",
"v1.14.2/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.2/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.2/ko/concepts/agents",
"v1.14.2/ko/concepts/tasks",
"v1.14.2/ko/concepts/agent-capabilities",
"v1.14.2/ko/concepts/crews",
"v1.14.2/ko/concepts/flows",
"v1.14.2/ko/concepts/production-architecture",
"v1.14.2/ko/concepts/knowledge",
"v1.14.2/ko/concepts/skills",
"v1.14.2/ko/concepts/llms",
"v1.14.2/ko/concepts/files",
"v1.14.2/ko/concepts/processes",
"v1.14.2/ko/concepts/collaboration",
"v1.14.2/ko/concepts/training",
"v1.14.2/ko/concepts/memory",
"v1.14.2/ko/concepts/reasoning",
"v1.14.2/ko/concepts/planning",
"v1.14.2/ko/concepts/testing",
"v1.14.2/ko/concepts/cli",
"v1.14.2/ko/concepts/tools",
"v1.14.2/ko/concepts/event-listener",
"v1.14.2/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.2/ko/mcp/overview",
"v1.14.2/ko/mcp/dsl-integration",
"v1.14.2/ko/mcp/stdio",
"v1.14.2/ko/mcp/sse",
"v1.14.2/ko/mcp/streamable-http",
"v1.14.2/ko/mcp/multiple-servers",
"v1.14.2/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.2/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.2/ko/tools/file-document/overview",
"v1.14.2/ko/tools/file-document/filereadtool",
"v1.14.2/ko/tools/file-document/filewritetool",
"v1.14.2/ko/tools/file-document/pdfsearchtool",
"v1.14.2/ko/tools/file-document/docxsearchtool",
"v1.14.2/ko/tools/file-document/mdxsearchtool",
"v1.14.2/ko/tools/file-document/xmlsearchtool",
"v1.14.2/ko/tools/file-document/txtsearchtool",
"v1.14.2/ko/tools/file-document/jsonsearchtool",
"v1.14.2/ko/tools/file-document/csvsearchtool",
"v1.14.2/ko/tools/file-document/directorysearchtool",
"v1.14.2/ko/tools/file-document/directoryreadtool",
"v1.14.2/ko/tools/file-document/ocrtool",
"v1.14.2/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.2/ko/tools/web-scraping/overview",
"v1.14.2/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.2/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.2/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.2/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.2/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.2/ko/tools/web-scraping/spidertool",
"v1.14.2/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.2/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.2/ko/tools/web-scraping/stagehandtool",
"v1.14.2/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.2/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.2/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.2/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.2/ko/tools/search-research/overview",
"v1.14.2/ko/tools/search-research/serperdevtool",
"v1.14.2/ko/tools/search-research/bravesearchtool",
"v1.14.2/ko/tools/search-research/exasearchtool",
"v1.14.2/ko/tools/search-research/linkupsearchtool",
"v1.14.2/ko/tools/search-research/githubsearchtool",
"v1.14.2/ko/tools/search-research/websitesearchtool",
"v1.14.2/ko/tools/search-research/codedocssearchtool",
"v1.14.2/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.2/ko/tools/search-research/youtubevideosearchtool",
"v1.14.2/ko/tools/search-research/tavilysearchtool",
"v1.14.2/ko/tools/search-research/tavilyextractortool",
"v1.14.2/ko/tools/search-research/arxivpapertool",
"v1.14.2/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.2/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.2/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.2/ko/tools/database-data/overview",
"v1.14.2/ko/tools/database-data/mysqltool",
"v1.14.2/ko/tools/database-data/pgsearchtool",
"v1.14.2/ko/tools/database-data/snowflakesearchtool",
"v1.14.2/ko/tools/database-data/nl2sqltool",
"v1.14.2/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.2/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.2/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.2/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.2/ko/tools/ai-ml/overview",
"v1.14.2/ko/tools/ai-ml/dalletool",
"v1.14.2/ko/tools/ai-ml/visiontool",
"v1.14.2/ko/tools/ai-ml/aimindtool",
"v1.14.2/ko/tools/ai-ml/llamaindextool",
"v1.14.2/ko/tools/ai-ml/langchaintool",
"v1.14.2/ko/tools/ai-ml/ragtool",
"v1.14.2/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.2/ko/tools/cloud-storage/overview",
"v1.14.2/ko/tools/cloud-storage/s3readertool",
"v1.14.2/ko/tools/cloud-storage/s3writertool",
"v1.14.2/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.2/ko/tools/integration/overview",
"v1.14.2/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.2/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.2/ko/tools/automation/overview",
"v1.14.2/ko/tools/automation/apifyactorstool",
"v1.14.2/ko/tools/automation/composiotool",
"v1.14.2/ko/tools/automation/multiontool",
"v1.14.2/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.2/ko/observability/tracing",
"v1.14.2/ko/observability/overview",
"v1.14.2/ko/observability/arize-phoenix",
"v1.14.2/ko/observability/braintrust",
"v1.14.2/ko/observability/datadog",
"v1.14.2/ko/observability/galileo",
"v1.14.2/ko/observability/langdb",
"v1.14.2/ko/observability/langfuse",
"v1.14.2/ko/observability/langtrace",
"v1.14.2/ko/observability/maxim",
"v1.14.2/ko/observability/mlflow",
"v1.14.2/ko/observability/neatlogs",
"v1.14.2/ko/observability/openlit",
"v1.14.2/ko/observability/opik",
"v1.14.2/ko/observability/patronus-evaluation",
"v1.14.2/ko/observability/portkey",
"v1.14.2/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.2/ko/learn/overview",
"v1.14.2/ko/learn/llm-selection-guide",
"v1.14.2/ko/learn/conditional-tasks",
"v1.14.2/ko/learn/coding-agents",
"v1.14.2/ko/learn/create-custom-tools",
"v1.14.2/ko/learn/custom-llm",
"v1.14.2/ko/learn/custom-manager-agent",
"v1.14.2/ko/learn/customizing-agents",
"v1.14.2/ko/learn/dalle-image-generation",
"v1.14.2/ko/learn/force-tool-output-as-result",
"v1.14.2/ko/learn/hierarchical-process",
"v1.14.2/ko/learn/human-input-on-execution",
"v1.14.2/ko/learn/human-in-the-loop",
"v1.14.2/ko/learn/human-feedback-in-flows",
"v1.14.2/ko/learn/kickoff-async",
"v1.14.2/ko/learn/kickoff-for-each",
"v1.14.2/ko/learn/llm-connections",
"v1.14.2/ko/learn/multimodal-agents",
"v1.14.2/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.2/ko/learn/sequential-process",
"v1.14.2/ko/learn/using-annotations",
"v1.14.2/ko/learn/execution-hooks",
"v1.14.2/ko/learn/llm-hooks",
"v1.14.2/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.2/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.2/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.2/ko/enterprise/features/automations",
"v1.14.2/ko/enterprise/features/crew-studio",
"v1.14.2/ko/enterprise/features/marketplace",
"v1.14.2/ko/enterprise/features/agent-repositories",
"v1.14.2/ko/enterprise/features/tools-and-integrations",
"v1.14.2/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.2/ko/enterprise/features/traces",
"v1.14.2/ko/enterprise/features/webhook-streaming",
"v1.14.2/ko/enterprise/features/hallucination-guardrail",
"v1.14.2/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.2/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.2/ko/enterprise/integrations/asana",
"v1.14.2/ko/enterprise/integrations/box",
"v1.14.2/ko/enterprise/integrations/clickup",
"v1.14.2/ko/enterprise/integrations/github",
"v1.14.2/ko/enterprise/integrations/gmail",
"v1.14.2/ko/enterprise/integrations/google_calendar",
"v1.14.2/ko/enterprise/integrations/google_contacts",
"v1.14.2/ko/enterprise/integrations/google_docs",
"v1.14.2/ko/enterprise/integrations/google_drive",
"v1.14.2/ko/enterprise/integrations/google_sheets",
"v1.14.2/ko/enterprise/integrations/google_slides",
"v1.14.2/ko/enterprise/integrations/hubspot",
"v1.14.2/ko/enterprise/integrations/jira",
"v1.14.2/ko/enterprise/integrations/linear",
"v1.14.2/ko/enterprise/integrations/microsoft_excel",
"v1.14.2/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.2/ko/enterprise/integrations/microsoft_outlook",
"v1.14.2/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.2/ko/enterprise/integrations/microsoft_teams",
"v1.14.2/ko/enterprise/integrations/microsoft_word",
"v1.14.2/ko/enterprise/integrations/notion",
"v1.14.2/ko/enterprise/integrations/salesforce",
"v1.14.2/ko/enterprise/integrations/shopify",
"v1.14.2/ko/enterprise/integrations/slack",
"v1.14.2/ko/enterprise/integrations/stripe",
"v1.14.2/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.2/ko/enterprise/guides/build-crew",
"v1.14.2/ko/enterprise/guides/prepare-for-deployment",
"v1.14.2/ko/enterprise/guides/deploy-to-amp",
"v1.14.2/ko/enterprise/guides/private-package-registry",
"v1.14.2/ko/enterprise/guides/kickoff-crew",
"v1.14.2/ko/enterprise/guides/training-crews",
"v1.14.2/ko/enterprise/guides/update-crew",
"v1.14.2/ko/enterprise/guides/enable-crew-studio",
"v1.14.2/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.2/ko/enterprise/guides/azure-openai-setup",
"v1.14.2/ko/enterprise/guides/tool-repository",
"v1.14.2/ko/enterprise/guides/custom-mcp-server",
"v1.14.2/ko/enterprise/guides/react-component-export",
"v1.14.2/ko/enterprise/guides/team-management",
"v1.14.2/ko/enterprise/guides/human-in-the-loop",
"v1.14.2/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.2/ko/enterprise/guides/automation-triggers",
"v1.14.2/ko/enterprise/guides/gmail-trigger",
"v1.14.2/ko/enterprise/guides/google-calendar-trigger",
"v1.14.2/ko/enterprise/guides/google-drive-trigger",
"v1.14.2/ko/enterprise/guides/outlook-trigger",
"v1.14.2/ko/enterprise/guides/onedrive-trigger",
"v1.14.2/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.2/ko/enterprise/guides/slack-trigger",
"v1.14.2/ko/enterprise/guides/hubspot-trigger",
"v1.14.2/ko/enterprise/guides/salesforce-trigger",
"v1.14.2/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.2/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.2/ko/api-reference/introduction",
"v1.14.2/ko/api-reference/inputs",
"v1.14.2/ko/api-reference/kickoff",
"v1.14.2/ko/api-reference/resume",
"v1.14.2/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.2/ko/examples/example",
"v1.14.2/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.2/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.1",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.1/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.1/ko/introduction",
"v1.14.1/ko/skills",
"v1.14.1/ko/installation",
"v1.14.1/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.1/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.1/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.1/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.1/ko/guides/flows/first-flow",
"v1.14.1/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.1/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.1/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.1/ko/guides/advanced/customizing-prompts",
"v1.14.1/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.1/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.1/ko/concepts/agents",
"v1.14.1/ko/concepts/tasks",
"v1.14.1/ko/concepts/agent-capabilities",
"v1.14.1/ko/concepts/crews",
"v1.14.1/ko/concepts/flows",
"v1.14.1/ko/concepts/production-architecture",
"v1.14.1/ko/concepts/knowledge",
"v1.14.1/ko/concepts/skills",
"v1.14.1/ko/concepts/llms",
"v1.14.1/ko/concepts/files",
"v1.14.1/ko/concepts/processes",
"v1.14.1/ko/concepts/collaboration",
"v1.14.1/ko/concepts/training",
"v1.14.1/ko/concepts/memory",
"v1.14.1/ko/concepts/reasoning",
"v1.14.1/ko/concepts/planning",
"v1.14.1/ko/concepts/testing",
"v1.14.1/ko/concepts/cli",
"v1.14.1/ko/concepts/tools",
"v1.14.1/ko/concepts/event-listener",
"v1.14.1/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.1/ko/mcp/overview",
"v1.14.1/ko/mcp/dsl-integration",
"v1.14.1/ko/mcp/stdio",
"v1.14.1/ko/mcp/sse",
"v1.14.1/ko/mcp/streamable-http",
"v1.14.1/ko/mcp/multiple-servers",
"v1.14.1/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.1/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.1/ko/tools/file-document/overview",
"v1.14.1/ko/tools/file-document/filereadtool",
"v1.14.1/ko/tools/file-document/filewritetool",
"v1.14.1/ko/tools/file-document/pdfsearchtool",
"v1.14.1/ko/tools/file-document/docxsearchtool",
"v1.14.1/ko/tools/file-document/mdxsearchtool",
"v1.14.1/ko/tools/file-document/xmlsearchtool",
"v1.14.1/ko/tools/file-document/txtsearchtool",
"v1.14.1/ko/tools/file-document/jsonsearchtool",
"v1.14.1/ko/tools/file-document/csvsearchtool",
"v1.14.1/ko/tools/file-document/directorysearchtool",
"v1.14.1/ko/tools/file-document/directoryreadtool",
"v1.14.1/ko/tools/file-document/ocrtool",
"v1.14.1/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.1/ko/tools/web-scraping/overview",
"v1.14.1/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.1/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.1/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.1/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.1/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.1/ko/tools/web-scraping/spidertool",
"v1.14.1/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.1/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.1/ko/tools/web-scraping/stagehandtool",
"v1.14.1/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.1/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.1/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.1/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.1/ko/tools/search-research/overview",
"v1.14.1/ko/tools/search-research/serperdevtool",
"v1.14.1/ko/tools/search-research/bravesearchtool",
"v1.14.1/ko/tools/search-research/exasearchtool",
"v1.14.1/ko/tools/search-research/linkupsearchtool",
"v1.14.1/ko/tools/search-research/githubsearchtool",
"v1.14.1/ko/tools/search-research/websitesearchtool",
"v1.14.1/ko/tools/search-research/codedocssearchtool",
"v1.14.1/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.1/ko/tools/search-research/youtubevideosearchtool",
"v1.14.1/ko/tools/search-research/tavilysearchtool",
"v1.14.1/ko/tools/search-research/tavilyextractortool",
"v1.14.1/ko/tools/search-research/arxivpapertool",
"v1.14.1/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.1/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.1/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.1/ko/tools/database-data/overview",
"v1.14.1/ko/tools/database-data/mysqltool",
"v1.14.1/ko/tools/database-data/pgsearchtool",
"v1.14.1/ko/tools/database-data/snowflakesearchtool",
"v1.14.1/ko/tools/database-data/nl2sqltool",
"v1.14.1/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.1/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.1/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.1/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.1/ko/tools/ai-ml/overview",
"v1.14.1/ko/tools/ai-ml/dalletool",
"v1.14.1/ko/tools/ai-ml/visiontool",
"v1.14.1/ko/tools/ai-ml/aimindtool",
"v1.14.1/ko/tools/ai-ml/llamaindextool",
"v1.14.1/ko/tools/ai-ml/langchaintool",
"v1.14.1/ko/tools/ai-ml/ragtool",
"v1.14.1/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.1/ko/tools/cloud-storage/overview",
"v1.14.1/ko/tools/cloud-storage/s3readertool",
"v1.14.1/ko/tools/cloud-storage/s3writertool",
"v1.14.1/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.1/ko/tools/integration/overview",
"v1.14.1/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.1/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.1/ko/tools/automation/overview",
"v1.14.1/ko/tools/automation/apifyactorstool",
"v1.14.1/ko/tools/automation/composiotool",
"v1.14.1/ko/tools/automation/multiontool",
"v1.14.1/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.1/ko/observability/tracing",
"v1.14.1/ko/observability/overview",
"v1.14.1/ko/observability/arize-phoenix",
"v1.14.1/ko/observability/braintrust",
"v1.14.1/ko/observability/datadog",
"v1.14.1/ko/observability/galileo",
"v1.14.1/ko/observability/langdb",
"v1.14.1/ko/observability/langfuse",
"v1.14.1/ko/observability/langtrace",
"v1.14.1/ko/observability/maxim",
"v1.14.1/ko/observability/mlflow",
"v1.14.1/ko/observability/neatlogs",
"v1.14.1/ko/observability/openlit",
"v1.14.1/ko/observability/opik",
"v1.14.1/ko/observability/patronus-evaluation",
"v1.14.1/ko/observability/portkey",
"v1.14.1/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.1/ko/learn/overview",
"v1.14.1/ko/learn/llm-selection-guide",
"v1.14.1/ko/learn/conditional-tasks",
"v1.14.1/ko/learn/coding-agents",
"v1.14.1/ko/learn/create-custom-tools",
"v1.14.1/ko/learn/custom-llm",
"v1.14.1/ko/learn/custom-manager-agent",
"v1.14.1/ko/learn/customizing-agents",
"v1.14.1/ko/learn/dalle-image-generation",
"v1.14.1/ko/learn/force-tool-output-as-result",
"v1.14.1/ko/learn/hierarchical-process",
"v1.14.1/ko/learn/human-input-on-execution",
"v1.14.1/ko/learn/human-in-the-loop",
"v1.14.1/ko/learn/human-feedback-in-flows",
"v1.14.1/ko/learn/kickoff-async",
"v1.14.1/ko/learn/kickoff-for-each",
"v1.14.1/ko/learn/llm-connections",
"v1.14.1/ko/learn/multimodal-agents",
"v1.14.1/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.1/ko/learn/sequential-process",
"v1.14.1/ko/learn/using-annotations",
"v1.14.1/ko/learn/execution-hooks",
"v1.14.1/ko/learn/llm-hooks",
"v1.14.1/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.1/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.1/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.1/ko/enterprise/features/automations",
"v1.14.1/ko/enterprise/features/crew-studio",
"v1.14.1/ko/enterprise/features/marketplace",
"v1.14.1/ko/enterprise/features/agent-repositories",
"v1.14.1/ko/enterprise/features/tools-and-integrations",
"v1.14.1/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.1/ko/enterprise/features/traces",
"v1.14.1/ko/enterprise/features/webhook-streaming",
"v1.14.1/ko/enterprise/features/hallucination-guardrail",
"v1.14.1/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.1/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.1/ko/enterprise/integrations/asana",
"v1.14.1/ko/enterprise/integrations/box",
"v1.14.1/ko/enterprise/integrations/clickup",
"v1.14.1/ko/enterprise/integrations/github",
"v1.14.1/ko/enterprise/integrations/gmail",
"v1.14.1/ko/enterprise/integrations/google_calendar",
"v1.14.1/ko/enterprise/integrations/google_contacts",
"v1.14.1/ko/enterprise/integrations/google_docs",
"v1.14.1/ko/enterprise/integrations/google_drive",
"v1.14.1/ko/enterprise/integrations/google_sheets",
"v1.14.1/ko/enterprise/integrations/google_slides",
"v1.14.1/ko/enterprise/integrations/hubspot",
"v1.14.1/ko/enterprise/integrations/jira",
"v1.14.1/ko/enterprise/integrations/linear",
"v1.14.1/ko/enterprise/integrations/microsoft_excel",
"v1.14.1/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.1/ko/enterprise/integrations/microsoft_outlook",
"v1.14.1/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.1/ko/enterprise/integrations/microsoft_teams",
"v1.14.1/ko/enterprise/integrations/microsoft_word",
"v1.14.1/ko/enterprise/integrations/notion",
"v1.14.1/ko/enterprise/integrations/salesforce",
"v1.14.1/ko/enterprise/integrations/shopify",
"v1.14.1/ko/enterprise/integrations/slack",
"v1.14.1/ko/enterprise/integrations/stripe",
"v1.14.1/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.1/ko/enterprise/guides/build-crew",
"v1.14.1/ko/enterprise/guides/prepare-for-deployment",
"v1.14.1/ko/enterprise/guides/deploy-to-amp",
"v1.14.1/ko/enterprise/guides/private-package-registry",
"v1.14.1/ko/enterprise/guides/kickoff-crew",
"v1.14.1/ko/enterprise/guides/training-crews",
"v1.14.1/ko/enterprise/guides/update-crew",
"v1.14.1/ko/enterprise/guides/enable-crew-studio",
"v1.14.1/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.1/ko/enterprise/guides/azure-openai-setup",
"v1.14.1/ko/enterprise/guides/tool-repository",
"v1.14.1/ko/enterprise/guides/custom-mcp-server",
"v1.14.1/ko/enterprise/guides/react-component-export",
"v1.14.1/ko/enterprise/guides/team-management",
"v1.14.1/ko/enterprise/guides/human-in-the-loop",
"v1.14.1/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.1/ko/enterprise/guides/automation-triggers",
"v1.14.1/ko/enterprise/guides/gmail-trigger",
"v1.14.1/ko/enterprise/guides/google-calendar-trigger",
"v1.14.1/ko/enterprise/guides/google-drive-trigger",
"v1.14.1/ko/enterprise/guides/outlook-trigger",
"v1.14.1/ko/enterprise/guides/onedrive-trigger",
"v1.14.1/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.1/ko/enterprise/guides/slack-trigger",
"v1.14.1/ko/enterprise/guides/hubspot-trigger",
"v1.14.1/ko/enterprise/guides/salesforce-trigger",
"v1.14.1/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.1/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.1/ko/api-reference/introduction",
"v1.14.1/ko/api-reference/inputs",
"v1.14.1/ko/api-reference/kickoff",
"v1.14.1/ko/api-reference/resume",
"v1.14.1/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.1/ko/examples/example",
"v1.14.1/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.1/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.14.0",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.14.0/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.0/ko/introduction",
"v1.14.0/ko/installation",
"v1.14.0/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.14.0/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.14.0/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.14.0/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.14.0/ko/guides/flows/first-flow",
"v1.14.0/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.14.0/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.14.0/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.14.0/ko/guides/advanced/customizing-prompts",
"v1.14.0/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.14.0/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.14.0/ko/concepts/agents",
"v1.14.0/ko/concepts/tasks",
"v1.14.0/ko/concepts/agent-capabilities",
"v1.14.0/ko/concepts/crews",
"v1.14.0/ko/concepts/flows",
"v1.14.0/ko/concepts/production-architecture",
"v1.14.0/ko/concepts/knowledge",
"v1.14.0/ko/concepts/skills",
"v1.14.0/ko/concepts/llms",
"v1.14.0/ko/concepts/files",
"v1.14.0/ko/concepts/processes",
"v1.14.0/ko/concepts/collaboration",
"v1.14.0/ko/concepts/training",
"v1.14.0/ko/concepts/memory",
"v1.14.0/ko/concepts/reasoning",
"v1.14.0/ko/concepts/planning",
"v1.14.0/ko/concepts/testing",
"v1.14.0/ko/concepts/cli",
"v1.14.0/ko/concepts/tools",
"v1.14.0/ko/concepts/event-listener",
"v1.14.0/ko/concepts/checkpointing"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.14.0/ko/mcp/overview",
"v1.14.0/ko/mcp/dsl-integration",
"v1.14.0/ko/mcp/stdio",
"v1.14.0/ko/mcp/sse",
"v1.14.0/ko/mcp/streamable-http",
"v1.14.0/ko/mcp/multiple-servers",
"v1.14.0/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.14.0/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.14.0/ko/tools/file-document/overview",
"v1.14.0/ko/tools/file-document/filereadtool",
"v1.14.0/ko/tools/file-document/filewritetool",
"v1.14.0/ko/tools/file-document/pdfsearchtool",
"v1.14.0/ko/tools/file-document/docxsearchtool",
"v1.14.0/ko/tools/file-document/mdxsearchtool",
"v1.14.0/ko/tools/file-document/xmlsearchtool",
"v1.14.0/ko/tools/file-document/txtsearchtool",
"v1.14.0/ko/tools/file-document/jsonsearchtool",
"v1.14.0/ko/tools/file-document/csvsearchtool",
"v1.14.0/ko/tools/file-document/directorysearchtool",
"v1.14.0/ko/tools/file-document/directoryreadtool",
"v1.14.0/ko/tools/file-document/ocrtool",
"v1.14.0/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.14.0/ko/tools/web-scraping/overview",
"v1.14.0/ko/tools/web-scraping/scrapewebsitetool",
"v1.14.0/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.0/ko/tools/web-scraping/scrapflyscrapetool",
"v1.14.0/ko/tools/web-scraping/seleniumscrapingtool",
"v1.14.0/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.14.0/ko/tools/web-scraping/spidertool",
"v1.14.0/ko/tools/web-scraping/browserbaseloadtool",
"v1.14.0/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.14.0/ko/tools/web-scraping/stagehandtool",
"v1.14.0/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.0/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.0/ko/tools/web-scraping/oxylabsscraperstool",
"v1.14.0/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.14.0/ko/tools/search-research/overview",
"v1.14.0/ko/tools/search-research/serperdevtool",
"v1.14.0/ko/tools/search-research/bravesearchtool",
"v1.14.0/ko/tools/search-research/exasearchtool",
"v1.14.0/ko/tools/search-research/linkupsearchtool",
"v1.14.0/ko/tools/search-research/githubsearchtool",
"v1.14.0/ko/tools/search-research/websitesearchtool",
"v1.14.0/ko/tools/search-research/codedocssearchtool",
"v1.14.0/ko/tools/search-research/youtubechannelsearchtool",
"v1.14.0/ko/tools/search-research/youtubevideosearchtool",
"v1.14.0/ko/tools/search-research/tavilysearchtool",
"v1.14.0/ko/tools/search-research/tavilyextractortool",
"v1.14.0/ko/tools/search-research/arxivpapertool",
"v1.14.0/ko/tools/search-research/serpapi-googlesearchtool",
"v1.14.0/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.14.0/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.14.0/ko/tools/database-data/overview",
"v1.14.0/ko/tools/database-data/mysqltool",
"v1.14.0/ko/tools/database-data/pgsearchtool",
"v1.14.0/ko/tools/database-data/snowflakesearchtool",
"v1.14.0/ko/tools/database-data/nl2sqltool",
"v1.14.0/ko/tools/database-data/qdrantvectorsearchtool",
"v1.14.0/ko/tools/database-data/weaviatevectorsearchtool",
"v1.14.0/ko/tools/database-data/mongodbvectorsearchtool",
"v1.14.0/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.14.0/ko/tools/ai-ml/overview",
"v1.14.0/ko/tools/ai-ml/dalletool",
"v1.14.0/ko/tools/ai-ml/visiontool",
"v1.14.0/ko/tools/ai-ml/aimindtool",
"v1.14.0/ko/tools/ai-ml/llamaindextool",
"v1.14.0/ko/tools/ai-ml/langchaintool",
"v1.14.0/ko/tools/ai-ml/ragtool",
"v1.14.0/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.14.0/ko/tools/cloud-storage/overview",
"v1.14.0/ko/tools/cloud-storage/s3readertool",
"v1.14.0/ko/tools/cloud-storage/s3writertool",
"v1.14.0/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.0/ko/tools/integration/overview",
"v1.14.0/ko/tools/integration/bedrockinvokeagenttool",
"v1.14.0/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.14.0/ko/tools/automation/overview",
"v1.14.0/ko/tools/automation/apifyactorstool",
"v1.14.0/ko/tools/automation/composiotool",
"v1.14.0/ko/tools/automation/multiontool",
"v1.14.0/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.0/ko/observability/tracing",
"v1.14.0/ko/observability/overview",
"v1.14.0/ko/observability/arize-phoenix",
"v1.14.0/ko/observability/braintrust",
"v1.14.0/ko/observability/datadog",
"v1.14.0/ko/observability/galileo",
"v1.14.0/ko/observability/langdb",
"v1.14.0/ko/observability/langfuse",
"v1.14.0/ko/observability/langtrace",
"v1.14.0/ko/observability/maxim",
"v1.14.0/ko/observability/mlflow",
"v1.14.0/ko/observability/neatlogs",
"v1.14.0/ko/observability/openlit",
"v1.14.0/ko/observability/opik",
"v1.14.0/ko/observability/patronus-evaluation",
"v1.14.0/ko/observability/portkey",
"v1.14.0/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.14.0/ko/learn/overview",
"v1.14.0/ko/learn/llm-selection-guide",
"v1.14.0/ko/learn/conditional-tasks",
"v1.14.0/ko/learn/coding-agents",
"v1.14.0/ko/learn/create-custom-tools",
"v1.14.0/ko/learn/custom-llm",
"v1.14.0/ko/learn/custom-manager-agent",
"v1.14.0/ko/learn/customizing-agents",
"v1.14.0/ko/learn/dalle-image-generation",
"v1.14.0/ko/learn/force-tool-output-as-result",
"v1.14.0/ko/learn/hierarchical-process",
"v1.14.0/ko/learn/human-input-on-execution",
"v1.14.0/ko/learn/human-in-the-loop",
"v1.14.0/ko/learn/human-feedback-in-flows",
"v1.14.0/ko/learn/kickoff-async",
"v1.14.0/ko/learn/kickoff-for-each",
"v1.14.0/ko/learn/llm-connections",
"v1.14.0/ko/learn/multimodal-agents",
"v1.14.0/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.0/ko/learn/sequential-process",
"v1.14.0/ko/learn/using-annotations",
"v1.14.0/ko/learn/execution-hooks",
"v1.14.0/ko/learn/llm-hooks",
"v1.14.0/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.0/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.0/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.14.0/ko/enterprise/features/automations",
"v1.14.0/ko/enterprise/features/crew-studio",
"v1.14.0/ko/enterprise/features/marketplace",
"v1.14.0/ko/enterprise/features/agent-repositories",
"v1.14.0/ko/enterprise/features/tools-and-integrations",
"v1.14.0/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.14.0/ko/enterprise/features/traces",
"v1.14.0/ko/enterprise/features/webhook-streaming",
"v1.14.0/ko/enterprise/features/hallucination-guardrail",
"v1.14.0/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.14.0/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.14.0/ko/enterprise/integrations/asana",
"v1.14.0/ko/enterprise/integrations/box",
"v1.14.0/ko/enterprise/integrations/clickup",
"v1.14.0/ko/enterprise/integrations/github",
"v1.14.0/ko/enterprise/integrations/gmail",
"v1.14.0/ko/enterprise/integrations/google_calendar",
"v1.14.0/ko/enterprise/integrations/google_contacts",
"v1.14.0/ko/enterprise/integrations/google_docs",
"v1.14.0/ko/enterprise/integrations/google_drive",
"v1.14.0/ko/enterprise/integrations/google_sheets",
"v1.14.0/ko/enterprise/integrations/google_slides",
"v1.14.0/ko/enterprise/integrations/hubspot",
"v1.14.0/ko/enterprise/integrations/jira",
"v1.14.0/ko/enterprise/integrations/linear",
"v1.14.0/ko/enterprise/integrations/microsoft_excel",
"v1.14.0/ko/enterprise/integrations/microsoft_onedrive",
"v1.14.0/ko/enterprise/integrations/microsoft_outlook",
"v1.14.0/ko/enterprise/integrations/microsoft_sharepoint",
"v1.14.0/ko/enterprise/integrations/microsoft_teams",
"v1.14.0/ko/enterprise/integrations/microsoft_word",
"v1.14.0/ko/enterprise/integrations/notion",
"v1.14.0/ko/enterprise/integrations/salesforce",
"v1.14.0/ko/enterprise/integrations/shopify",
"v1.14.0/ko/enterprise/integrations/slack",
"v1.14.0/ko/enterprise/integrations/stripe",
"v1.14.0/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.0/ko/enterprise/guides/build-crew",
"v1.14.0/ko/enterprise/guides/prepare-for-deployment",
"v1.14.0/ko/enterprise/guides/deploy-to-amp",
"v1.14.0/ko/enterprise/guides/private-package-registry",
"v1.14.0/ko/enterprise/guides/kickoff-crew",
"v1.14.0/ko/enterprise/guides/training-crews",
"v1.14.0/ko/enterprise/guides/update-crew",
"v1.14.0/ko/enterprise/guides/enable-crew-studio",
"v1.14.0/ko/enterprise/guides/capture_telemetry_logs",
"v1.14.0/ko/enterprise/guides/azure-openai-setup",
"v1.14.0/ko/enterprise/guides/tool-repository",
"v1.14.0/ko/enterprise/guides/custom-mcp-server",
"v1.14.0/ko/enterprise/guides/react-component-export",
"v1.14.0/ko/enterprise/guides/team-management",
"v1.14.0/ko/enterprise/guides/human-in-the-loop",
"v1.14.0/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.14.0/ko/enterprise/guides/automation-triggers",
"v1.14.0/ko/enterprise/guides/gmail-trigger",
"v1.14.0/ko/enterprise/guides/google-calendar-trigger",
"v1.14.0/ko/enterprise/guides/google-drive-trigger",
"v1.14.0/ko/enterprise/guides/outlook-trigger",
"v1.14.0/ko/enterprise/guides/onedrive-trigger",
"v1.14.0/ko/enterprise/guides/microsoft-teams-trigger",
"v1.14.0/ko/enterprise/guides/slack-trigger",
"v1.14.0/ko/enterprise/guides/hubspot-trigger",
"v1.14.0/ko/enterprise/guides/salesforce-trigger",
"v1.14.0/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.14.0/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.14.0/ko/api-reference/introduction",
"v1.14.0/ko/api-reference/inputs",
"v1.14.0/ko/api-reference/kickoff",
"v1.14.0/ko/api-reference/resume",
"v1.14.0/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.14.0/ko/examples/example",
"v1.14.0/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.14.0/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.13.0",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.13.0/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.13.0/ko/introduction",
"v1.13.0/ko/installation",
"v1.13.0/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.13.0/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.13.0/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.13.0/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.13.0/ko/guides/flows/first-flow",
"v1.13.0/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.13.0/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.13.0/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.13.0/ko/guides/advanced/customizing-prompts",
"v1.13.0/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.13.0/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.13.0/ko/concepts/agents",
"v1.13.0/ko/concepts/tasks",
"v1.13.0/ko/concepts/agent-capabilities",
"v1.13.0/ko/concepts/crews",
"v1.13.0/ko/concepts/flows",
"v1.13.0/ko/concepts/production-architecture",
"v1.13.0/ko/concepts/knowledge",
"v1.13.0/ko/concepts/skills",
"v1.13.0/ko/concepts/llms",
"v1.13.0/ko/concepts/files",
"v1.13.0/ko/concepts/processes",
"v1.13.0/ko/concepts/collaboration",
"v1.13.0/ko/concepts/training",
"v1.13.0/ko/concepts/memory",
"v1.13.0/ko/concepts/reasoning",
"v1.13.0/ko/concepts/planning",
"v1.13.0/ko/concepts/testing",
"v1.13.0/ko/concepts/cli",
"v1.13.0/ko/concepts/tools",
"v1.13.0/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.13.0/ko/mcp/overview",
"v1.13.0/ko/mcp/dsl-integration",
"v1.13.0/ko/mcp/stdio",
"v1.13.0/ko/mcp/sse",
"v1.13.0/ko/mcp/streamable-http",
"v1.13.0/ko/mcp/multiple-servers",
"v1.13.0/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.13.0/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.13.0/ko/tools/file-document/overview",
"v1.13.0/ko/tools/file-document/filereadtool",
"v1.13.0/ko/tools/file-document/filewritetool",
"v1.13.0/ko/tools/file-document/pdfsearchtool",
"v1.13.0/ko/tools/file-document/docxsearchtool",
"v1.13.0/ko/tools/file-document/mdxsearchtool",
"v1.13.0/ko/tools/file-document/xmlsearchtool",
"v1.13.0/ko/tools/file-document/txtsearchtool",
"v1.13.0/ko/tools/file-document/jsonsearchtool",
"v1.13.0/ko/tools/file-document/csvsearchtool",
"v1.13.0/ko/tools/file-document/directorysearchtool",
"v1.13.0/ko/tools/file-document/directoryreadtool",
"v1.13.0/ko/tools/file-document/ocrtool",
"v1.13.0/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.13.0/ko/tools/web-scraping/overview",
"v1.13.0/ko/tools/web-scraping/scrapewebsitetool",
"v1.13.0/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.13.0/ko/tools/web-scraping/scrapflyscrapetool",
"v1.13.0/ko/tools/web-scraping/seleniumscrapingtool",
"v1.13.0/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.13.0/ko/tools/web-scraping/spidertool",
"v1.13.0/ko/tools/web-scraping/browserbaseloadtool",
"v1.13.0/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.13.0/ko/tools/web-scraping/stagehandtool",
"v1.13.0/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.13.0/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.13.0/ko/tools/web-scraping/oxylabsscraperstool",
"v1.13.0/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.13.0/ko/tools/search-research/overview",
"v1.13.0/ko/tools/search-research/serperdevtool",
"v1.13.0/ko/tools/search-research/bravesearchtool",
"v1.13.0/ko/tools/search-research/exasearchtool",
"v1.13.0/ko/tools/search-research/linkupsearchtool",
"v1.13.0/ko/tools/search-research/githubsearchtool",
"v1.13.0/ko/tools/search-research/websitesearchtool",
"v1.13.0/ko/tools/search-research/codedocssearchtool",
"v1.13.0/ko/tools/search-research/youtubechannelsearchtool",
"v1.13.0/ko/tools/search-research/youtubevideosearchtool",
"v1.13.0/ko/tools/search-research/tavilysearchtool",
"v1.13.0/ko/tools/search-research/tavilyextractortool",
"v1.13.0/ko/tools/search-research/arxivpapertool",
"v1.13.0/ko/tools/search-research/serpapi-googlesearchtool",
"v1.13.0/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.13.0/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.13.0/ko/tools/database-data/overview",
"v1.13.0/ko/tools/database-data/mysqltool",
"v1.13.0/ko/tools/database-data/pgsearchtool",
"v1.13.0/ko/tools/database-data/snowflakesearchtool",
"v1.13.0/ko/tools/database-data/nl2sqltool",
"v1.13.0/ko/tools/database-data/qdrantvectorsearchtool",
"v1.13.0/ko/tools/database-data/weaviatevectorsearchtool",
"v1.13.0/ko/tools/database-data/mongodbvectorsearchtool",
"v1.13.0/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.13.0/ko/tools/ai-ml/overview",
"v1.13.0/ko/tools/ai-ml/dalletool",
"v1.13.0/ko/tools/ai-ml/visiontool",
"v1.13.0/ko/tools/ai-ml/aimindtool",
"v1.13.0/ko/tools/ai-ml/llamaindextool",
"v1.13.0/ko/tools/ai-ml/langchaintool",
"v1.13.0/ko/tools/ai-ml/ragtool",
"v1.13.0/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.13.0/ko/tools/cloud-storage/overview",
"v1.13.0/ko/tools/cloud-storage/s3readertool",
"v1.13.0/ko/tools/cloud-storage/s3writertool",
"v1.13.0/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.13.0/ko/tools/integration/overview",
"v1.13.0/ko/tools/integration/bedrockinvokeagenttool",
"v1.13.0/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.13.0/ko/tools/automation/overview",
"v1.13.0/ko/tools/automation/apifyactorstool",
"v1.13.0/ko/tools/automation/composiotool",
"v1.13.0/ko/tools/automation/multiontool",
"v1.13.0/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.13.0/ko/observability/tracing",
"v1.13.0/ko/observability/overview",
"v1.13.0/ko/observability/arize-phoenix",
"v1.13.0/ko/observability/braintrust",
"v1.13.0/ko/observability/datadog",
"v1.13.0/ko/observability/galileo",
"v1.13.0/ko/observability/langdb",
"v1.13.0/ko/observability/langfuse",
"v1.13.0/ko/observability/langtrace",
"v1.13.0/ko/observability/maxim",
"v1.13.0/ko/observability/mlflow",
"v1.13.0/ko/observability/neatlogs",
"v1.13.0/ko/observability/openlit",
"v1.13.0/ko/observability/opik",
"v1.13.0/ko/observability/patronus-evaluation",
"v1.13.0/ko/observability/portkey",
"v1.13.0/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.13.0/ko/learn/overview",
"v1.13.0/ko/learn/llm-selection-guide",
"v1.13.0/ko/learn/conditional-tasks",
"v1.13.0/ko/learn/coding-agents",
"v1.13.0/ko/learn/create-custom-tools",
"v1.13.0/ko/learn/custom-llm",
"v1.13.0/ko/learn/custom-manager-agent",
"v1.13.0/ko/learn/customizing-agents",
"v1.13.0/ko/learn/dalle-image-generation",
"v1.13.0/ko/learn/force-tool-output-as-result",
"v1.13.0/ko/learn/hierarchical-process",
"v1.13.0/ko/learn/human-input-on-execution",
"v1.13.0/ko/learn/human-in-the-loop",
"v1.13.0/ko/learn/human-feedback-in-flows",
"v1.13.0/ko/learn/kickoff-async",
"v1.13.0/ko/learn/kickoff-for-each",
"v1.13.0/ko/learn/llm-connections",
"v1.13.0/ko/learn/multimodal-agents",
"v1.13.0/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.13.0/ko/learn/sequential-process",
"v1.13.0/ko/learn/using-annotations",
"v1.13.0/ko/learn/execution-hooks",
"v1.13.0/ko/learn/llm-hooks",
"v1.13.0/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.13.0/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.13.0/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.13.0/ko/enterprise/features/automations",
"v1.13.0/ko/enterprise/features/crew-studio",
"v1.13.0/ko/enterprise/features/marketplace",
"v1.13.0/ko/enterprise/features/agent-repositories",
"v1.13.0/ko/enterprise/features/tools-and-integrations",
"v1.13.0/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.13.0/ko/enterprise/features/traces",
"v1.13.0/ko/enterprise/features/webhook-streaming",
"v1.13.0/ko/enterprise/features/hallucination-guardrail",
"v1.13.0/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.13.0/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.13.0/ko/enterprise/integrations/asana",
"v1.13.0/ko/enterprise/integrations/box",
"v1.13.0/ko/enterprise/integrations/clickup",
"v1.13.0/ko/enterprise/integrations/github",
"v1.13.0/ko/enterprise/integrations/gmail",
"v1.13.0/ko/enterprise/integrations/google_calendar",
"v1.13.0/ko/enterprise/integrations/google_contacts",
"v1.13.0/ko/enterprise/integrations/google_docs",
"v1.13.0/ko/enterprise/integrations/google_drive",
"v1.13.0/ko/enterprise/integrations/google_sheets",
"v1.13.0/ko/enterprise/integrations/google_slides",
"v1.13.0/ko/enterprise/integrations/hubspot",
"v1.13.0/ko/enterprise/integrations/jira",
"v1.13.0/ko/enterprise/integrations/linear",
"v1.13.0/ko/enterprise/integrations/microsoft_excel",
"v1.13.0/ko/enterprise/integrations/microsoft_onedrive",
"v1.13.0/ko/enterprise/integrations/microsoft_outlook",
"v1.13.0/ko/enterprise/integrations/microsoft_sharepoint",
"v1.13.0/ko/enterprise/integrations/microsoft_teams",
"v1.13.0/ko/enterprise/integrations/microsoft_word",
"v1.13.0/ko/enterprise/integrations/notion",
"v1.13.0/ko/enterprise/integrations/salesforce",
"v1.13.0/ko/enterprise/integrations/shopify",
"v1.13.0/ko/enterprise/integrations/slack",
"v1.13.0/ko/enterprise/integrations/stripe",
"v1.13.0/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.13.0/ko/enterprise/guides/build-crew",
"v1.13.0/ko/enterprise/guides/prepare-for-deployment",
"v1.13.0/ko/enterprise/guides/deploy-to-amp",
"v1.13.0/ko/enterprise/guides/private-package-registry",
"v1.13.0/ko/enterprise/guides/kickoff-crew",
"v1.13.0/ko/enterprise/guides/update-crew",
"v1.13.0/ko/enterprise/guides/enable-crew-studio",
"v1.13.0/ko/enterprise/guides/capture_telemetry_logs",
"v1.13.0/ko/enterprise/guides/azure-openai-setup",
"v1.13.0/ko/enterprise/guides/tool-repository",
"v1.13.0/ko/enterprise/guides/custom-mcp-server",
"v1.13.0/ko/enterprise/guides/react-component-export",
"v1.13.0/ko/enterprise/guides/team-management",
"v1.13.0/ko/enterprise/guides/human-in-the-loop",
"v1.13.0/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.13.0/ko/enterprise/guides/automation-triggers",
"v1.13.0/ko/enterprise/guides/gmail-trigger",
"v1.13.0/ko/enterprise/guides/google-calendar-trigger",
"v1.13.0/ko/enterprise/guides/google-drive-trigger",
"v1.13.0/ko/enterprise/guides/outlook-trigger",
"v1.13.0/ko/enterprise/guides/onedrive-trigger",
"v1.13.0/ko/enterprise/guides/microsoft-teams-trigger",
"v1.13.0/ko/enterprise/guides/slack-trigger",
"v1.13.0/ko/enterprise/guides/hubspot-trigger",
"v1.13.0/ko/enterprise/guides/salesforce-trigger",
"v1.13.0/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.13.0/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.13.0/ko/api-reference/introduction",
"v1.13.0/ko/api-reference/inputs",
"v1.13.0/ko/api-reference/kickoff",
"v1.13.0/ko/api-reference/resume",
"v1.13.0/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.13.0/ko/examples/example",
"v1.13.0/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.13.0/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.12.2",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.12.2/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.2/ko/introduction",
"v1.12.2/ko/installation",
"v1.12.2/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.12.2/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.12.2/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.12.2/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.12.2/ko/guides/flows/first-flow",
"v1.12.2/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.12.2/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.12.2/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.12.2/ko/guides/advanced/customizing-prompts",
"v1.12.2/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.12.2/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.12.2/ko/concepts/agents",
"v1.12.2/ko/concepts/tasks",
"v1.12.2/ko/concepts/crews",
"v1.12.2/ko/concepts/flows",
"v1.12.2/ko/concepts/production-architecture",
"v1.12.2/ko/concepts/knowledge",
"v1.12.2/ko/concepts/skills",
"v1.12.2/ko/concepts/llms",
"v1.12.2/ko/concepts/files",
"v1.12.2/ko/concepts/processes",
"v1.12.2/ko/concepts/collaboration",
"v1.12.2/ko/concepts/training",
"v1.12.2/ko/concepts/memory",
"v1.12.2/ko/concepts/reasoning",
"v1.12.2/ko/concepts/planning",
"v1.12.2/ko/concepts/testing",
"v1.12.2/ko/concepts/cli",
"v1.12.2/ko/concepts/tools",
"v1.12.2/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.12.2/ko/mcp/overview",
"v1.12.2/ko/mcp/dsl-integration",
"v1.12.2/ko/mcp/stdio",
"v1.12.2/ko/mcp/sse",
"v1.12.2/ko/mcp/streamable-http",
"v1.12.2/ko/mcp/multiple-servers",
"v1.12.2/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.12.2/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.12.2/ko/tools/file-document/overview",
"v1.12.2/ko/tools/file-document/filereadtool",
"v1.12.2/ko/tools/file-document/filewritetool",
"v1.12.2/ko/tools/file-document/pdfsearchtool",
"v1.12.2/ko/tools/file-document/docxsearchtool",
"v1.12.2/ko/tools/file-document/mdxsearchtool",
"v1.12.2/ko/tools/file-document/xmlsearchtool",
"v1.12.2/ko/tools/file-document/txtsearchtool",
"v1.12.2/ko/tools/file-document/jsonsearchtool",
"v1.12.2/ko/tools/file-document/csvsearchtool",
"v1.12.2/ko/tools/file-document/directorysearchtool",
"v1.12.2/ko/tools/file-document/directoryreadtool",
"v1.12.2/ko/tools/file-document/ocrtool",
"v1.12.2/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.12.2/ko/tools/web-scraping/overview",
"v1.12.2/ko/tools/web-scraping/scrapewebsitetool",
"v1.12.2/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.2/ko/tools/web-scraping/scrapflyscrapetool",
"v1.12.2/ko/tools/web-scraping/seleniumscrapingtool",
"v1.12.2/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.12.2/ko/tools/web-scraping/spidertool",
"v1.12.2/ko/tools/web-scraping/browserbaseloadtool",
"v1.12.2/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.12.2/ko/tools/web-scraping/stagehandtool",
"v1.12.2/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.2/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.2/ko/tools/web-scraping/oxylabsscraperstool",
"v1.12.2/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.12.2/ko/tools/search-research/overview",
"v1.12.2/ko/tools/search-research/serperdevtool",
"v1.12.2/ko/tools/search-research/bravesearchtool",
"v1.12.2/ko/tools/search-research/exasearchtool",
"v1.12.2/ko/tools/search-research/linkupsearchtool",
"v1.12.2/ko/tools/search-research/githubsearchtool",
"v1.12.2/ko/tools/search-research/websitesearchtool",
"v1.12.2/ko/tools/search-research/codedocssearchtool",
"v1.12.2/ko/tools/search-research/youtubechannelsearchtool",
"v1.12.2/ko/tools/search-research/youtubevideosearchtool",
"v1.12.2/ko/tools/search-research/tavilysearchtool",
"v1.12.2/ko/tools/search-research/tavilyextractortool",
"v1.12.2/ko/tools/search-research/arxivpapertool",
"v1.12.2/ko/tools/search-research/serpapi-googlesearchtool",
"v1.12.2/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.12.2/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.12.2/ko/tools/database-data/overview",
"v1.12.2/ko/tools/database-data/mysqltool",
"v1.12.2/ko/tools/database-data/pgsearchtool",
"v1.12.2/ko/tools/database-data/snowflakesearchtool",
"v1.12.2/ko/tools/database-data/nl2sqltool",
"v1.12.2/ko/tools/database-data/qdrantvectorsearchtool",
"v1.12.2/ko/tools/database-data/weaviatevectorsearchtool",
"v1.12.2/ko/tools/database-data/mongodbvectorsearchtool",
"v1.12.2/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.12.2/ko/tools/ai-ml/overview",
"v1.12.2/ko/tools/ai-ml/dalletool",
"v1.12.2/ko/tools/ai-ml/visiontool",
"v1.12.2/ko/tools/ai-ml/aimindtool",
"v1.12.2/ko/tools/ai-ml/llamaindextool",
"v1.12.2/ko/tools/ai-ml/langchaintool",
"v1.12.2/ko/tools/ai-ml/ragtool",
"v1.12.2/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.12.2/ko/tools/cloud-storage/overview",
"v1.12.2/ko/tools/cloud-storage/s3readertool",
"v1.12.2/ko/tools/cloud-storage/s3writertool",
"v1.12.2/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.2/ko/tools/integration/overview",
"v1.12.2/ko/tools/integration/bedrockinvokeagenttool",
"v1.12.2/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.12.2/ko/tools/automation/overview",
"v1.12.2/ko/tools/automation/apifyactorstool",
"v1.12.2/ko/tools/automation/composiotool",
"v1.12.2/ko/tools/automation/multiontool",
"v1.12.2/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.2/ko/observability/tracing",
"v1.12.2/ko/observability/overview",
"v1.12.2/ko/observability/arize-phoenix",
"v1.12.2/ko/observability/braintrust",
"v1.12.2/ko/observability/datadog",
"v1.12.2/ko/observability/galileo",
"v1.12.2/ko/observability/langdb",
"v1.12.2/ko/observability/langfuse",
"v1.12.2/ko/observability/langtrace",
"v1.12.2/ko/observability/maxim",
"v1.12.2/ko/observability/mlflow",
"v1.12.2/ko/observability/neatlogs",
"v1.12.2/ko/observability/openlit",
"v1.12.2/ko/observability/opik",
"v1.12.2/ko/observability/patronus-evaluation",
"v1.12.2/ko/observability/portkey",
"v1.12.2/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.12.2/ko/learn/overview",
"v1.12.2/ko/learn/llm-selection-guide",
"v1.12.2/ko/learn/conditional-tasks",
"v1.12.2/ko/learn/coding-agents",
"v1.12.2/ko/learn/create-custom-tools",
"v1.12.2/ko/learn/custom-llm",
"v1.12.2/ko/learn/custom-manager-agent",
"v1.12.2/ko/learn/customizing-agents",
"v1.12.2/ko/learn/dalle-image-generation",
"v1.12.2/ko/learn/force-tool-output-as-result",
"v1.12.2/ko/learn/hierarchical-process",
"v1.12.2/ko/learn/human-input-on-execution",
"v1.12.2/ko/learn/human-in-the-loop",
"v1.12.2/ko/learn/human-feedback-in-flows",
"v1.12.2/ko/learn/kickoff-async",
"v1.12.2/ko/learn/kickoff-for-each",
"v1.12.2/ko/learn/llm-connections",
"v1.12.2/ko/learn/multimodal-agents",
"v1.12.2/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.2/ko/learn/sequential-process",
"v1.12.2/ko/learn/using-annotations",
"v1.12.2/ko/learn/execution-hooks",
"v1.12.2/ko/learn/llm-hooks",
"v1.12.2/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.2/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.2/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.12.2/ko/enterprise/features/automations",
"v1.12.2/ko/enterprise/features/crew-studio",
"v1.12.2/ko/enterprise/features/marketplace",
"v1.12.2/ko/enterprise/features/agent-repositories",
"v1.12.2/ko/enterprise/features/tools-and-integrations",
"v1.12.2/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.12.2/ko/enterprise/features/traces",
"v1.12.2/ko/enterprise/features/webhook-streaming",
"v1.12.2/ko/enterprise/features/hallucination-guardrail",
"v1.12.2/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.12.2/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.12.2/ko/enterprise/integrations/asana",
"v1.12.2/ko/enterprise/integrations/box",
"v1.12.2/ko/enterprise/integrations/clickup",
"v1.12.2/ko/enterprise/integrations/github",
"v1.12.2/ko/enterprise/integrations/gmail",
"v1.12.2/ko/enterprise/integrations/google_calendar",
"v1.12.2/ko/enterprise/integrations/google_contacts",
"v1.12.2/ko/enterprise/integrations/google_docs",
"v1.12.2/ko/enterprise/integrations/google_drive",
"v1.12.2/ko/enterprise/integrations/google_sheets",
"v1.12.2/ko/enterprise/integrations/google_slides",
"v1.12.2/ko/enterprise/integrations/hubspot",
"v1.12.2/ko/enterprise/integrations/jira",
"v1.12.2/ko/enterprise/integrations/linear",
"v1.12.2/ko/enterprise/integrations/microsoft_excel",
"v1.12.2/ko/enterprise/integrations/microsoft_onedrive",
"v1.12.2/ko/enterprise/integrations/microsoft_outlook",
"v1.12.2/ko/enterprise/integrations/microsoft_sharepoint",
"v1.12.2/ko/enterprise/integrations/microsoft_teams",
"v1.12.2/ko/enterprise/integrations/microsoft_word",
"v1.12.2/ko/enterprise/integrations/notion",
"v1.12.2/ko/enterprise/integrations/salesforce",
"v1.12.2/ko/enterprise/integrations/shopify",
"v1.12.2/ko/enterprise/integrations/slack",
"v1.12.2/ko/enterprise/integrations/stripe",
"v1.12.2/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.2/ko/enterprise/guides/build-crew",
"v1.12.2/ko/enterprise/guides/prepare-for-deployment",
"v1.12.2/ko/enterprise/guides/deploy-to-amp",
"v1.12.2/ko/enterprise/guides/private-package-registry",
"v1.12.2/ko/enterprise/guides/kickoff-crew",
"v1.12.2/ko/enterprise/guides/update-crew",
"v1.12.2/ko/enterprise/guides/enable-crew-studio",
"v1.12.2/ko/enterprise/guides/capture_telemetry_logs",
"v1.12.2/ko/enterprise/guides/azure-openai-setup",
"v1.12.2/ko/enterprise/guides/tool-repository",
"v1.12.2/ko/enterprise/guides/custom-mcp-server",
"v1.12.2/ko/enterprise/guides/react-component-export",
"v1.12.2/ko/enterprise/guides/team-management",
"v1.12.2/ko/enterprise/guides/human-in-the-loop",
"v1.12.2/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.12.2/ko/enterprise/guides/automation-triggers",
"v1.12.2/ko/enterprise/guides/gmail-trigger",
"v1.12.2/ko/enterprise/guides/google-calendar-trigger",
"v1.12.2/ko/enterprise/guides/google-drive-trigger",
"v1.12.2/ko/enterprise/guides/outlook-trigger",
"v1.12.2/ko/enterprise/guides/onedrive-trigger",
"v1.12.2/ko/enterprise/guides/microsoft-teams-trigger",
"v1.12.2/ko/enterprise/guides/slack-trigger",
"v1.12.2/ko/enterprise/guides/hubspot-trigger",
"v1.12.2/ko/enterprise/guides/salesforce-trigger",
"v1.12.2/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.12.2/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.2/ko/api-reference/introduction",
"v1.12.2/ko/api-reference/inputs",
"v1.12.2/ko/api-reference/kickoff",
"v1.12.2/ko/api-reference/resume",
"v1.12.2/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.12.2/ko/examples/example",
"v1.12.2/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.12.2/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.12.1",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.12.1/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.1/ko/introduction",
"v1.12.1/ko/installation",
"v1.12.1/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.12.1/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.12.1/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.12.1/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.12.1/ko/guides/flows/first-flow",
"v1.12.1/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.12.1/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.12.1/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.12.1/ko/guides/advanced/customizing-prompts",
"v1.12.1/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.12.1/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.12.1/ko/concepts/agents",
"v1.12.1/ko/concepts/tasks",
"v1.12.1/ko/concepts/crews",
"v1.12.1/ko/concepts/flows",
"v1.12.1/ko/concepts/production-architecture",
"v1.12.1/ko/concepts/knowledge",
"v1.12.1/ko/concepts/skills",
"v1.12.1/ko/concepts/llms",
"v1.12.1/ko/concepts/files",
"v1.12.1/ko/concepts/processes",
"v1.12.1/ko/concepts/collaboration",
"v1.12.1/ko/concepts/training",
"v1.12.1/ko/concepts/memory",
"v1.12.1/ko/concepts/reasoning",
"v1.12.1/ko/concepts/planning",
"v1.12.1/ko/concepts/testing",
"v1.12.1/ko/concepts/cli",
"v1.12.1/ko/concepts/tools",
"v1.12.1/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.12.1/ko/mcp/overview",
"v1.12.1/ko/mcp/dsl-integration",
"v1.12.1/ko/mcp/stdio",
"v1.12.1/ko/mcp/sse",
"v1.12.1/ko/mcp/streamable-http",
"v1.12.1/ko/mcp/multiple-servers",
"v1.12.1/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.12.1/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.12.1/ko/tools/file-document/overview",
"v1.12.1/ko/tools/file-document/filereadtool",
"v1.12.1/ko/tools/file-document/filewritetool",
"v1.12.1/ko/tools/file-document/pdfsearchtool",
"v1.12.1/ko/tools/file-document/docxsearchtool",
"v1.12.1/ko/tools/file-document/mdxsearchtool",
"v1.12.1/ko/tools/file-document/xmlsearchtool",
"v1.12.1/ko/tools/file-document/txtsearchtool",
"v1.12.1/ko/tools/file-document/jsonsearchtool",
"v1.12.1/ko/tools/file-document/csvsearchtool",
"v1.12.1/ko/tools/file-document/directorysearchtool",
"v1.12.1/ko/tools/file-document/directoryreadtool",
"v1.12.1/ko/tools/file-document/ocrtool",
"v1.12.1/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.12.1/ko/tools/web-scraping/overview",
"v1.12.1/ko/tools/web-scraping/scrapewebsitetool",
"v1.12.1/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.1/ko/tools/web-scraping/scrapflyscrapetool",
"v1.12.1/ko/tools/web-scraping/seleniumscrapingtool",
"v1.12.1/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.12.1/ko/tools/web-scraping/spidertool",
"v1.12.1/ko/tools/web-scraping/browserbaseloadtool",
"v1.12.1/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.12.1/ko/tools/web-scraping/stagehandtool",
"v1.12.1/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.1/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.1/ko/tools/web-scraping/oxylabsscraperstool",
"v1.12.1/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.12.1/ko/tools/search-research/overview",
"v1.12.1/ko/tools/search-research/serperdevtool",
"v1.12.1/ko/tools/search-research/bravesearchtool",
"v1.12.1/ko/tools/search-research/exasearchtool",
"v1.12.1/ko/tools/search-research/linkupsearchtool",
"v1.12.1/ko/tools/search-research/githubsearchtool",
"v1.12.1/ko/tools/search-research/websitesearchtool",
"v1.12.1/ko/tools/search-research/codedocssearchtool",
"v1.12.1/ko/tools/search-research/youtubechannelsearchtool",
"v1.12.1/ko/tools/search-research/youtubevideosearchtool",
"v1.12.1/ko/tools/search-research/tavilysearchtool",
"v1.12.1/ko/tools/search-research/tavilyextractortool",
"v1.12.1/ko/tools/search-research/arxivpapertool",
"v1.12.1/ko/tools/search-research/serpapi-googlesearchtool",
"v1.12.1/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.12.1/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.12.1/ko/tools/database-data/overview",
"v1.12.1/ko/tools/database-data/mysqltool",
"v1.12.1/ko/tools/database-data/pgsearchtool",
"v1.12.1/ko/tools/database-data/snowflakesearchtool",
"v1.12.1/ko/tools/database-data/nl2sqltool",
"v1.12.1/ko/tools/database-data/qdrantvectorsearchtool",
"v1.12.1/ko/tools/database-data/weaviatevectorsearchtool",
"v1.12.1/ko/tools/database-data/mongodbvectorsearchtool",
"v1.12.1/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.12.1/ko/tools/ai-ml/overview",
"v1.12.1/ko/tools/ai-ml/dalletool",
"v1.12.1/ko/tools/ai-ml/visiontool",
"v1.12.1/ko/tools/ai-ml/aimindtool",
"v1.12.1/ko/tools/ai-ml/llamaindextool",
"v1.12.1/ko/tools/ai-ml/langchaintool",
"v1.12.1/ko/tools/ai-ml/ragtool",
"v1.12.1/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.12.1/ko/tools/cloud-storage/overview",
"v1.12.1/ko/tools/cloud-storage/s3readertool",
"v1.12.1/ko/tools/cloud-storage/s3writertool",
"v1.12.1/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.1/ko/tools/integration/overview",
"v1.12.1/ko/tools/integration/bedrockinvokeagenttool",
"v1.12.1/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.12.1/ko/tools/automation/overview",
"v1.12.1/ko/tools/automation/apifyactorstool",
"v1.12.1/ko/tools/automation/composiotool",
"v1.12.1/ko/tools/automation/multiontool",
"v1.12.1/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.1/ko/observability/tracing",
"v1.12.1/ko/observability/overview",
"v1.12.1/ko/observability/arize-phoenix",
"v1.12.1/ko/observability/braintrust",
"v1.12.1/ko/observability/datadog",
"v1.12.1/ko/observability/galileo",
"v1.12.1/ko/observability/langdb",
"v1.12.1/ko/observability/langfuse",
"v1.12.1/ko/observability/langtrace",
"v1.12.1/ko/observability/maxim",
"v1.12.1/ko/observability/mlflow",
"v1.12.1/ko/observability/neatlogs",
"v1.12.1/ko/observability/openlit",
"v1.12.1/ko/observability/opik",
"v1.12.1/ko/observability/patronus-evaluation",
"v1.12.1/ko/observability/portkey",
"v1.12.1/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.12.1/ko/learn/overview",
"v1.12.1/ko/learn/llm-selection-guide",
"v1.12.1/ko/learn/conditional-tasks",
"v1.12.1/ko/learn/coding-agents",
"v1.12.1/ko/learn/create-custom-tools",
"v1.12.1/ko/learn/custom-llm",
"v1.12.1/ko/learn/custom-manager-agent",
"v1.12.1/ko/learn/customizing-agents",
"v1.12.1/ko/learn/dalle-image-generation",
"v1.12.1/ko/learn/force-tool-output-as-result",
"v1.12.1/ko/learn/hierarchical-process",
"v1.12.1/ko/learn/human-input-on-execution",
"v1.12.1/ko/learn/human-in-the-loop",
"v1.12.1/ko/learn/human-feedback-in-flows",
"v1.12.1/ko/learn/kickoff-async",
"v1.12.1/ko/learn/kickoff-for-each",
"v1.12.1/ko/learn/llm-connections",
"v1.12.1/ko/learn/multimodal-agents",
"v1.12.1/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.1/ko/learn/sequential-process",
"v1.12.1/ko/learn/using-annotations",
"v1.12.1/ko/learn/execution-hooks",
"v1.12.1/ko/learn/llm-hooks",
"v1.12.1/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.1/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.1/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.12.1/ko/enterprise/features/automations",
"v1.12.1/ko/enterprise/features/crew-studio",
"v1.12.1/ko/enterprise/features/marketplace",
"v1.12.1/ko/enterprise/features/agent-repositories",
"v1.12.1/ko/enterprise/features/tools-and-integrations",
"v1.12.1/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.12.1/ko/enterprise/features/traces",
"v1.12.1/ko/enterprise/features/webhook-streaming",
"v1.12.1/ko/enterprise/features/hallucination-guardrail",
"v1.12.1/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.12.1/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.12.1/ko/enterprise/integrations/asana",
"v1.12.1/ko/enterprise/integrations/box",
"v1.12.1/ko/enterprise/integrations/clickup",
"v1.12.1/ko/enterprise/integrations/github",
"v1.12.1/ko/enterprise/integrations/gmail",
"v1.12.1/ko/enterprise/integrations/google_calendar",
"v1.12.1/ko/enterprise/integrations/google_contacts",
"v1.12.1/ko/enterprise/integrations/google_docs",
"v1.12.1/ko/enterprise/integrations/google_drive",
"v1.12.1/ko/enterprise/integrations/google_sheets",
"v1.12.1/ko/enterprise/integrations/google_slides",
"v1.12.1/ko/enterprise/integrations/hubspot",
"v1.12.1/ko/enterprise/integrations/jira",
"v1.12.1/ko/enterprise/integrations/linear",
"v1.12.1/ko/enterprise/integrations/microsoft_excel",
"v1.12.1/ko/enterprise/integrations/microsoft_onedrive",
"v1.12.1/ko/enterprise/integrations/microsoft_outlook",
"v1.12.1/ko/enterprise/integrations/microsoft_sharepoint",
"v1.12.1/ko/enterprise/integrations/microsoft_teams",
"v1.12.1/ko/enterprise/integrations/microsoft_word",
"v1.12.1/ko/enterprise/integrations/notion",
"v1.12.1/ko/enterprise/integrations/salesforce",
"v1.12.1/ko/enterprise/integrations/shopify",
"v1.12.1/ko/enterprise/integrations/slack",
"v1.12.1/ko/enterprise/integrations/stripe",
"v1.12.1/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.1/ko/enterprise/guides/build-crew",
"v1.12.1/ko/enterprise/guides/prepare-for-deployment",
"v1.12.1/ko/enterprise/guides/deploy-to-amp",
"v1.12.1/ko/enterprise/guides/private-package-registry",
"v1.12.1/ko/enterprise/guides/kickoff-crew",
"v1.12.1/ko/enterprise/guides/update-crew",
"v1.12.1/ko/enterprise/guides/enable-crew-studio",
"v1.12.1/ko/enterprise/guides/capture_telemetry_logs",
"v1.12.1/ko/enterprise/guides/azure-openai-setup",
"v1.12.1/ko/enterprise/guides/tool-repository",
"v1.12.1/ko/enterprise/guides/custom-mcp-server",
"v1.12.1/ko/enterprise/guides/react-component-export",
"v1.12.1/ko/enterprise/guides/team-management",
"v1.12.1/ko/enterprise/guides/human-in-the-loop",
"v1.12.1/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.12.1/ko/enterprise/guides/automation-triggers",
"v1.12.1/ko/enterprise/guides/gmail-trigger",
"v1.12.1/ko/enterprise/guides/google-calendar-trigger",
"v1.12.1/ko/enterprise/guides/google-drive-trigger",
"v1.12.1/ko/enterprise/guides/outlook-trigger",
"v1.12.1/ko/enterprise/guides/onedrive-trigger",
"v1.12.1/ko/enterprise/guides/microsoft-teams-trigger",
"v1.12.1/ko/enterprise/guides/slack-trigger",
"v1.12.1/ko/enterprise/guides/hubspot-trigger",
"v1.12.1/ko/enterprise/guides/salesforce-trigger",
"v1.12.1/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.12.1/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.1/ko/api-reference/introduction",
"v1.12.1/ko/api-reference/inputs",
"v1.12.1/ko/api-reference/kickoff",
"v1.12.1/ko/api-reference/resume",
"v1.12.1/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.12.1/ko/examples/example",
"v1.12.1/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.12.1/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.12.0",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.12.0/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.0/ko/introduction",
"v1.12.0/ko/installation",
"v1.12.0/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.12.0/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.12.0/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.12.0/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.12.0/ko/guides/flows/first-flow",
"v1.12.0/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.12.0/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.12.0/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.12.0/ko/guides/advanced/customizing-prompts",
"v1.12.0/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.12.0/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.12.0/ko/concepts/agents",
"v1.12.0/ko/concepts/tasks",
"v1.12.0/ko/concepts/crews",
"v1.12.0/ko/concepts/flows",
"v1.12.0/ko/concepts/production-architecture",
"v1.12.0/ko/concepts/knowledge",
"v1.12.0/ko/concepts/skills",
"v1.12.0/ko/concepts/llms",
"v1.12.0/ko/concepts/files",
"v1.12.0/ko/concepts/processes",
"v1.12.0/ko/concepts/collaboration",
"v1.12.0/ko/concepts/training",
"v1.12.0/ko/concepts/memory",
"v1.12.0/ko/concepts/reasoning",
"v1.12.0/ko/concepts/planning",
"v1.12.0/ko/concepts/testing",
"v1.12.0/ko/concepts/cli",
"v1.12.0/ko/concepts/tools",
"v1.12.0/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.12.0/ko/mcp/overview",
"v1.12.0/ko/mcp/dsl-integration",
"v1.12.0/ko/mcp/stdio",
"v1.12.0/ko/mcp/sse",
"v1.12.0/ko/mcp/streamable-http",
"v1.12.0/ko/mcp/multiple-servers",
"v1.12.0/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.12.0/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.12.0/ko/tools/file-document/overview",
"v1.12.0/ko/tools/file-document/filereadtool",
"v1.12.0/ko/tools/file-document/filewritetool",
"v1.12.0/ko/tools/file-document/pdfsearchtool",
"v1.12.0/ko/tools/file-document/docxsearchtool",
"v1.12.0/ko/tools/file-document/mdxsearchtool",
"v1.12.0/ko/tools/file-document/xmlsearchtool",
"v1.12.0/ko/tools/file-document/txtsearchtool",
"v1.12.0/ko/tools/file-document/jsonsearchtool",
"v1.12.0/ko/tools/file-document/csvsearchtool",
"v1.12.0/ko/tools/file-document/directorysearchtool",
"v1.12.0/ko/tools/file-document/directoryreadtool",
"v1.12.0/ko/tools/file-document/ocrtool",
"v1.12.0/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.12.0/ko/tools/web-scraping/overview",
"v1.12.0/ko/tools/web-scraping/scrapewebsitetool",
"v1.12.0/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.0/ko/tools/web-scraping/scrapflyscrapetool",
"v1.12.0/ko/tools/web-scraping/seleniumscrapingtool",
"v1.12.0/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.12.0/ko/tools/web-scraping/spidertool",
"v1.12.0/ko/tools/web-scraping/browserbaseloadtool",
"v1.12.0/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.12.0/ko/tools/web-scraping/stagehandtool",
"v1.12.0/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.0/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.0/ko/tools/web-scraping/oxylabsscraperstool",
"v1.12.0/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.12.0/ko/tools/search-research/overview",
"v1.12.0/ko/tools/search-research/serperdevtool",
"v1.12.0/ko/tools/search-research/bravesearchtool",
"v1.12.0/ko/tools/search-research/exasearchtool",
"v1.12.0/ko/tools/search-research/linkupsearchtool",
"v1.12.0/ko/tools/search-research/githubsearchtool",
"v1.12.0/ko/tools/search-research/websitesearchtool",
"v1.12.0/ko/tools/search-research/codedocssearchtool",
"v1.12.0/ko/tools/search-research/youtubechannelsearchtool",
"v1.12.0/ko/tools/search-research/youtubevideosearchtool",
"v1.12.0/ko/tools/search-research/tavilysearchtool",
"v1.12.0/ko/tools/search-research/tavilyextractortool",
"v1.12.0/ko/tools/search-research/arxivpapertool",
"v1.12.0/ko/tools/search-research/serpapi-googlesearchtool",
"v1.12.0/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.12.0/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.12.0/ko/tools/database-data/overview",
"v1.12.0/ko/tools/database-data/mysqltool",
"v1.12.0/ko/tools/database-data/pgsearchtool",
"v1.12.0/ko/tools/database-data/snowflakesearchtool",
"v1.12.0/ko/tools/database-data/nl2sqltool",
"v1.12.0/ko/tools/database-data/qdrantvectorsearchtool",
"v1.12.0/ko/tools/database-data/weaviatevectorsearchtool",
"v1.12.0/ko/tools/database-data/mongodbvectorsearchtool",
"v1.12.0/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.12.0/ko/tools/ai-ml/overview",
"v1.12.0/ko/tools/ai-ml/dalletool",
"v1.12.0/ko/tools/ai-ml/visiontool",
"v1.12.0/ko/tools/ai-ml/aimindtool",
"v1.12.0/ko/tools/ai-ml/llamaindextool",
"v1.12.0/ko/tools/ai-ml/langchaintool",
"v1.12.0/ko/tools/ai-ml/ragtool",
"v1.12.0/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.12.0/ko/tools/cloud-storage/overview",
"v1.12.0/ko/tools/cloud-storage/s3readertool",
"v1.12.0/ko/tools/cloud-storage/s3writertool",
"v1.12.0/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.0/ko/tools/integration/overview",
"v1.12.0/ko/tools/integration/bedrockinvokeagenttool",
"v1.12.0/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.12.0/ko/tools/automation/overview",
"v1.12.0/ko/tools/automation/apifyactorstool",
"v1.12.0/ko/tools/automation/composiotool",
"v1.12.0/ko/tools/automation/multiontool",
"v1.12.0/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.0/ko/observability/tracing",
"v1.12.0/ko/observability/overview",
"v1.12.0/ko/observability/arize-phoenix",
"v1.12.0/ko/observability/braintrust",
"v1.12.0/ko/observability/datadog",
"v1.12.0/ko/observability/galileo",
"v1.12.0/ko/observability/langdb",
"v1.12.0/ko/observability/langfuse",
"v1.12.0/ko/observability/langtrace",
"v1.12.0/ko/observability/maxim",
"v1.12.0/ko/observability/mlflow",
"v1.12.0/ko/observability/neatlogs",
"v1.12.0/ko/observability/openlit",
"v1.12.0/ko/observability/opik",
"v1.12.0/ko/observability/patronus-evaluation",
"v1.12.0/ko/observability/portkey",
"v1.12.0/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.12.0/ko/learn/overview",
"v1.12.0/ko/learn/llm-selection-guide",
"v1.12.0/ko/learn/conditional-tasks",
"v1.12.0/ko/learn/coding-agents",
"v1.12.0/ko/learn/create-custom-tools",
"v1.12.0/ko/learn/custom-llm",
"v1.12.0/ko/learn/custom-manager-agent",
"v1.12.0/ko/learn/customizing-agents",
"v1.12.0/ko/learn/dalle-image-generation",
"v1.12.0/ko/learn/force-tool-output-as-result",
"v1.12.0/ko/learn/hierarchical-process",
"v1.12.0/ko/learn/human-input-on-execution",
"v1.12.0/ko/learn/human-in-the-loop",
"v1.12.0/ko/learn/human-feedback-in-flows",
"v1.12.0/ko/learn/kickoff-async",
"v1.12.0/ko/learn/kickoff-for-each",
"v1.12.0/ko/learn/llm-connections",
"v1.12.0/ko/learn/multimodal-agents",
"v1.12.0/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.0/ko/learn/sequential-process",
"v1.12.0/ko/learn/using-annotations",
"v1.12.0/ko/learn/execution-hooks",
"v1.12.0/ko/learn/llm-hooks",
"v1.12.0/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.0/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.0/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.12.0/ko/enterprise/features/automations",
"v1.12.0/ko/enterprise/features/crew-studio",
"v1.12.0/ko/enterprise/features/marketplace",
"v1.12.0/ko/enterprise/features/agent-repositories",
"v1.12.0/ko/enterprise/features/tools-and-integrations",
"v1.12.0/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.12.0/ko/enterprise/features/traces",
"v1.12.0/ko/enterprise/features/webhook-streaming",
"v1.12.0/ko/enterprise/features/hallucination-guardrail",
"v1.12.0/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.12.0/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.12.0/ko/enterprise/integrations/asana",
"v1.12.0/ko/enterprise/integrations/box",
"v1.12.0/ko/enterprise/integrations/clickup",
"v1.12.0/ko/enterprise/integrations/github",
"v1.12.0/ko/enterprise/integrations/gmail",
"v1.12.0/ko/enterprise/integrations/google_calendar",
"v1.12.0/ko/enterprise/integrations/google_contacts",
"v1.12.0/ko/enterprise/integrations/google_docs",
"v1.12.0/ko/enterprise/integrations/google_drive",
"v1.12.0/ko/enterprise/integrations/google_sheets",
"v1.12.0/ko/enterprise/integrations/google_slides",
"v1.12.0/ko/enterprise/integrations/hubspot",
"v1.12.0/ko/enterprise/integrations/jira",
"v1.12.0/ko/enterprise/integrations/linear",
"v1.12.0/ko/enterprise/integrations/microsoft_excel",
"v1.12.0/ko/enterprise/integrations/microsoft_onedrive",
"v1.12.0/ko/enterprise/integrations/microsoft_outlook",
"v1.12.0/ko/enterprise/integrations/microsoft_sharepoint",
"v1.12.0/ko/enterprise/integrations/microsoft_teams",
"v1.12.0/ko/enterprise/integrations/microsoft_word",
"v1.12.0/ko/enterprise/integrations/notion",
"v1.12.0/ko/enterprise/integrations/salesforce",
"v1.12.0/ko/enterprise/integrations/shopify",
"v1.12.0/ko/enterprise/integrations/slack",
"v1.12.0/ko/enterprise/integrations/stripe",
"v1.12.0/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.0/ko/enterprise/guides/build-crew",
"v1.12.0/ko/enterprise/guides/prepare-for-deployment",
"v1.12.0/ko/enterprise/guides/deploy-to-amp",
"v1.12.0/ko/enterprise/guides/private-package-registry",
"v1.12.0/ko/enterprise/guides/kickoff-crew",
"v1.12.0/ko/enterprise/guides/update-crew",
"v1.12.0/ko/enterprise/guides/enable-crew-studio",
"v1.12.0/ko/enterprise/guides/capture_telemetry_logs",
"v1.12.0/ko/enterprise/guides/azure-openai-setup",
"v1.12.0/ko/enterprise/guides/tool-repository",
"v1.12.0/ko/enterprise/guides/custom-mcp-server",
"v1.12.0/ko/enterprise/guides/react-component-export",
"v1.12.0/ko/enterprise/guides/team-management",
"v1.12.0/ko/enterprise/guides/human-in-the-loop",
"v1.12.0/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.12.0/ko/enterprise/guides/automation-triggers",
"v1.12.0/ko/enterprise/guides/gmail-trigger",
"v1.12.0/ko/enterprise/guides/google-calendar-trigger",
"v1.12.0/ko/enterprise/guides/google-drive-trigger",
"v1.12.0/ko/enterprise/guides/outlook-trigger",
"v1.12.0/ko/enterprise/guides/onedrive-trigger",
"v1.12.0/ko/enterprise/guides/microsoft-teams-trigger",
"v1.12.0/ko/enterprise/guides/slack-trigger",
"v1.12.0/ko/enterprise/guides/hubspot-trigger",
"v1.12.0/ko/enterprise/guides/salesforce-trigger",
"v1.12.0/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.12.0/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.12.0/ko/api-reference/introduction",
"v1.12.0/ko/api-reference/inputs",
"v1.12.0/ko/api-reference/kickoff",
"v1.12.0/ko/api-reference/resume",
"v1.12.0/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.12.0/ko/examples/example",
"v1.12.0/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.12.0/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.11.1",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.11.1/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.1/ko/introduction",
"v1.11.1/ko/installation",
"v1.11.1/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.11.1/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.11.1/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.11.1/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.11.1/ko/guides/flows/first-flow",
"v1.11.1/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "도구",
"icon": "wrench",
"pages": [
"v1.11.1/ko/guides/tools/publish-custom-tools"
]
},
{
"group": "코딩 도구",
"icon": "terminal",
"pages": [
"v1.11.1/ko/guides/coding-tools/agents-md"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.11.1/ko/guides/advanced/customizing-prompts",
"v1.11.1/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.11.1/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.11.1/ko/concepts/agents",
"v1.11.1/ko/concepts/tasks",
"v1.11.1/ko/concepts/crews",
"v1.11.1/ko/concepts/flows",
"v1.11.1/ko/concepts/production-architecture",
"v1.11.1/ko/concepts/knowledge",
"v1.11.1/ko/concepts/llms",
"v1.11.1/ko/concepts/files",
"v1.11.1/ko/concepts/processes",
"v1.11.1/ko/concepts/collaboration",
"v1.11.1/ko/concepts/training",
"v1.11.1/ko/concepts/memory",
"v1.11.1/ko/concepts/reasoning",
"v1.11.1/ko/concepts/planning",
"v1.11.1/ko/concepts/testing",
"v1.11.1/ko/concepts/cli",
"v1.11.1/ko/concepts/tools",
"v1.11.1/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.11.1/ko/mcp/overview",
"v1.11.1/ko/mcp/dsl-integration",
"v1.11.1/ko/mcp/stdio",
"v1.11.1/ko/mcp/sse",
"v1.11.1/ko/mcp/streamable-http",
"v1.11.1/ko/mcp/multiple-servers",
"v1.11.1/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.11.1/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.11.1/ko/tools/file-document/overview",
"v1.11.1/ko/tools/file-document/filereadtool",
"v1.11.1/ko/tools/file-document/filewritetool",
"v1.11.1/ko/tools/file-document/pdfsearchtool",
"v1.11.1/ko/tools/file-document/docxsearchtool",
"v1.11.1/ko/tools/file-document/mdxsearchtool",
"v1.11.1/ko/tools/file-document/xmlsearchtool",
"v1.11.1/ko/tools/file-document/txtsearchtool",
"v1.11.1/ko/tools/file-document/jsonsearchtool",
"v1.11.1/ko/tools/file-document/csvsearchtool",
"v1.11.1/ko/tools/file-document/directorysearchtool",
"v1.11.1/ko/tools/file-document/directoryreadtool",
"v1.11.1/ko/tools/file-document/ocrtool",
"v1.11.1/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.11.1/ko/tools/web-scraping/overview",
"v1.11.1/ko/tools/web-scraping/scrapewebsitetool",
"v1.11.1/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.1/ko/tools/web-scraping/scrapflyscrapetool",
"v1.11.1/ko/tools/web-scraping/seleniumscrapingtool",
"v1.11.1/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.11.1/ko/tools/web-scraping/spidertool",
"v1.11.1/ko/tools/web-scraping/browserbaseloadtool",
"v1.11.1/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.11.1/ko/tools/web-scraping/stagehandtool",
"v1.11.1/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.1/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.1/ko/tools/web-scraping/oxylabsscraperstool",
"v1.11.1/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.11.1/ko/tools/search-research/overview",
"v1.11.1/ko/tools/search-research/serperdevtool",
"v1.11.1/ko/tools/search-research/bravesearchtool",
"v1.11.1/ko/tools/search-research/exasearchtool",
"v1.11.1/ko/tools/search-research/linkupsearchtool",
"v1.11.1/ko/tools/search-research/githubsearchtool",
"v1.11.1/ko/tools/search-research/websitesearchtool",
"v1.11.1/ko/tools/search-research/codedocssearchtool",
"v1.11.1/ko/tools/search-research/youtubechannelsearchtool",
"v1.11.1/ko/tools/search-research/youtubevideosearchtool",
"v1.11.1/ko/tools/search-research/tavilysearchtool",
"v1.11.1/ko/tools/search-research/tavilyextractortool",
"v1.11.1/ko/tools/search-research/arxivpapertool",
"v1.11.1/ko/tools/search-research/serpapi-googlesearchtool",
"v1.11.1/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.11.1/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.11.1/ko/tools/database-data/overview",
"v1.11.1/ko/tools/database-data/mysqltool",
"v1.11.1/ko/tools/database-data/pgsearchtool",
"v1.11.1/ko/tools/database-data/snowflakesearchtool",
"v1.11.1/ko/tools/database-data/nl2sqltool",
"v1.11.1/ko/tools/database-data/qdrantvectorsearchtool",
"v1.11.1/ko/tools/database-data/weaviatevectorsearchtool",
"v1.11.1/ko/tools/database-data/mongodbvectorsearchtool",
"v1.11.1/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.11.1/ko/tools/ai-ml/overview",
"v1.11.1/ko/tools/ai-ml/dalletool",
"v1.11.1/ko/tools/ai-ml/visiontool",
"v1.11.1/ko/tools/ai-ml/aimindtool",
"v1.11.1/ko/tools/ai-ml/llamaindextool",
"v1.11.1/ko/tools/ai-ml/langchaintool",
"v1.11.1/ko/tools/ai-ml/ragtool",
"v1.11.1/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.11.1/ko/tools/cloud-storage/overview",
"v1.11.1/ko/tools/cloud-storage/s3readertool",
"v1.11.1/ko/tools/cloud-storage/s3writertool",
"v1.11.1/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.1/ko/tools/integration/overview",
"v1.11.1/ko/tools/integration/bedrockinvokeagenttool",
"v1.11.1/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.11.1/ko/tools/automation/overview",
"v1.11.1/ko/tools/automation/apifyactorstool",
"v1.11.1/ko/tools/automation/composiotool",
"v1.11.1/ko/tools/automation/multiontool",
"v1.11.1/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.11.1/ko/observability/tracing",
"v1.11.1/ko/observability/overview",
"v1.11.1/ko/observability/arize-phoenix",
"v1.11.1/ko/observability/braintrust",
"v1.11.1/ko/observability/datadog",
"v1.11.1/ko/observability/galileo",
"v1.11.1/ko/observability/langdb",
"v1.11.1/ko/observability/langfuse",
"v1.11.1/ko/observability/langtrace",
"v1.11.1/ko/observability/maxim",
"v1.11.1/ko/observability/mlflow",
"v1.11.1/ko/observability/neatlogs",
"v1.11.1/ko/observability/openlit",
"v1.11.1/ko/observability/opik",
"v1.11.1/ko/observability/patronus-evaluation",
"v1.11.1/ko/observability/portkey",
"v1.11.1/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.11.1/ko/learn/overview",
"v1.11.1/ko/learn/llm-selection-guide",
"v1.11.1/ko/learn/conditional-tasks",
"v1.11.1/ko/learn/coding-agents",
"v1.11.1/ko/learn/create-custom-tools",
"v1.11.1/ko/learn/custom-llm",
"v1.11.1/ko/learn/custom-manager-agent",
"v1.11.1/ko/learn/customizing-agents",
"v1.11.1/ko/learn/dalle-image-generation",
"v1.11.1/ko/learn/force-tool-output-as-result",
"v1.11.1/ko/learn/hierarchical-process",
"v1.11.1/ko/learn/human-input-on-execution",
"v1.11.1/ko/learn/human-in-the-loop",
"v1.11.1/ko/learn/human-feedback-in-flows",
"v1.11.1/ko/learn/kickoff-async",
"v1.11.1/ko/learn/kickoff-for-each",
"v1.11.1/ko/learn/llm-connections",
"v1.11.1/ko/learn/multimodal-agents",
"v1.11.1/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.1/ko/learn/sequential-process",
"v1.11.1/ko/learn/using-annotations",
"v1.11.1/ko/learn/execution-hooks",
"v1.11.1/ko/learn/llm-hooks",
"v1.11.1/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.11.1/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.1/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.11.1/ko/enterprise/features/automations",
"v1.11.1/ko/enterprise/features/crew-studio",
"v1.11.1/ko/enterprise/features/marketplace",
"v1.11.1/ko/enterprise/features/agent-repositories",
"v1.11.1/ko/enterprise/features/tools-and-integrations",
"v1.11.1/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.11.1/ko/enterprise/features/traces",
"v1.11.1/ko/enterprise/features/webhook-streaming",
"v1.11.1/ko/enterprise/features/hallucination-guardrail",
"v1.11.1/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.11.1/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.11.1/ko/enterprise/integrations/asana",
"v1.11.1/ko/enterprise/integrations/box",
"v1.11.1/ko/enterprise/integrations/clickup",
"v1.11.1/ko/enterprise/integrations/github",
"v1.11.1/ko/enterprise/integrations/gmail",
"v1.11.1/ko/enterprise/integrations/google_calendar",
"v1.11.1/ko/enterprise/integrations/google_contacts",
"v1.11.1/ko/enterprise/integrations/google_docs",
"v1.11.1/ko/enterprise/integrations/google_drive",
"v1.11.1/ko/enterprise/integrations/google_sheets",
"v1.11.1/ko/enterprise/integrations/google_slides",
"v1.11.1/ko/enterprise/integrations/hubspot",
"v1.11.1/ko/enterprise/integrations/jira",
"v1.11.1/ko/enterprise/integrations/linear",
"v1.11.1/ko/enterprise/integrations/microsoft_excel",
"v1.11.1/ko/enterprise/integrations/microsoft_onedrive",
"v1.11.1/ko/enterprise/integrations/microsoft_outlook",
"v1.11.1/ko/enterprise/integrations/microsoft_sharepoint",
"v1.11.1/ko/enterprise/integrations/microsoft_teams",
"v1.11.1/ko/enterprise/integrations/microsoft_word",
"v1.11.1/ko/enterprise/integrations/notion",
"v1.11.1/ko/enterprise/integrations/salesforce",
"v1.11.1/ko/enterprise/integrations/shopify",
"v1.11.1/ko/enterprise/integrations/slack",
"v1.11.1/ko/enterprise/integrations/stripe",
"v1.11.1/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.11.1/ko/enterprise/guides/build-crew",
"v1.11.1/ko/enterprise/guides/prepare-for-deployment",
"v1.11.1/ko/enterprise/guides/deploy-to-amp",
"v1.11.1/ko/enterprise/guides/private-package-registry",
"v1.11.1/ko/enterprise/guides/kickoff-crew",
"v1.11.1/ko/enterprise/guides/update-crew",
"v1.11.1/ko/enterprise/guides/enable-crew-studio",
"v1.11.1/ko/enterprise/guides/capture_telemetry_logs",
"v1.11.1/ko/enterprise/guides/azure-openai-setup",
"v1.11.1/ko/enterprise/guides/tool-repository",
"v1.11.1/ko/enterprise/guides/custom-mcp-server",
"v1.11.1/ko/enterprise/guides/react-component-export",
"v1.11.1/ko/enterprise/guides/team-management",
"v1.11.1/ko/enterprise/guides/human-in-the-loop",
"v1.11.1/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.11.1/ko/enterprise/guides/automation-triggers",
"v1.11.1/ko/enterprise/guides/gmail-trigger",
"v1.11.1/ko/enterprise/guides/google-calendar-trigger",
"v1.11.1/ko/enterprise/guides/google-drive-trigger",
"v1.11.1/ko/enterprise/guides/outlook-trigger",
"v1.11.1/ko/enterprise/guides/onedrive-trigger",
"v1.11.1/ko/enterprise/guides/microsoft-teams-trigger",
"v1.11.1/ko/enterprise/guides/slack-trigger",
"v1.11.1/ko/enterprise/guides/hubspot-trigger",
"v1.11.1/ko/enterprise/guides/salesforce-trigger",
"v1.11.1/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.11.1/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.1/ko/api-reference/introduction",
"v1.11.1/ko/api-reference/inputs",
"v1.11.1/ko/api-reference/kickoff",
"v1.11.1/ko/api-reference/resume",
"v1.11.1/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.11.1/ko/examples/example",
"v1.11.1/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.11.1/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.11.0",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.11.0/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.0/ko/introduction",
"v1.11.0/ko/installation",
"v1.11.0/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.11.0/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.11.0/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.11.0/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.11.0/ko/guides/flows/first-flow",
"v1.11.0/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.11.0/ko/guides/advanced/customizing-prompts",
"v1.11.0/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.11.0/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.11.0/ko/concepts/agents",
"v1.11.0/ko/concepts/tasks",
"v1.11.0/ko/concepts/crews",
"v1.11.0/ko/concepts/flows",
"v1.11.0/ko/concepts/production-architecture",
"v1.11.0/ko/concepts/knowledge",
"v1.11.0/ko/concepts/llms",
"v1.11.0/ko/concepts/files",
"v1.11.0/ko/concepts/processes",
"v1.11.0/ko/concepts/collaboration",
"v1.11.0/ko/concepts/training",
"v1.11.0/ko/concepts/memory",
"v1.11.0/ko/concepts/reasoning",
"v1.11.0/ko/concepts/planning",
"v1.11.0/ko/concepts/testing",
"v1.11.0/ko/concepts/cli",
"v1.11.0/ko/concepts/tools",
"v1.11.0/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.11.0/ko/mcp/overview",
"v1.11.0/ko/mcp/dsl-integration",
"v1.11.0/ko/mcp/stdio",
"v1.11.0/ko/mcp/sse",
"v1.11.0/ko/mcp/streamable-http",
"v1.11.0/ko/mcp/multiple-servers",
"v1.11.0/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.11.0/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.11.0/ko/tools/file-document/overview",
"v1.11.0/ko/tools/file-document/filereadtool",
"v1.11.0/ko/tools/file-document/filewritetool",
"v1.11.0/ko/tools/file-document/pdfsearchtool",
"v1.11.0/ko/tools/file-document/docxsearchtool",
"v1.11.0/ko/tools/file-document/mdxsearchtool",
"v1.11.0/ko/tools/file-document/xmlsearchtool",
"v1.11.0/ko/tools/file-document/txtsearchtool",
"v1.11.0/ko/tools/file-document/jsonsearchtool",
"v1.11.0/ko/tools/file-document/csvsearchtool",
"v1.11.0/ko/tools/file-document/directorysearchtool",
"v1.11.0/ko/tools/file-document/directoryreadtool",
"v1.11.0/ko/tools/file-document/ocrtool",
"v1.11.0/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.11.0/ko/tools/web-scraping/overview",
"v1.11.0/ko/tools/web-scraping/scrapewebsitetool",
"v1.11.0/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.11.0/ko/tools/web-scraping/scrapflyscrapetool",
"v1.11.0/ko/tools/web-scraping/seleniumscrapingtool",
"v1.11.0/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.11.0/ko/tools/web-scraping/spidertool",
"v1.11.0/ko/tools/web-scraping/browserbaseloadtool",
"v1.11.0/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.11.0/ko/tools/web-scraping/stagehandtool",
"v1.11.0/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.11.0/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.11.0/ko/tools/web-scraping/oxylabsscraperstool",
"v1.11.0/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.11.0/ko/tools/search-research/overview",
"v1.11.0/ko/tools/search-research/serperdevtool",
"v1.11.0/ko/tools/search-research/bravesearchtool",
"v1.11.0/ko/tools/search-research/exasearchtool",
"v1.11.0/ko/tools/search-research/linkupsearchtool",
"v1.11.0/ko/tools/search-research/githubsearchtool",
"v1.11.0/ko/tools/search-research/websitesearchtool",
"v1.11.0/ko/tools/search-research/codedocssearchtool",
"v1.11.0/ko/tools/search-research/youtubechannelsearchtool",
"v1.11.0/ko/tools/search-research/youtubevideosearchtool",
"v1.11.0/ko/tools/search-research/tavilysearchtool",
"v1.11.0/ko/tools/search-research/tavilyextractortool",
"v1.11.0/ko/tools/search-research/arxivpapertool",
"v1.11.0/ko/tools/search-research/serpapi-googlesearchtool",
"v1.11.0/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.11.0/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.11.0/ko/tools/database-data/overview",
"v1.11.0/ko/tools/database-data/mysqltool",
"v1.11.0/ko/tools/database-data/pgsearchtool",
"v1.11.0/ko/tools/database-data/snowflakesearchtool",
"v1.11.0/ko/tools/database-data/nl2sqltool",
"v1.11.0/ko/tools/database-data/qdrantvectorsearchtool",
"v1.11.0/ko/tools/database-data/weaviatevectorsearchtool",
"v1.11.0/ko/tools/database-data/mongodbvectorsearchtool",
"v1.11.0/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.11.0/ko/tools/ai-ml/overview",
"v1.11.0/ko/tools/ai-ml/dalletool",
"v1.11.0/ko/tools/ai-ml/visiontool",
"v1.11.0/ko/tools/ai-ml/aimindtool",
"v1.11.0/ko/tools/ai-ml/llamaindextool",
"v1.11.0/ko/tools/ai-ml/langchaintool",
"v1.11.0/ko/tools/ai-ml/ragtool",
"v1.11.0/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.11.0/ko/tools/cloud-storage/overview",
"v1.11.0/ko/tools/cloud-storage/s3readertool",
"v1.11.0/ko/tools/cloud-storage/s3writertool",
"v1.11.0/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.11.0/ko/tools/integration/overview",
"v1.11.0/ko/tools/integration/bedrockinvokeagenttool",
"v1.11.0/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.11.0/ko/tools/automation/overview",
"v1.11.0/ko/tools/automation/apifyactorstool",
"v1.11.0/ko/tools/automation/composiotool",
"v1.11.0/ko/tools/automation/multiontool",
"v1.11.0/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.11.0/ko/observability/tracing",
"v1.11.0/ko/observability/overview",
"v1.11.0/ko/observability/arize-phoenix",
"v1.11.0/ko/observability/braintrust",
"v1.11.0/ko/observability/datadog",
"v1.11.0/ko/observability/galileo",
"v1.11.0/ko/observability/langdb",
"v1.11.0/ko/observability/langfuse",
"v1.11.0/ko/observability/langtrace",
"v1.11.0/ko/observability/maxim",
"v1.11.0/ko/observability/mlflow",
"v1.11.0/ko/observability/neatlogs",
"v1.11.0/ko/observability/openlit",
"v1.11.0/ko/observability/opik",
"v1.11.0/ko/observability/patronus-evaluation",
"v1.11.0/ko/observability/portkey",
"v1.11.0/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.11.0/ko/learn/overview",
"v1.11.0/ko/learn/llm-selection-guide",
"v1.11.0/ko/learn/conditional-tasks",
"v1.11.0/ko/learn/coding-agents",
"v1.11.0/ko/learn/create-custom-tools",
"v1.11.0/ko/learn/custom-llm",
"v1.11.0/ko/learn/custom-manager-agent",
"v1.11.0/ko/learn/customizing-agents",
"v1.11.0/ko/learn/dalle-image-generation",
"v1.11.0/ko/learn/force-tool-output-as-result",
"v1.11.0/ko/learn/hierarchical-process",
"v1.11.0/ko/learn/human-input-on-execution",
"v1.11.0/ko/learn/human-in-the-loop",
"v1.11.0/ko/learn/human-feedback-in-flows",
"v1.11.0/ko/learn/kickoff-async",
"v1.11.0/ko/learn/kickoff-for-each",
"v1.11.0/ko/learn/llm-connections",
"v1.11.0/ko/learn/multimodal-agents",
"v1.11.0/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.11.0/ko/learn/sequential-process",
"v1.11.0/ko/learn/using-annotations",
"v1.11.0/ko/learn/execution-hooks",
"v1.11.0/ko/learn/llm-hooks",
"v1.11.0/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.11.0/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.0/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.11.0/ko/enterprise/features/automations",
"v1.11.0/ko/enterprise/features/crew-studio",
"v1.11.0/ko/enterprise/features/marketplace",
"v1.11.0/ko/enterprise/features/agent-repositories",
"v1.11.0/ko/enterprise/features/tools-and-integrations",
"v1.11.0/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.11.0/ko/enterprise/features/traces",
"v1.11.0/ko/enterprise/features/webhook-streaming",
"v1.11.0/ko/enterprise/features/hallucination-guardrail",
"v1.11.0/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.11.0/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.11.0/ko/enterprise/integrations/asana",
"v1.11.0/ko/enterprise/integrations/box",
"v1.11.0/ko/enterprise/integrations/clickup",
"v1.11.0/ko/enterprise/integrations/github",
"v1.11.0/ko/enterprise/integrations/gmail",
"v1.11.0/ko/enterprise/integrations/google_calendar",
"v1.11.0/ko/enterprise/integrations/google_contacts",
"v1.11.0/ko/enterprise/integrations/google_docs",
"v1.11.0/ko/enterprise/integrations/google_drive",
"v1.11.0/ko/enterprise/integrations/google_sheets",
"v1.11.0/ko/enterprise/integrations/google_slides",
"v1.11.0/ko/enterprise/integrations/hubspot",
"v1.11.0/ko/enterprise/integrations/jira",
"v1.11.0/ko/enterprise/integrations/linear",
"v1.11.0/ko/enterprise/integrations/microsoft_excel",
"v1.11.0/ko/enterprise/integrations/microsoft_onedrive",
"v1.11.0/ko/enterprise/integrations/microsoft_outlook",
"v1.11.0/ko/enterprise/integrations/microsoft_sharepoint",
"v1.11.0/ko/enterprise/integrations/microsoft_teams",
"v1.11.0/ko/enterprise/integrations/microsoft_word",
"v1.11.0/ko/enterprise/integrations/notion",
"v1.11.0/ko/enterprise/integrations/salesforce",
"v1.11.0/ko/enterprise/integrations/shopify",
"v1.11.0/ko/enterprise/integrations/slack",
"v1.11.0/ko/enterprise/integrations/stripe",
"v1.11.0/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.11.0/ko/enterprise/guides/build-crew",
"v1.11.0/ko/enterprise/guides/prepare-for-deployment",
"v1.11.0/ko/enterprise/guides/deploy-to-amp",
"v1.11.0/ko/enterprise/guides/private-package-registry",
"v1.11.0/ko/enterprise/guides/kickoff-crew",
"v1.11.0/ko/enterprise/guides/update-crew",
"v1.11.0/ko/enterprise/guides/enable-crew-studio",
"v1.11.0/ko/enterprise/guides/capture_telemetry_logs",
"v1.11.0/ko/enterprise/guides/azure-openai-setup",
"v1.11.0/ko/enterprise/guides/tool-repository",
"v1.11.0/ko/enterprise/guides/custom-mcp-server",
"v1.11.0/ko/enterprise/guides/react-component-export",
"v1.11.0/ko/enterprise/guides/team-management",
"v1.11.0/ko/enterprise/guides/human-in-the-loop",
"v1.11.0/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.11.0/ko/enterprise/guides/automation-triggers",
"v1.11.0/ko/enterprise/guides/gmail-trigger",
"v1.11.0/ko/enterprise/guides/google-calendar-trigger",
"v1.11.0/ko/enterprise/guides/google-drive-trigger",
"v1.11.0/ko/enterprise/guides/outlook-trigger",
"v1.11.0/ko/enterprise/guides/onedrive-trigger",
"v1.11.0/ko/enterprise/guides/microsoft-teams-trigger",
"v1.11.0/ko/enterprise/guides/slack-trigger",
"v1.11.0/ko/enterprise/guides/hubspot-trigger",
"v1.11.0/ko/enterprise/guides/salesforce-trigger",
"v1.11.0/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.11.0/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.11.0/ko/api-reference/introduction",
"v1.11.0/ko/api-reference/inputs",
"v1.11.0/ko/api-reference/kickoff",
"v1.11.0/ko/api-reference/resume",
"v1.11.0/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.11.0/ko/examples/example",
"v1.11.0/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.11.0/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.10.1",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.10.1/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.1/ko/introduction",
"v1.10.1/ko/installation",
"v1.10.1/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.10.1/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.10.1/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.10.1/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.10.1/ko/guides/flows/first-flow",
"v1.10.1/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.10.1/ko/guides/advanced/customizing-prompts",
"v1.10.1/ko/guides/advanced/fingerprinting"
]
},
{
"group": "마이그레이션",
"icon": "shuffle",
"pages": [
"v1.10.1/ko/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.10.1/ko/concepts/agents",
"v1.10.1/ko/concepts/tasks",
"v1.10.1/ko/concepts/crews",
"v1.10.1/ko/concepts/flows",
"v1.10.1/ko/concepts/production-architecture",
"v1.10.1/ko/concepts/knowledge",
"v1.10.1/ko/concepts/llms",
"v1.10.1/ko/concepts/files",
"v1.10.1/ko/concepts/processes",
"v1.10.1/ko/concepts/collaboration",
"v1.10.1/ko/concepts/training",
"v1.10.1/ko/concepts/memory",
"v1.10.1/ko/concepts/reasoning",
"v1.10.1/ko/concepts/planning",
"v1.10.1/ko/concepts/testing",
"v1.10.1/ko/concepts/cli",
"v1.10.1/ko/concepts/tools",
"v1.10.1/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.10.1/ko/mcp/overview",
"v1.10.1/ko/mcp/dsl-integration",
"v1.10.1/ko/mcp/stdio",
"v1.10.1/ko/mcp/sse",
"v1.10.1/ko/mcp/streamable-http",
"v1.10.1/ko/mcp/multiple-servers",
"v1.10.1/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.10.1/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.10.1/ko/tools/file-document/overview",
"v1.10.1/ko/tools/file-document/filereadtool",
"v1.10.1/ko/tools/file-document/filewritetool",
"v1.10.1/ko/tools/file-document/pdfsearchtool",
"v1.10.1/ko/tools/file-document/docxsearchtool",
"v1.10.1/ko/tools/file-document/mdxsearchtool",
"v1.10.1/ko/tools/file-document/xmlsearchtool",
"v1.10.1/ko/tools/file-document/txtsearchtool",
"v1.10.1/ko/tools/file-document/jsonsearchtool",
"v1.10.1/ko/tools/file-document/csvsearchtool",
"v1.10.1/ko/tools/file-document/directorysearchtool",
"v1.10.1/ko/tools/file-document/directoryreadtool",
"v1.10.1/ko/tools/file-document/ocrtool",
"v1.10.1/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.10.1/ko/tools/web-scraping/overview",
"v1.10.1/ko/tools/web-scraping/scrapewebsitetool",
"v1.10.1/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.1/ko/tools/web-scraping/scrapflyscrapetool",
"v1.10.1/ko/tools/web-scraping/seleniumscrapingtool",
"v1.10.1/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.10.1/ko/tools/web-scraping/spidertool",
"v1.10.1/ko/tools/web-scraping/browserbaseloadtool",
"v1.10.1/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.10.1/ko/tools/web-scraping/stagehandtool",
"v1.10.1/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.1/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.1/ko/tools/web-scraping/oxylabsscraperstool",
"v1.10.1/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.10.1/ko/tools/search-research/overview",
"v1.10.1/ko/tools/search-research/serperdevtool",
"v1.10.1/ko/tools/search-research/bravesearchtool",
"v1.10.1/ko/tools/search-research/exasearchtool",
"v1.10.1/ko/tools/search-research/linkupsearchtool",
"v1.10.1/ko/tools/search-research/githubsearchtool",
"v1.10.1/ko/tools/search-research/websitesearchtool",
"v1.10.1/ko/tools/search-research/codedocssearchtool",
"v1.10.1/ko/tools/search-research/youtubechannelsearchtool",
"v1.10.1/ko/tools/search-research/youtubevideosearchtool",
"v1.10.1/ko/tools/search-research/tavilysearchtool",
"v1.10.1/ko/tools/search-research/tavilyextractortool",
"v1.10.1/ko/tools/search-research/arxivpapertool",
"v1.10.1/ko/tools/search-research/serpapi-googlesearchtool",
"v1.10.1/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.10.1/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.10.1/ko/tools/database-data/overview",
"v1.10.1/ko/tools/database-data/mysqltool",
"v1.10.1/ko/tools/database-data/pgsearchtool",
"v1.10.1/ko/tools/database-data/snowflakesearchtool",
"v1.10.1/ko/tools/database-data/nl2sqltool",
"v1.10.1/ko/tools/database-data/qdrantvectorsearchtool",
"v1.10.1/ko/tools/database-data/weaviatevectorsearchtool",
"v1.10.1/ko/tools/database-data/mongodbvectorsearchtool",
"v1.10.1/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.10.1/ko/tools/ai-ml/overview",
"v1.10.1/ko/tools/ai-ml/dalletool",
"v1.10.1/ko/tools/ai-ml/visiontool",
"v1.10.1/ko/tools/ai-ml/aimindtool",
"v1.10.1/ko/tools/ai-ml/llamaindextool",
"v1.10.1/ko/tools/ai-ml/langchaintool",
"v1.10.1/ko/tools/ai-ml/ragtool",
"v1.10.1/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.10.1/ko/tools/cloud-storage/overview",
"v1.10.1/ko/tools/cloud-storage/s3readertool",
"v1.10.1/ko/tools/cloud-storage/s3writertool",
"v1.10.1/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.1/ko/tools/integration/overview",
"v1.10.1/ko/tools/integration/bedrockinvokeagenttool",
"v1.10.1/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.10.1/ko/tools/automation/overview",
"v1.10.1/ko/tools/automation/apifyactorstool",
"v1.10.1/ko/tools/automation/composiotool",
"v1.10.1/ko/tools/automation/multiontool",
"v1.10.1/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.10.1/ko/observability/tracing",
"v1.10.1/ko/observability/overview",
"v1.10.1/ko/observability/arize-phoenix",
"v1.10.1/ko/observability/braintrust",
"v1.10.1/ko/observability/datadog",
"v1.10.1/ko/observability/galileo",
"v1.10.1/ko/observability/langdb",
"v1.10.1/ko/observability/langfuse",
"v1.10.1/ko/observability/langtrace",
"v1.10.1/ko/observability/maxim",
"v1.10.1/ko/observability/mlflow",
"v1.10.1/ko/observability/neatlogs",
"v1.10.1/ko/observability/openlit",
"v1.10.1/ko/observability/opik",
"v1.10.1/ko/observability/patronus-evaluation",
"v1.10.1/ko/observability/portkey",
"v1.10.1/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.10.1/ko/learn/overview",
"v1.10.1/ko/learn/llm-selection-guide",
"v1.10.1/ko/learn/conditional-tasks",
"v1.10.1/ko/learn/coding-agents",
"v1.10.1/ko/learn/create-custom-tools",
"v1.10.1/ko/learn/custom-llm",
"v1.10.1/ko/learn/custom-manager-agent",
"v1.10.1/ko/learn/customizing-agents",
"v1.10.1/ko/learn/dalle-image-generation",
"v1.10.1/ko/learn/force-tool-output-as-result",
"v1.10.1/ko/learn/hierarchical-process",
"v1.10.1/ko/learn/human-input-on-execution",
"v1.10.1/ko/learn/human-in-the-loop",
"v1.10.1/ko/learn/human-feedback-in-flows",
"v1.10.1/ko/learn/kickoff-async",
"v1.10.1/ko/learn/kickoff-for-each",
"v1.10.1/ko/learn/llm-connections",
"v1.10.1/ko/learn/multimodal-agents",
"v1.10.1/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.1/ko/learn/sequential-process",
"v1.10.1/ko/learn/using-annotations",
"v1.10.1/ko/learn/execution-hooks",
"v1.10.1/ko/learn/llm-hooks",
"v1.10.1/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.10.1/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.1/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.10.1/ko/enterprise/features/automations",
"v1.10.1/ko/enterprise/features/crew-studio",
"v1.10.1/ko/enterprise/features/marketplace",
"v1.10.1/ko/enterprise/features/agent-repositories",
"v1.10.1/ko/enterprise/features/tools-and-integrations",
"v1.10.1/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.10.1/ko/enterprise/features/traces",
"v1.10.1/ko/enterprise/features/webhook-streaming",
"v1.10.1/ko/enterprise/features/hallucination-guardrail",
"v1.10.1/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.10.1/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.10.1/ko/enterprise/integrations/asana",
"v1.10.1/ko/enterprise/integrations/box",
"v1.10.1/ko/enterprise/integrations/clickup",
"v1.10.1/ko/enterprise/integrations/github",
"v1.10.1/ko/enterprise/integrations/gmail",
"v1.10.1/ko/enterprise/integrations/google_calendar",
"v1.10.1/ko/enterprise/integrations/google_contacts",
"v1.10.1/ko/enterprise/integrations/google_docs",
"v1.10.1/ko/enterprise/integrations/google_drive",
"v1.10.1/ko/enterprise/integrations/google_sheets",
"v1.10.1/ko/enterprise/integrations/google_slides",
"v1.10.1/ko/enterprise/integrations/hubspot",
"v1.10.1/ko/enterprise/integrations/jira",
"v1.10.1/ko/enterprise/integrations/linear",
"v1.10.1/ko/enterprise/integrations/microsoft_excel",
"v1.10.1/ko/enterprise/integrations/microsoft_onedrive",
"v1.10.1/ko/enterprise/integrations/microsoft_outlook",
"v1.10.1/ko/enterprise/integrations/microsoft_sharepoint",
"v1.10.1/ko/enterprise/integrations/microsoft_teams",
"v1.10.1/ko/enterprise/integrations/microsoft_word",
"v1.10.1/ko/enterprise/integrations/notion",
"v1.10.1/ko/enterprise/integrations/salesforce",
"v1.10.1/ko/enterprise/integrations/shopify",
"v1.10.1/ko/enterprise/integrations/slack",
"v1.10.1/ko/enterprise/integrations/stripe",
"v1.10.1/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.10.1/ko/enterprise/guides/build-crew",
"v1.10.1/ko/enterprise/guides/prepare-for-deployment",
"v1.10.1/ko/enterprise/guides/deploy-to-amp",
"v1.10.1/ko/enterprise/guides/private-package-registry",
"v1.10.1/ko/enterprise/guides/kickoff-crew",
"v1.10.1/ko/enterprise/guides/update-crew",
"v1.10.1/ko/enterprise/guides/enable-crew-studio",
"v1.10.1/ko/enterprise/guides/azure-openai-setup",
"v1.10.1/ko/enterprise/guides/tool-repository",
"v1.10.1/ko/enterprise/guides/react-component-export",
"v1.10.1/ko/enterprise/guides/team-management",
"v1.10.1/ko/enterprise/guides/human-in-the-loop",
"v1.10.1/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.10.1/ko/enterprise/guides/automation-triggers",
"v1.10.1/ko/enterprise/guides/gmail-trigger",
"v1.10.1/ko/enterprise/guides/google-calendar-trigger",
"v1.10.1/ko/enterprise/guides/google-drive-trigger",
"v1.10.1/ko/enterprise/guides/outlook-trigger",
"v1.10.1/ko/enterprise/guides/onedrive-trigger",
"v1.10.1/ko/enterprise/guides/microsoft-teams-trigger",
"v1.10.1/ko/enterprise/guides/slack-trigger",
"v1.10.1/ko/enterprise/guides/hubspot-trigger",
"v1.10.1/ko/enterprise/guides/salesforce-trigger",
"v1.10.1/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.10.1/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.1/ko/api-reference/introduction",
"v1.10.1/ko/api-reference/inputs",
"v1.10.1/ko/api-reference/kickoff",
"v1.10.1/ko/api-reference/resume",
"v1.10.1/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.10.1/ko/examples/example",
"v1.10.1/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.10.1/ko/changelog"
]
}
]
}
]
},
{
"version": "v1.10.0",
"tabs": [
{
"tab": "홈",
"icon": "house",
"groups": [
{
"group": "환영합니다",
"pages": [
"v1.10.0/ko/index"
]
}
]
},
{
"tab": "기술 문서",
"icon": "book-open",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.0/ko/introduction",
"v1.10.0/ko/installation",
"v1.10.0/ko/quickstart"
]
},
{
"group": "가이드",
"pages": [
{
"group": "전략",
"icon": "compass",
"pages": [
"v1.10.0/ko/guides/concepts/evaluating-use-cases"
]
},
{
"group": "에이전트 (Agents)",
"icon": "user",
"pages": [
"v1.10.0/ko/guides/agents/crafting-effective-agents"
]
},
{
"group": "크루 (Crews)",
"icon": "users",
"pages": [
"v1.10.0/ko/guides/crews/first-crew"
]
},
{
"group": "플로우 (Flows)",
"icon": "code-branch",
"pages": [
"v1.10.0/ko/guides/flows/first-flow",
"v1.10.0/ko/guides/flows/mastering-flow-state"
]
},
{
"group": "고급",
"icon": "gear",
"pages": [
"v1.10.0/ko/guides/advanced/customizing-prompts",
"v1.10.0/ko/guides/advanced/fingerprinting"
]
}
]
},
{
"group": "핵심 개념",
"pages": [
"v1.10.0/ko/concepts/agents",
"v1.10.0/ko/concepts/tasks",
"v1.10.0/ko/concepts/crews",
"v1.10.0/ko/concepts/flows",
"v1.10.0/ko/concepts/production-architecture",
"v1.10.0/ko/concepts/knowledge",
"v1.10.0/ko/concepts/llms",
"v1.10.0/ko/concepts/files",
"v1.10.0/ko/concepts/processes",
"v1.10.0/ko/concepts/collaboration",
"v1.10.0/ko/concepts/training",
"v1.10.0/ko/concepts/memory",
"v1.10.0/ko/concepts/reasoning",
"v1.10.0/ko/concepts/planning",
"v1.10.0/ko/concepts/testing",
"v1.10.0/ko/concepts/cli",
"v1.10.0/ko/concepts/tools",
"v1.10.0/ko/concepts/event-listener"
]
},
{
"group": "MCP 통합",
"pages": [
"v1.10.0/ko/mcp/overview",
"v1.10.0/ko/mcp/dsl-integration",
"v1.10.0/ko/mcp/stdio",
"v1.10.0/ko/mcp/sse",
"v1.10.0/ko/mcp/streamable-http",
"v1.10.0/ko/mcp/multiple-servers",
"v1.10.0/ko/mcp/security"
]
},
{
"group": "도구 (Tools)",
"pages": [
"v1.10.0/ko/tools/overview",
{
"group": "파일 & 문서",
"icon": "folder-open",
"pages": [
"v1.10.0/ko/tools/file-document/overview",
"v1.10.0/ko/tools/file-document/filereadtool",
"v1.10.0/ko/tools/file-document/filewritetool",
"v1.10.0/ko/tools/file-document/pdfsearchtool",
"v1.10.0/ko/tools/file-document/docxsearchtool",
"v1.10.0/ko/tools/file-document/mdxsearchtool",
"v1.10.0/ko/tools/file-document/xmlsearchtool",
"v1.10.0/ko/tools/file-document/txtsearchtool",
"v1.10.0/ko/tools/file-document/jsonsearchtool",
"v1.10.0/ko/tools/file-document/csvsearchtool",
"v1.10.0/ko/tools/file-document/directorysearchtool",
"v1.10.0/ko/tools/file-document/directoryreadtool",
"v1.10.0/ko/tools/file-document/ocrtool",
"v1.10.0/ko/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "웹 스크래핑 & 브라우징",
"icon": "globe",
"pages": [
"v1.10.0/ko/tools/web-scraping/overview",
"v1.10.0/ko/tools/web-scraping/scrapewebsitetool",
"v1.10.0/ko/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.10.0/ko/tools/web-scraping/scrapflyscrapetool",
"v1.10.0/ko/tools/web-scraping/seleniumscrapingtool",
"v1.10.0/ko/tools/web-scraping/scrapegraphscrapetool",
"v1.10.0/ko/tools/web-scraping/spidertool",
"v1.10.0/ko/tools/web-scraping/browserbaseloadtool",
"v1.10.0/ko/tools/web-scraping/hyperbrowserloadtool",
"v1.10.0/ko/tools/web-scraping/stagehandtool",
"v1.10.0/ko/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.10.0/ko/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.10.0/ko/tools/web-scraping/oxylabsscraperstool",
"v1.10.0/ko/tools/web-scraping/brightdata-tools"
]
},
{
"group": "검색 및 연구",
"icon": "magnifying-glass",
"pages": [
"v1.10.0/ko/tools/search-research/overview",
"v1.10.0/ko/tools/search-research/serperdevtool",
"v1.10.0/ko/tools/search-research/bravesearchtool",
"v1.10.0/ko/tools/search-research/exasearchtool",
"v1.10.0/ko/tools/search-research/linkupsearchtool",
"v1.10.0/ko/tools/search-research/githubsearchtool",
"v1.10.0/ko/tools/search-research/websitesearchtool",
"v1.10.0/ko/tools/search-research/codedocssearchtool",
"v1.10.0/ko/tools/search-research/youtubechannelsearchtool",
"v1.10.0/ko/tools/search-research/youtubevideosearchtool",
"v1.10.0/ko/tools/search-research/tavilysearchtool",
"v1.10.0/ko/tools/search-research/tavilyextractortool",
"v1.10.0/ko/tools/search-research/arxivpapertool",
"v1.10.0/ko/tools/search-research/serpapi-googlesearchtool",
"v1.10.0/ko/tools/search-research/serpapi-googleshoppingtool",
"v1.10.0/ko/tools/search-research/databricks-query-tool"
]
},
{
"group": "데이터베이스 & 데이터",
"icon": "database",
"pages": [
"v1.10.0/ko/tools/database-data/overview",
"v1.10.0/ko/tools/database-data/mysqltool",
"v1.10.0/ko/tools/database-data/pgsearchtool",
"v1.10.0/ko/tools/database-data/snowflakesearchtool",
"v1.10.0/ko/tools/database-data/nl2sqltool",
"v1.10.0/ko/tools/database-data/qdrantvectorsearchtool",
"v1.10.0/ko/tools/database-data/weaviatevectorsearchtool",
"v1.10.0/ko/tools/database-data/mongodbvectorsearchtool",
"v1.10.0/ko/tools/database-data/singlestoresearchtool"
]
},
{
"group": "인공지능 & 머신러닝",
"icon": "brain",
"pages": [
"v1.10.0/ko/tools/ai-ml/overview",
"v1.10.0/ko/tools/ai-ml/dalletool",
"v1.10.0/ko/tools/ai-ml/visiontool",
"v1.10.0/ko/tools/ai-ml/aimindtool",
"v1.10.0/ko/tools/ai-ml/llamaindextool",
"v1.10.0/ko/tools/ai-ml/langchaintool",
"v1.10.0/ko/tools/ai-ml/ragtool",
"v1.10.0/ko/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "클라우드 & 스토리지",
"icon": "cloud",
"pages": [
"v1.10.0/ko/tools/cloud-storage/overview",
"v1.10.0/ko/tools/cloud-storage/s3readertool",
"v1.10.0/ko/tools/cloud-storage/s3writertool",
"v1.10.0/ko/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.10.0/ko/tools/integration/overview",
"v1.10.0/ko/tools/integration/bedrockinvokeagenttool",
"v1.10.0/ko/tools/integration/crewaiautomationtool"
]
},
{
"group": "자동화",
"icon": "bolt",
"pages": [
"v1.10.0/ko/tools/automation/overview",
"v1.10.0/ko/tools/automation/apifyactorstool",
"v1.10.0/ko/tools/automation/composiotool",
"v1.10.0/ko/tools/automation/multiontool",
"v1.10.0/ko/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.10.0/ko/observability/tracing",
"v1.10.0/ko/observability/overview",
"v1.10.0/ko/observability/arize-phoenix",
"v1.10.0/ko/observability/braintrust",
"v1.10.0/ko/observability/datadog",
"v1.10.0/ko/observability/galileo",
"v1.10.0/ko/observability/langdb",
"v1.10.0/ko/observability/langfuse",
"v1.10.0/ko/observability/langtrace",
"v1.10.0/ko/observability/maxim",
"v1.10.0/ko/observability/mlflow",
"v1.10.0/ko/observability/neatlogs",
"v1.10.0/ko/observability/openlit",
"v1.10.0/ko/observability/opik",
"v1.10.0/ko/observability/patronus-evaluation",
"v1.10.0/ko/observability/portkey",
"v1.10.0/ko/observability/weave"
]
},
{
"group": "학습",
"pages": [
"v1.10.0/ko/learn/overview",
"v1.10.0/ko/learn/llm-selection-guide",
"v1.10.0/ko/learn/conditional-tasks",
"v1.10.0/ko/learn/coding-agents",
"v1.10.0/ko/learn/create-custom-tools",
"v1.10.0/ko/learn/custom-llm",
"v1.10.0/ko/learn/custom-manager-agent",
"v1.10.0/ko/learn/customizing-agents",
"v1.10.0/ko/learn/dalle-image-generation",
"v1.10.0/ko/learn/force-tool-output-as-result",
"v1.10.0/ko/learn/hierarchical-process",
"v1.10.0/ko/learn/human-input-on-execution",
"v1.10.0/ko/learn/human-in-the-loop",
"v1.10.0/ko/learn/human-feedback-in-flows",
"v1.10.0/ko/learn/kickoff-async",
"v1.10.0/ko/learn/kickoff-for-each",
"v1.10.0/ko/learn/llm-connections",
"v1.10.0/ko/learn/multimodal-agents",
"v1.10.0/ko/learn/replay-tasks-from-latest-crew-kickoff",
"v1.10.0/ko/learn/sequential-process",
"v1.10.0/ko/learn/using-annotations",
"v1.10.0/ko/learn/execution-hooks",
"v1.10.0/ko/learn/llm-hooks",
"v1.10.0/ko/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.10.0/ko/telemetry"
]
}
]
},
{
"tab": "엔터프라이즈",
"icon": "briefcase",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.0/ko/enterprise/introduction"
]
},
{
"group": "빌드",
"pages": [
"v1.10.0/ko/enterprise/features/automations",
"v1.10.0/ko/enterprise/features/crew-studio",
"v1.10.0/ko/enterprise/features/marketplace",
"v1.10.0/ko/enterprise/features/agent-repositories",
"v1.10.0/ko/enterprise/features/tools-and-integrations",
"v1.10.0/ko/enterprise/features/pii-trace-redactions"
]
},
{
"group": "운영",
"pages": [
"v1.10.0/ko/enterprise/features/traces",
"v1.10.0/ko/enterprise/features/webhook-streaming",
"v1.10.0/ko/enterprise/features/hallucination-guardrail",
"v1.10.0/ko/enterprise/features/flow-hitl-management"
]
},
{
"group": "관리",
"pages": [
"v1.10.0/ko/enterprise/features/rbac"
]
},
{
"group": "통합 문서",
"pages": [
"v1.10.0/ko/enterprise/integrations/asana",
"v1.10.0/ko/enterprise/integrations/box",
"v1.10.0/ko/enterprise/integrations/clickup",
"v1.10.0/ko/enterprise/integrations/github",
"v1.10.0/ko/enterprise/integrations/gmail",
"v1.10.0/ko/enterprise/integrations/google_calendar",
"v1.10.0/ko/enterprise/integrations/google_contacts",
"v1.10.0/ko/enterprise/integrations/google_docs",
"v1.10.0/ko/enterprise/integrations/google_drive",
"v1.10.0/ko/enterprise/integrations/google_sheets",
"v1.10.0/ko/enterprise/integrations/google_slides",
"v1.10.0/ko/enterprise/integrations/hubspot",
"v1.10.0/ko/enterprise/integrations/jira",
"v1.10.0/ko/enterprise/integrations/linear",
"v1.10.0/ko/enterprise/integrations/microsoft_excel",
"v1.10.0/ko/enterprise/integrations/microsoft_onedrive",
"v1.10.0/ko/enterprise/integrations/microsoft_outlook",
"v1.10.0/ko/enterprise/integrations/microsoft_sharepoint",
"v1.10.0/ko/enterprise/integrations/microsoft_teams",
"v1.10.0/ko/enterprise/integrations/microsoft_word",
"v1.10.0/ko/enterprise/integrations/notion",
"v1.10.0/ko/enterprise/integrations/salesforce",
"v1.10.0/ko/enterprise/integrations/shopify",
"v1.10.0/ko/enterprise/integrations/slack",
"v1.10.0/ko/enterprise/integrations/stripe",
"v1.10.0/ko/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.10.0/ko/enterprise/guides/build-crew",
"v1.10.0/ko/enterprise/guides/prepare-for-deployment",
"v1.10.0/ko/enterprise/guides/deploy-to-amp",
"v1.10.0/ko/enterprise/guides/private-package-registry",
"v1.10.0/ko/enterprise/guides/kickoff-crew",
"v1.10.0/ko/enterprise/guides/update-crew",
"v1.10.0/ko/enterprise/guides/enable-crew-studio",
"v1.10.0/ko/enterprise/guides/azure-openai-setup",
"v1.10.0/ko/enterprise/guides/tool-repository",
"v1.10.0/ko/enterprise/guides/react-component-export",
"v1.10.0/ko/enterprise/guides/team-management",
"v1.10.0/ko/enterprise/guides/human-in-the-loop",
"v1.10.0/ko/enterprise/guides/webhook-automation"
]
},
{
"group": "트리거",
"pages": [
"v1.10.0/ko/enterprise/guides/automation-triggers",
"v1.10.0/ko/enterprise/guides/gmail-trigger",
"v1.10.0/ko/enterprise/guides/google-calendar-trigger",
"v1.10.0/ko/enterprise/guides/google-drive-trigger",
"v1.10.0/ko/enterprise/guides/outlook-trigger",
"v1.10.0/ko/enterprise/guides/onedrive-trigger",
"v1.10.0/ko/enterprise/guides/microsoft-teams-trigger",
"v1.10.0/ko/enterprise/guides/slack-trigger",
"v1.10.0/ko/enterprise/guides/hubspot-trigger",
"v1.10.0/ko/enterprise/guides/salesforce-trigger",
"v1.10.0/ko/enterprise/guides/zapier-trigger"
]
},
{
"group": "학습 자원",
"pages": [
"v1.10.0/ko/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API 레퍼런스",
"icon": "magnifying-glass",
"groups": [
{
"group": "시작 안내",
"pages": [
"v1.10.0/ko/api-reference/introduction",
"v1.10.0/ko/api-reference/inputs",
"v1.10.0/ko/api-reference/kickoff",
"v1.10.0/ko/api-reference/resume",
"v1.10.0/ko/api-reference/status"
]
}
]
},
{
"tab": "예시",
"icon": "code",
"groups": [
{
"group": "예시",
"pages": [
"v1.10.0/ko/examples/example",
"v1.10.0/ko/examples/cookbooks"
]
}
]
},
{
"tab": "변경 로그",
"icon": "clock",
"groups": [
{
"group": "릴리스 노트",
"pages": [
"v1.10.0/ko/changelog"
]
}
]
}
]
}
]
},
{
"language": "ar",
"global": {
"anchors": [
{
"anchor": "الموقع",
"href": "https://crewai.com",
"icon": "globe"
},
{
"anchor": "المنتدى",
"href": "https://community.crewai.com",
"icon": "discourse"
},
{
"anchor": "المدوّنة",
"href": "https://blog.crewai.com",
"icon": "newspaper"
},
{
"anchor": "CrewGPT",
"href": "https://chatgpt.com/g/g-qqTuUWsBY-crewai-assistant",
"icon": "robot"
}
]
},
"versions": [
{
"version": "Edge",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"edge/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"edge/ar/introduction",
"edge/ar/guides/coding-tools/build-with-ai",
"edge/ar/skills",
"edge/ar/installation",
"edge/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"edge/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"edge/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"edge/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"edge/ar/guides/flows/first-flow",
"edge/ar/guides/flows/mastering-flow-state",
"edge/ar/guides/flows/conversational-flows",
"edge/ar/guides/flows/inputs-id-deprecation"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"edge/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"edge/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"edge/ar/guides/advanced/customizing-prompts",
"edge/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"edge/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"edge/ar/concepts/agents",
"edge/ar/concepts/agent-capabilities",
"edge/ar/concepts/tasks",
"edge/ar/concepts/crews",
"edge/ar/concepts/flows",
"edge/ar/concepts/production-architecture",
"edge/ar/concepts/knowledge",
"edge/ar/concepts/skills",
"edge/ar/concepts/llms",
"edge/ar/concepts/files",
"edge/ar/concepts/processes",
"edge/ar/concepts/collaboration",
"edge/ar/concepts/training",
"edge/ar/concepts/memory",
"edge/ar/concepts/reasoning",
"edge/ar/concepts/planning",
"edge/ar/concepts/testing",
"edge/ar/concepts/cli",
"edge/ar/concepts/tools",
"edge/ar/concepts/event-listener",
"edge/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"edge/ar/mcp/overview",
"edge/ar/mcp/dsl-integration",
"edge/ar/mcp/stdio",
"edge/ar/mcp/sse",
"edge/ar/mcp/streamable-http",
"edge/ar/mcp/multiple-servers",
"edge/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"edge/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"edge/ar/tools/file-document/overview",
"edge/ar/tools/file-document/filereadtool",
"edge/ar/tools/file-document/filewritetool",
"edge/ar/tools/file-document/pdfsearchtool",
"edge/ar/tools/file-document/docxsearchtool",
"edge/ar/tools/file-document/mdxsearchtool",
"edge/ar/tools/file-document/xmlsearchtool",
"edge/ar/tools/file-document/txtsearchtool",
"edge/ar/tools/file-document/jsonsearchtool",
"edge/ar/tools/file-document/csvsearchtool",
"edge/ar/tools/file-document/directorysearchtool",
"edge/ar/tools/file-document/directoryreadtool",
"edge/ar/tools/file-document/ocrtool",
"edge/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"edge/ar/tools/web-scraping/overview",
"edge/ar/tools/web-scraping/scrapewebsitetool",
"edge/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"edge/ar/tools/web-scraping/scrapflyscrapetool",
"edge/ar/tools/web-scraping/seleniumscrapingtool",
"edge/ar/tools/web-scraping/scrapegraphscrapetool",
"edge/ar/tools/web-scraping/spidertool",
"edge/ar/tools/web-scraping/browserbaseloadtool",
"edge/ar/tools/web-scraping/hyperbrowserloadtool",
"edge/ar/tools/web-scraping/stagehandtool",
"edge/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"edge/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"edge/ar/tools/web-scraping/oxylabsscraperstool",
"edge/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"edge/ar/tools/search-research/overview",
"edge/ar/tools/search-research/serperdevtool",
"edge/ar/tools/search-research/bravesearchtool",
"edge/ar/tools/search-research/exasearchtool",
"edge/ar/tools/search-research/linkupsearchtool",
"edge/ar/tools/search-research/githubsearchtool",
"edge/ar/tools/search-research/websitesearchtool",
"edge/ar/tools/search-research/codedocssearchtool",
"edge/ar/tools/search-research/youtubechannelsearchtool",
"edge/ar/tools/search-research/youtubevideosearchtool",
"edge/ar/tools/search-research/tavilysearchtool",
"edge/ar/tools/search-research/tavilyextractortool",
"edge/ar/tools/search-research/tavilyresearchtool",
"edge/ar/tools/search-research/arxivpapertool",
"edge/ar/tools/search-research/serpapi-googlesearchtool",
"edge/ar/tools/search-research/serpapi-googleshoppingtool",
"edge/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"edge/ar/tools/database-data/overview",
"edge/ar/tools/database-data/mysqltool",
"edge/ar/tools/database-data/pgsearchtool",
"edge/ar/tools/database-data/snowflakesearchtool",
"edge/ar/tools/database-data/nl2sqltool",
"edge/ar/tools/database-data/qdrantvectorsearchtool",
"edge/ar/tools/database-data/weaviatevectorsearchtool",
"edge/ar/tools/database-data/mongodbvectorsearchtool",
"edge/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"edge/ar/tools/ai-ml/overview",
"edge/ar/tools/ai-ml/dalletool",
"edge/ar/tools/ai-ml/visiontool",
"edge/ar/tools/ai-ml/aimindtool",
"edge/ar/tools/ai-ml/llamaindextool",
"edge/ar/tools/ai-ml/langchaintool",
"edge/ar/tools/ai-ml/ragtool",
"edge/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"edge/ar/tools/cloud-storage/overview",
"edge/ar/tools/cloud-storage/s3readertool",
"edge/ar/tools/cloud-storage/s3writertool",
"edge/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"edge/ar/tools/integration/overview",
"edge/ar/tools/integration/bedrockinvokeagenttool",
"edge/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"edge/ar/tools/automation/overview",
"edge/ar/tools/automation/apifyactorstool",
"edge/ar/tools/automation/composiotool",
"edge/ar/tools/automation/multiontool",
"edge/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"edge/ar/observability/tracing",
"edge/ar/observability/overview",
"edge/ar/observability/arize-phoenix",
"edge/ar/observability/braintrust",
"edge/ar/observability/datadog",
"edge/ar/observability/galileo",
"edge/ar/observability/langdb",
"edge/ar/observability/langfuse",
"edge/ar/observability/langtrace",
"edge/ar/observability/maxim",
"edge/ar/observability/mlflow",
"edge/ar/observability/neatlogs",
"edge/ar/observability/openlit",
"edge/ar/observability/opik",
"edge/ar/observability/patronus-evaluation",
"edge/ar/observability/portkey",
"edge/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"edge/ar/learn/overview",
"edge/ar/learn/llm-selection-guide",
"edge/ar/learn/conditional-tasks",
"edge/ar/learn/coding-agents",
"edge/ar/learn/create-custom-tools",
"edge/ar/learn/custom-llm",
"edge/ar/learn/custom-manager-agent",
"edge/ar/learn/customizing-agents",
"edge/ar/learn/dalle-image-generation",
"edge/ar/learn/force-tool-output-as-result",
"edge/ar/learn/hierarchical-process",
"edge/ar/learn/human-input-on-execution",
"edge/ar/learn/human-in-the-loop",
"edge/ar/learn/human-feedback-in-flows",
"edge/ar/learn/kickoff-async",
"edge/ar/learn/kickoff-for-each",
"edge/ar/learn/llm-connections",
"edge/ar/learn/multimodal-agents",
"edge/ar/learn/replay-tasks-from-latest-crew-kickoff",
"edge/ar/learn/sequential-process",
"edge/ar/learn/using-annotations",
"edge/ar/learn/execution-hooks",
"edge/ar/learn/llm-hooks",
"edge/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"edge/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"edge/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"edge/ar/enterprise/features/automations",
"edge/ar/enterprise/features/crew-studio",
"edge/ar/enterprise/features/marketplace",
"edge/ar/enterprise/features/agent-repositories",
"edge/ar/enterprise/features/tools-and-integrations",
"edge/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"edge/ar/enterprise/features/traces",
"edge/ar/enterprise/features/webhook-streaming",
"edge/ar/enterprise/features/hallucination-guardrail",
"edge/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"edge/ar/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"edge/ar/enterprise/features/secrets-manager/overview",
"edge/ar/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"edge/ar/enterprise/features/secrets-manager/aws",
"edge/ar/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"edge/ar/enterprise/features/secrets-manager/gcp",
"edge/ar/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"edge/ar/enterprise/features/secrets-manager/azure",
"edge/ar/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"edge/ar/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "التكاملات",
"pages": [
"edge/ar/enterprise/integrations/asana",
"edge/ar/enterprise/integrations/box",
"edge/ar/enterprise/integrations/clickup",
"edge/ar/enterprise/integrations/databricks",
"edge/ar/enterprise/integrations/github",
"edge/ar/enterprise/integrations/gmail",
"edge/ar/enterprise/integrations/google_calendar",
"edge/ar/enterprise/integrations/google_contacts",
"edge/ar/enterprise/integrations/google_docs",
"edge/ar/enterprise/integrations/google_drive",
"edge/ar/enterprise/integrations/google_sheets",
"edge/ar/enterprise/integrations/google_slides",
"edge/ar/enterprise/integrations/hubspot",
"edge/ar/enterprise/integrations/jira",
"edge/ar/enterprise/integrations/linear",
"edge/ar/enterprise/integrations/microsoft_excel",
"edge/ar/enterprise/integrations/microsoft_onedrive",
"edge/ar/enterprise/integrations/microsoft_outlook",
"edge/ar/enterprise/integrations/microsoft_sharepoint",
"edge/ar/enterprise/integrations/microsoft_teams",
"edge/ar/enterprise/integrations/microsoft_word",
"edge/ar/enterprise/integrations/notion",
"edge/ar/enterprise/integrations/salesforce",
"edge/ar/enterprise/integrations/shopify",
"edge/ar/enterprise/integrations/slack",
"edge/ar/enterprise/integrations/snowflake",
"edge/ar/enterprise/integrations/stripe",
"edge/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"edge/ar/enterprise/guides/build-crew",
"edge/ar/enterprise/guides/prepare-for-deployment",
"edge/ar/enterprise/guides/deploy-to-amp",
"edge/ar/enterprise/guides/monorepo-deployments",
"edge/ar/enterprise/guides/private-package-registry",
"edge/ar/enterprise/guides/kickoff-crew",
"edge/ar/enterprise/guides/training-crews",
"edge/ar/enterprise/guides/update-crew",
"edge/ar/enterprise/guides/enable-crew-studio",
"edge/ar/enterprise/guides/capture_telemetry_logs",
"edge/ar/enterprise/guides/azure-openai-setup",
"edge/ar/enterprise/guides/tool-repository",
"edge/ar/enterprise/guides/custom-mcp-server",
"edge/ar/enterprise/guides/react-component-export",
"edge/ar/enterprise/guides/team-management",
"edge/ar/enterprise/guides/human-in-the-loop",
"edge/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"edge/ar/enterprise/guides/automation-triggers",
"edge/ar/enterprise/guides/gmail-trigger",
"edge/ar/enterprise/guides/google-calendar-trigger",
"edge/ar/enterprise/guides/google-drive-trigger",
"edge/ar/enterprise/guides/outlook-trigger",
"edge/ar/enterprise/guides/onedrive-trigger",
"edge/ar/enterprise/guides/microsoft-teams-trigger",
"edge/ar/enterprise/guides/slack-trigger",
"edge/ar/enterprise/guides/hubspot-trigger",
"edge/ar/enterprise/guides/salesforce-trigger",
"edge/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"edge/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"edge/ar/api-reference/introduction",
"edge/ar/api-reference/inputs",
"edge/ar/api-reference/kickoff",
"edge/ar/api-reference/resume",
"edge/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"edge/ar/examples/example",
"edge/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"edge/ar/changelog"
]
}
]
}
],
"tag": "Edge"
},
{
"version": "v1.14.7",
"default": true,
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.7/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.7/ar/introduction",
"v1.14.7/ar/guides/coding-tools/build-with-ai",
"v1.14.7/ar/skills",
"v1.14.7/ar/installation",
"v1.14.7/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.7/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.7/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.7/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.7/ar/guides/flows/first-flow",
"v1.14.7/ar/guides/flows/mastering-flow-state",
"v1.14.7/ar/guides/flows/conversational-flows",
"v1.14.7/ar/guides/flows/inputs-id-deprecation"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.7/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.7/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.7/ar/guides/advanced/customizing-prompts",
"v1.14.7/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.7/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.7/ar/concepts/agents",
"v1.14.7/ar/concepts/agent-capabilities",
"v1.14.7/ar/concepts/tasks",
"v1.14.7/ar/concepts/crews",
"v1.14.7/ar/concepts/flows",
"v1.14.7/ar/concepts/production-architecture",
"v1.14.7/ar/concepts/knowledge",
"v1.14.7/ar/concepts/skills",
"v1.14.7/ar/concepts/llms",
"v1.14.7/ar/concepts/files",
"v1.14.7/ar/concepts/processes",
"v1.14.7/ar/concepts/collaboration",
"v1.14.7/ar/concepts/training",
"v1.14.7/ar/concepts/memory",
"v1.14.7/ar/concepts/reasoning",
"v1.14.7/ar/concepts/planning",
"v1.14.7/ar/concepts/testing",
"v1.14.7/ar/concepts/cli",
"v1.14.7/ar/concepts/tools",
"v1.14.7/ar/concepts/event-listener",
"v1.14.7/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.7/ar/mcp/overview",
"v1.14.7/ar/mcp/dsl-integration",
"v1.14.7/ar/mcp/stdio",
"v1.14.7/ar/mcp/sse",
"v1.14.7/ar/mcp/streamable-http",
"v1.14.7/ar/mcp/multiple-servers",
"v1.14.7/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.7/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.7/ar/tools/file-document/overview",
"v1.14.7/ar/tools/file-document/filereadtool",
"v1.14.7/ar/tools/file-document/filewritetool",
"v1.14.7/ar/tools/file-document/pdfsearchtool",
"v1.14.7/ar/tools/file-document/docxsearchtool",
"v1.14.7/ar/tools/file-document/mdxsearchtool",
"v1.14.7/ar/tools/file-document/xmlsearchtool",
"v1.14.7/ar/tools/file-document/txtsearchtool",
"v1.14.7/ar/tools/file-document/jsonsearchtool",
"v1.14.7/ar/tools/file-document/csvsearchtool",
"v1.14.7/ar/tools/file-document/directorysearchtool",
"v1.14.7/ar/tools/file-document/directoryreadtool",
"v1.14.7/ar/tools/file-document/ocrtool",
"v1.14.7/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.7/ar/tools/web-scraping/overview",
"v1.14.7/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.7/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.7/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.7/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.7/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.7/ar/tools/web-scraping/spidertool",
"v1.14.7/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.7/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.7/ar/tools/web-scraping/stagehandtool",
"v1.14.7/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.7/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.7/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.7/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.7/ar/tools/search-research/overview",
"v1.14.7/ar/tools/search-research/serperdevtool",
"v1.14.7/ar/tools/search-research/bravesearchtool",
"v1.14.7/ar/tools/search-research/exasearchtool",
"v1.14.7/ar/tools/search-research/linkupsearchtool",
"v1.14.7/ar/tools/search-research/githubsearchtool",
"v1.14.7/ar/tools/search-research/websitesearchtool",
"v1.14.7/ar/tools/search-research/codedocssearchtool",
"v1.14.7/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.7/ar/tools/search-research/youtubevideosearchtool",
"v1.14.7/ar/tools/search-research/tavilysearchtool",
"v1.14.7/ar/tools/search-research/tavilyextractortool",
"v1.14.7/ar/tools/search-research/tavilyresearchtool",
"v1.14.7/ar/tools/search-research/arxivpapertool",
"v1.14.7/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.7/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.7/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.7/ar/tools/database-data/overview",
"v1.14.7/ar/tools/database-data/mysqltool",
"v1.14.7/ar/tools/database-data/pgsearchtool",
"v1.14.7/ar/tools/database-data/snowflakesearchtool",
"v1.14.7/ar/tools/database-data/nl2sqltool",
"v1.14.7/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.7/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.7/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.7/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.7/ar/tools/ai-ml/overview",
"v1.14.7/ar/tools/ai-ml/dalletool",
"v1.14.7/ar/tools/ai-ml/visiontool",
"v1.14.7/ar/tools/ai-ml/aimindtool",
"v1.14.7/ar/tools/ai-ml/llamaindextool",
"v1.14.7/ar/tools/ai-ml/langchaintool",
"v1.14.7/ar/tools/ai-ml/ragtool",
"v1.14.7/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.7/ar/tools/cloud-storage/overview",
"v1.14.7/ar/tools/cloud-storage/s3readertool",
"v1.14.7/ar/tools/cloud-storage/s3writertool",
"v1.14.7/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.7/ar/tools/integration/overview",
"v1.14.7/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.7/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.7/ar/tools/automation/overview",
"v1.14.7/ar/tools/automation/apifyactorstool",
"v1.14.7/ar/tools/automation/composiotool",
"v1.14.7/ar/tools/automation/multiontool",
"v1.14.7/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.7/ar/observability/tracing",
"v1.14.7/ar/observability/overview",
"v1.14.7/ar/observability/arize-phoenix",
"v1.14.7/ar/observability/braintrust",
"v1.14.7/ar/observability/datadog",
"v1.14.7/ar/observability/galileo",
"v1.14.7/ar/observability/langdb",
"v1.14.7/ar/observability/langfuse",
"v1.14.7/ar/observability/langtrace",
"v1.14.7/ar/observability/maxim",
"v1.14.7/ar/observability/mlflow",
"v1.14.7/ar/observability/neatlogs",
"v1.14.7/ar/observability/openlit",
"v1.14.7/ar/observability/opik",
"v1.14.7/ar/observability/patronus-evaluation",
"v1.14.7/ar/observability/portkey",
"v1.14.7/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.7/ar/learn/overview",
"v1.14.7/ar/learn/llm-selection-guide",
"v1.14.7/ar/learn/conditional-tasks",
"v1.14.7/ar/learn/coding-agents",
"v1.14.7/ar/learn/create-custom-tools",
"v1.14.7/ar/learn/custom-llm",
"v1.14.7/ar/learn/custom-manager-agent",
"v1.14.7/ar/learn/customizing-agents",
"v1.14.7/ar/learn/dalle-image-generation",
"v1.14.7/ar/learn/force-tool-output-as-result",
"v1.14.7/ar/learn/hierarchical-process",
"v1.14.7/ar/learn/human-input-on-execution",
"v1.14.7/ar/learn/human-in-the-loop",
"v1.14.7/ar/learn/human-feedback-in-flows",
"v1.14.7/ar/learn/kickoff-async",
"v1.14.7/ar/learn/kickoff-for-each",
"v1.14.7/ar/learn/llm-connections",
"v1.14.7/ar/learn/multimodal-agents",
"v1.14.7/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.7/ar/learn/sequential-process",
"v1.14.7/ar/learn/using-annotations",
"v1.14.7/ar/learn/execution-hooks",
"v1.14.7/ar/learn/llm-hooks",
"v1.14.7/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.7/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.7/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.7/ar/enterprise/features/automations",
"v1.14.7/ar/enterprise/features/crew-studio",
"v1.14.7/ar/enterprise/features/marketplace",
"v1.14.7/ar/enterprise/features/agent-repositories",
"v1.14.7/ar/enterprise/features/tools-and-integrations",
"v1.14.7/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.7/ar/enterprise/features/traces",
"v1.14.7/ar/enterprise/features/webhook-streaming",
"v1.14.7/ar/enterprise/features/hallucination-guardrail",
"v1.14.7/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.7/ar/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.7/ar/enterprise/features/secrets-manager/overview",
"v1.14.7/ar/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.7/ar/enterprise/features/secrets-manager/aws",
"v1.14.7/ar/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.7/ar/enterprise/features/secrets-manager/gcp",
"v1.14.7/ar/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.7/ar/enterprise/features/secrets-manager/azure",
"v1.14.7/ar/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.7/ar/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.7/ar/enterprise/integrations/asana",
"v1.14.7/ar/enterprise/integrations/box",
"v1.14.7/ar/enterprise/integrations/clickup",
"v1.14.7/ar/enterprise/integrations/databricks",
"v1.14.7/ar/enterprise/integrations/github",
"v1.14.7/ar/enterprise/integrations/gmail",
"v1.14.7/ar/enterprise/integrations/google_calendar",
"v1.14.7/ar/enterprise/integrations/google_contacts",
"v1.14.7/ar/enterprise/integrations/google_docs",
"v1.14.7/ar/enterprise/integrations/google_drive",
"v1.14.7/ar/enterprise/integrations/google_sheets",
"v1.14.7/ar/enterprise/integrations/google_slides",
"v1.14.7/ar/enterprise/integrations/hubspot",
"v1.14.7/ar/enterprise/integrations/jira",
"v1.14.7/ar/enterprise/integrations/linear",
"v1.14.7/ar/enterprise/integrations/microsoft_excel",
"v1.14.7/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.7/ar/enterprise/integrations/microsoft_outlook",
"v1.14.7/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.7/ar/enterprise/integrations/microsoft_teams",
"v1.14.7/ar/enterprise/integrations/microsoft_word",
"v1.14.7/ar/enterprise/integrations/notion",
"v1.14.7/ar/enterprise/integrations/salesforce",
"v1.14.7/ar/enterprise/integrations/shopify",
"v1.14.7/ar/enterprise/integrations/slack",
"v1.14.7/ar/enterprise/integrations/snowflake",
"v1.14.7/ar/enterprise/integrations/stripe",
"v1.14.7/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.7/ar/enterprise/guides/build-crew",
"v1.14.7/ar/enterprise/guides/prepare-for-deployment",
"v1.14.7/ar/enterprise/guides/deploy-to-amp",
"v1.14.7/ar/enterprise/guides/monorepo-deployments",
"v1.14.7/ar/enterprise/guides/private-package-registry",
"v1.14.7/ar/enterprise/guides/kickoff-crew",
"v1.14.7/ar/enterprise/guides/training-crews",
"v1.14.7/ar/enterprise/guides/update-crew",
"v1.14.7/ar/enterprise/guides/enable-crew-studio",
"v1.14.7/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.7/ar/enterprise/guides/azure-openai-setup",
"v1.14.7/ar/enterprise/guides/tool-repository",
"v1.14.7/ar/enterprise/guides/custom-mcp-server",
"v1.14.7/ar/enterprise/guides/react-component-export",
"v1.14.7/ar/enterprise/guides/team-management",
"v1.14.7/ar/enterprise/guides/human-in-the-loop",
"v1.14.7/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.7/ar/enterprise/guides/automation-triggers",
"v1.14.7/ar/enterprise/guides/gmail-trigger",
"v1.14.7/ar/enterprise/guides/google-calendar-trigger",
"v1.14.7/ar/enterprise/guides/google-drive-trigger",
"v1.14.7/ar/enterprise/guides/outlook-trigger",
"v1.14.7/ar/enterprise/guides/onedrive-trigger",
"v1.14.7/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.7/ar/enterprise/guides/slack-trigger",
"v1.14.7/ar/enterprise/guides/hubspot-trigger",
"v1.14.7/ar/enterprise/guides/salesforce-trigger",
"v1.14.7/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.7/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.7/ar/api-reference/introduction",
"v1.14.7/ar/api-reference/inputs",
"v1.14.7/ar/api-reference/kickoff",
"v1.14.7/ar/api-reference/resume",
"v1.14.7/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.7/ar/examples/example",
"v1.14.7/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.7/ar/changelog"
]
}
]
}
],
"tag": "Latest"
},
{
"version": "v1.14.6",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.6/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.6/ar/introduction",
"v1.14.6/ar/guides/coding-tools/build-with-ai",
"v1.14.6/ar/skills",
"v1.14.6/ar/installation",
"v1.14.6/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.6/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.6/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.6/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.6/ar/guides/flows/first-flow",
"v1.14.6/ar/guides/flows/mastering-flow-state",
"v1.14.6/ar/guides/flows/inputs-id-deprecation"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.6/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.6/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.6/ar/guides/advanced/customizing-prompts",
"v1.14.6/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.6/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.6/ar/concepts/agents",
"v1.14.6/ar/concepts/agent-capabilities",
"v1.14.6/ar/concepts/tasks",
"v1.14.6/ar/concepts/crews",
"v1.14.6/ar/concepts/flows",
"v1.14.6/ar/concepts/production-architecture",
"v1.14.6/ar/concepts/knowledge",
"v1.14.6/ar/concepts/skills",
"v1.14.6/ar/concepts/llms",
"v1.14.6/ar/concepts/files",
"v1.14.6/ar/concepts/processes",
"v1.14.6/ar/concepts/collaboration",
"v1.14.6/ar/concepts/training",
"v1.14.6/ar/concepts/memory",
"v1.14.6/ar/concepts/reasoning",
"v1.14.6/ar/concepts/planning",
"v1.14.6/ar/concepts/testing",
"v1.14.6/ar/concepts/cli",
"v1.14.6/ar/concepts/tools",
"v1.14.6/ar/concepts/event-listener",
"v1.14.6/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.6/ar/mcp/overview",
"v1.14.6/ar/mcp/dsl-integration",
"v1.14.6/ar/mcp/stdio",
"v1.14.6/ar/mcp/sse",
"v1.14.6/ar/mcp/streamable-http",
"v1.14.6/ar/mcp/multiple-servers",
"v1.14.6/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.6/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.6/ar/tools/file-document/overview",
"v1.14.6/ar/tools/file-document/filereadtool",
"v1.14.6/ar/tools/file-document/filewritetool",
"v1.14.6/ar/tools/file-document/pdfsearchtool",
"v1.14.6/ar/tools/file-document/docxsearchtool",
"v1.14.6/ar/tools/file-document/mdxsearchtool",
"v1.14.6/ar/tools/file-document/xmlsearchtool",
"v1.14.6/ar/tools/file-document/txtsearchtool",
"v1.14.6/ar/tools/file-document/jsonsearchtool",
"v1.14.6/ar/tools/file-document/csvsearchtool",
"v1.14.6/ar/tools/file-document/directorysearchtool",
"v1.14.6/ar/tools/file-document/directoryreadtool",
"v1.14.6/ar/tools/file-document/ocrtool",
"v1.14.6/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.6/ar/tools/web-scraping/overview",
"v1.14.6/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.6/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.6/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.6/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.6/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.6/ar/tools/web-scraping/spidertool",
"v1.14.6/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.6/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.6/ar/tools/web-scraping/stagehandtool",
"v1.14.6/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.6/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.6/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.6/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.6/ar/tools/search-research/overview",
"v1.14.6/ar/tools/search-research/serperdevtool",
"v1.14.6/ar/tools/search-research/bravesearchtool",
"v1.14.6/ar/tools/search-research/exasearchtool",
"v1.14.6/ar/tools/search-research/linkupsearchtool",
"v1.14.6/ar/tools/search-research/githubsearchtool",
"v1.14.6/ar/tools/search-research/websitesearchtool",
"v1.14.6/ar/tools/search-research/codedocssearchtool",
"v1.14.6/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.6/ar/tools/search-research/youtubevideosearchtool",
"v1.14.6/ar/tools/search-research/tavilysearchtool",
"v1.14.6/ar/tools/search-research/tavilyextractortool",
"v1.14.6/ar/tools/search-research/tavilyresearchtool",
"v1.14.6/ar/tools/search-research/arxivpapertool",
"v1.14.6/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.6/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.6/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.6/ar/tools/database-data/overview",
"v1.14.6/ar/tools/database-data/mysqltool",
"v1.14.6/ar/tools/database-data/pgsearchtool",
"v1.14.6/ar/tools/database-data/snowflakesearchtool",
"v1.14.6/ar/tools/database-data/nl2sqltool",
"v1.14.6/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.6/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.6/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.6/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.6/ar/tools/ai-ml/overview",
"v1.14.6/ar/tools/ai-ml/dalletool",
"v1.14.6/ar/tools/ai-ml/visiontool",
"v1.14.6/ar/tools/ai-ml/aimindtool",
"v1.14.6/ar/tools/ai-ml/llamaindextool",
"v1.14.6/ar/tools/ai-ml/langchaintool",
"v1.14.6/ar/tools/ai-ml/ragtool",
"v1.14.6/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.6/ar/tools/cloud-storage/overview",
"v1.14.6/ar/tools/cloud-storage/s3readertool",
"v1.14.6/ar/tools/cloud-storage/s3writertool",
"v1.14.6/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.6/ar/tools/integration/overview",
"v1.14.6/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.6/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.6/ar/tools/automation/overview",
"v1.14.6/ar/tools/automation/apifyactorstool",
"v1.14.6/ar/tools/automation/composiotool",
"v1.14.6/ar/tools/automation/multiontool",
"v1.14.6/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.6/ar/observability/tracing",
"v1.14.6/ar/observability/overview",
"v1.14.6/ar/observability/arize-phoenix",
"v1.14.6/ar/observability/braintrust",
"v1.14.6/ar/observability/datadog",
"v1.14.6/ar/observability/galileo",
"v1.14.6/ar/observability/langdb",
"v1.14.6/ar/observability/langfuse",
"v1.14.6/ar/observability/langtrace",
"v1.14.6/ar/observability/maxim",
"v1.14.6/ar/observability/mlflow",
"v1.14.6/ar/observability/neatlogs",
"v1.14.6/ar/observability/openlit",
"v1.14.6/ar/observability/opik",
"v1.14.6/ar/observability/patronus-evaluation",
"v1.14.6/ar/observability/portkey",
"v1.14.6/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.6/ar/learn/overview",
"v1.14.6/ar/learn/llm-selection-guide",
"v1.14.6/ar/learn/conditional-tasks",
"v1.14.6/ar/learn/coding-agents",
"v1.14.6/ar/learn/create-custom-tools",
"v1.14.6/ar/learn/custom-llm",
"v1.14.6/ar/learn/custom-manager-agent",
"v1.14.6/ar/learn/customizing-agents",
"v1.14.6/ar/learn/dalle-image-generation",
"v1.14.6/ar/learn/force-tool-output-as-result",
"v1.14.6/ar/learn/hierarchical-process",
"v1.14.6/ar/learn/human-input-on-execution",
"v1.14.6/ar/learn/human-in-the-loop",
"v1.14.6/ar/learn/human-feedback-in-flows",
"v1.14.6/ar/learn/kickoff-async",
"v1.14.6/ar/learn/kickoff-for-each",
"v1.14.6/ar/learn/llm-connections",
"v1.14.6/ar/learn/multimodal-agents",
"v1.14.6/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.6/ar/learn/sequential-process",
"v1.14.6/ar/learn/using-annotations",
"v1.14.6/ar/learn/execution-hooks",
"v1.14.6/ar/learn/llm-hooks",
"v1.14.6/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.6/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.6/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.6/ar/enterprise/features/automations",
"v1.14.6/ar/enterprise/features/crew-studio",
"v1.14.6/ar/enterprise/features/marketplace",
"v1.14.6/ar/enterprise/features/agent-repositories",
"v1.14.6/ar/enterprise/features/tools-and-integrations",
"v1.14.6/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.6/ar/enterprise/features/traces",
"v1.14.6/ar/enterprise/features/webhook-streaming",
"v1.14.6/ar/enterprise/features/hallucination-guardrail",
"v1.14.6/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.6/ar/enterprise/features/rbac",
{
"group": "Secrets Manager",
"icon": "lock",
"pages": [
"v1.14.6/ar/enterprise/features/secrets-manager/overview",
"v1.14.6/ar/enterprise/features/secrets-manager/usage",
{
"group": "AWS",
"icon": "aws",
"pages": [
"v1.14.6/ar/enterprise/features/secrets-manager/aws",
"v1.14.6/ar/enterprise/features/secrets-manager/aws-workload-identity"
]
},
{
"group": "GCP",
"icon": "google",
"pages": [
"v1.14.6/ar/enterprise/features/secrets-manager/gcp",
"v1.14.6/ar/enterprise/features/secrets-manager/gcp-workload-identity"
]
},
{
"group": "Azure",
"icon": "microsoft",
"pages": [
"v1.14.6/ar/enterprise/features/secrets-manager/azure",
"v1.14.6/ar/enterprise/features/secrets-manager/azure-workload-identity"
]
},
"v1.14.6/ar/enterprise/features/secrets-manager/verify-rotation"
]
}
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.6/ar/enterprise/integrations/asana",
"v1.14.6/ar/enterprise/integrations/box",
"v1.14.6/ar/enterprise/integrations/clickup",
"v1.14.6/ar/enterprise/integrations/github",
"v1.14.6/ar/enterprise/integrations/gmail",
"v1.14.6/ar/enterprise/integrations/google_calendar",
"v1.14.6/ar/enterprise/integrations/google_contacts",
"v1.14.6/ar/enterprise/integrations/google_docs",
"v1.14.6/ar/enterprise/integrations/google_drive",
"v1.14.6/ar/enterprise/integrations/google_sheets",
"v1.14.6/ar/enterprise/integrations/google_slides",
"v1.14.6/ar/enterprise/integrations/hubspot",
"v1.14.6/ar/enterprise/integrations/jira",
"v1.14.6/ar/enterprise/integrations/linear",
"v1.14.6/ar/enterprise/integrations/microsoft_excel",
"v1.14.6/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.6/ar/enterprise/integrations/microsoft_outlook",
"v1.14.6/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.6/ar/enterprise/integrations/microsoft_teams",
"v1.14.6/ar/enterprise/integrations/microsoft_word",
"v1.14.6/ar/enterprise/integrations/notion",
"v1.14.6/ar/enterprise/integrations/salesforce",
"v1.14.6/ar/enterprise/integrations/shopify",
"v1.14.6/ar/enterprise/integrations/slack",
"v1.14.6/ar/enterprise/integrations/stripe",
"v1.14.6/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.6/ar/enterprise/guides/build-crew",
"v1.14.6/ar/enterprise/guides/prepare-for-deployment",
"v1.14.6/ar/enterprise/guides/deploy-to-amp",
"v1.14.6/ar/enterprise/guides/private-package-registry",
"v1.14.6/ar/enterprise/guides/kickoff-crew",
"v1.14.6/ar/enterprise/guides/training-crews",
"v1.14.6/ar/enterprise/guides/update-crew",
"v1.14.6/ar/enterprise/guides/enable-crew-studio",
"v1.14.6/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.6/ar/enterprise/guides/azure-openai-setup",
"v1.14.6/ar/enterprise/guides/tool-repository",
"v1.14.6/ar/enterprise/guides/custom-mcp-server",
"v1.14.6/ar/enterprise/guides/react-component-export",
"v1.14.6/ar/enterprise/guides/team-management",
"v1.14.6/ar/enterprise/guides/human-in-the-loop",
"v1.14.6/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.6/ar/enterprise/guides/automation-triggers",
"v1.14.6/ar/enterprise/guides/gmail-trigger",
"v1.14.6/ar/enterprise/guides/google-calendar-trigger",
"v1.14.6/ar/enterprise/guides/google-drive-trigger",
"v1.14.6/ar/enterprise/guides/outlook-trigger",
"v1.14.6/ar/enterprise/guides/onedrive-trigger",
"v1.14.6/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.6/ar/enterprise/guides/slack-trigger",
"v1.14.6/ar/enterprise/guides/hubspot-trigger",
"v1.14.6/ar/enterprise/guides/salesforce-trigger",
"v1.14.6/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.6/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.6/ar/api-reference/introduction",
"v1.14.6/ar/api-reference/inputs",
"v1.14.6/ar/api-reference/kickoff",
"v1.14.6/ar/api-reference/resume",
"v1.14.6/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.6/ar/examples/example",
"v1.14.6/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.6/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.5",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.5/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.5/ar/introduction",
"v1.14.5/ar/guides/coding-tools/build-with-ai",
"v1.14.5/ar/skills",
"v1.14.5/ar/installation",
"v1.14.5/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.5/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.5/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.5/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.5/ar/guides/flows/first-flow",
"v1.14.5/ar/guides/flows/mastering-flow-state",
"v1.14.5/ar/guides/flows/inputs-id-deprecation"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.5/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.5/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.5/ar/guides/advanced/customizing-prompts",
"v1.14.5/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.5/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.5/ar/concepts/agents",
"v1.14.5/ar/concepts/agent-capabilities",
"v1.14.5/ar/concepts/tasks",
"v1.14.5/ar/concepts/crews",
"v1.14.5/ar/concepts/flows",
"v1.14.5/ar/concepts/production-architecture",
"v1.14.5/ar/concepts/knowledge",
"v1.14.5/ar/concepts/skills",
"v1.14.5/ar/concepts/llms",
"v1.14.5/ar/concepts/files",
"v1.14.5/ar/concepts/processes",
"v1.14.5/ar/concepts/collaboration",
"v1.14.5/ar/concepts/training",
"v1.14.5/ar/concepts/memory",
"v1.14.5/ar/concepts/reasoning",
"v1.14.5/ar/concepts/planning",
"v1.14.5/ar/concepts/testing",
"v1.14.5/ar/concepts/cli",
"v1.14.5/ar/concepts/tools",
"v1.14.5/ar/concepts/event-listener",
"v1.14.5/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.5/ar/mcp/overview",
"v1.14.5/ar/mcp/dsl-integration",
"v1.14.5/ar/mcp/stdio",
"v1.14.5/ar/mcp/sse",
"v1.14.5/ar/mcp/streamable-http",
"v1.14.5/ar/mcp/multiple-servers",
"v1.14.5/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.5/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.5/ar/tools/file-document/overview",
"v1.14.5/ar/tools/file-document/filereadtool",
"v1.14.5/ar/tools/file-document/filewritetool",
"v1.14.5/ar/tools/file-document/pdfsearchtool",
"v1.14.5/ar/tools/file-document/docxsearchtool",
"v1.14.5/ar/tools/file-document/mdxsearchtool",
"v1.14.5/ar/tools/file-document/xmlsearchtool",
"v1.14.5/ar/tools/file-document/txtsearchtool",
"v1.14.5/ar/tools/file-document/jsonsearchtool",
"v1.14.5/ar/tools/file-document/csvsearchtool",
"v1.14.5/ar/tools/file-document/directorysearchtool",
"v1.14.5/ar/tools/file-document/directoryreadtool",
"v1.14.5/ar/tools/file-document/ocrtool",
"v1.14.5/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.5/ar/tools/web-scraping/overview",
"v1.14.5/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.5/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.5/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.5/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.5/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.5/ar/tools/web-scraping/spidertool",
"v1.14.5/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.5/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.5/ar/tools/web-scraping/stagehandtool",
"v1.14.5/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.5/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.5/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.5/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.5/ar/tools/search-research/overview",
"v1.14.5/ar/tools/search-research/serperdevtool",
"v1.14.5/ar/tools/search-research/bravesearchtool",
"v1.14.5/ar/tools/search-research/exasearchtool",
"v1.14.5/ar/tools/search-research/linkupsearchtool",
"v1.14.5/ar/tools/search-research/githubsearchtool",
"v1.14.5/ar/tools/search-research/websitesearchtool",
"v1.14.5/ar/tools/search-research/codedocssearchtool",
"v1.14.5/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.5/ar/tools/search-research/youtubevideosearchtool",
"v1.14.5/ar/tools/search-research/tavilysearchtool",
"v1.14.5/ar/tools/search-research/tavilyextractortool",
"v1.14.5/ar/tools/search-research/tavilyresearchtool",
"v1.14.5/ar/tools/search-research/arxivpapertool",
"v1.14.5/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.5/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.5/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.5/ar/tools/database-data/overview",
"v1.14.5/ar/tools/database-data/mysqltool",
"v1.14.5/ar/tools/database-data/pgsearchtool",
"v1.14.5/ar/tools/database-data/snowflakesearchtool",
"v1.14.5/ar/tools/database-data/nl2sqltool",
"v1.14.5/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.5/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.5/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.5/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.5/ar/tools/ai-ml/overview",
"v1.14.5/ar/tools/ai-ml/dalletool",
"v1.14.5/ar/tools/ai-ml/visiontool",
"v1.14.5/ar/tools/ai-ml/aimindtool",
"v1.14.5/ar/tools/ai-ml/llamaindextool",
"v1.14.5/ar/tools/ai-ml/langchaintool",
"v1.14.5/ar/tools/ai-ml/ragtool",
"v1.14.5/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.5/ar/tools/cloud-storage/overview",
"v1.14.5/ar/tools/cloud-storage/s3readertool",
"v1.14.5/ar/tools/cloud-storage/s3writertool",
"v1.14.5/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.5/ar/tools/integration/overview",
"v1.14.5/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.5/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.5/ar/tools/automation/overview",
"v1.14.5/ar/tools/automation/apifyactorstool",
"v1.14.5/ar/tools/automation/composiotool",
"v1.14.5/ar/tools/automation/multiontool",
"v1.14.5/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.5/ar/observability/tracing",
"v1.14.5/ar/observability/overview",
"v1.14.5/ar/observability/arize-phoenix",
"v1.14.5/ar/observability/braintrust",
"v1.14.5/ar/observability/datadog",
"v1.14.5/ar/observability/galileo",
"v1.14.5/ar/observability/langdb",
"v1.14.5/ar/observability/langfuse",
"v1.14.5/ar/observability/langtrace",
"v1.14.5/ar/observability/maxim",
"v1.14.5/ar/observability/mlflow",
"v1.14.5/ar/observability/neatlogs",
"v1.14.5/ar/observability/openlit",
"v1.14.5/ar/observability/opik",
"v1.14.5/ar/observability/patronus-evaluation",
"v1.14.5/ar/observability/portkey",
"v1.14.5/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.5/ar/learn/overview",
"v1.14.5/ar/learn/llm-selection-guide",
"v1.14.5/ar/learn/conditional-tasks",
"v1.14.5/ar/learn/coding-agents",
"v1.14.5/ar/learn/create-custom-tools",
"v1.14.5/ar/learn/custom-llm",
"v1.14.5/ar/learn/custom-manager-agent",
"v1.14.5/ar/learn/customizing-agents",
"v1.14.5/ar/learn/dalle-image-generation",
"v1.14.5/ar/learn/force-tool-output-as-result",
"v1.14.5/ar/learn/hierarchical-process",
"v1.14.5/ar/learn/human-input-on-execution",
"v1.14.5/ar/learn/human-in-the-loop",
"v1.14.5/ar/learn/human-feedback-in-flows",
"v1.14.5/ar/learn/kickoff-async",
"v1.14.5/ar/learn/kickoff-for-each",
"v1.14.5/ar/learn/llm-connections",
"v1.14.5/ar/learn/multimodal-agents",
"v1.14.5/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.5/ar/learn/sequential-process",
"v1.14.5/ar/learn/using-annotations",
"v1.14.5/ar/learn/execution-hooks",
"v1.14.5/ar/learn/llm-hooks",
"v1.14.5/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.5/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.5/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.5/ar/enterprise/features/automations",
"v1.14.5/ar/enterprise/features/crew-studio",
"v1.14.5/ar/enterprise/features/marketplace",
"v1.14.5/ar/enterprise/features/agent-repositories",
"v1.14.5/ar/enterprise/features/tools-and-integrations",
"v1.14.5/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.5/ar/enterprise/features/traces",
"v1.14.5/ar/enterprise/features/webhook-streaming",
"v1.14.5/ar/enterprise/features/hallucination-guardrail",
"v1.14.5/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.5/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.5/ar/enterprise/integrations/asana",
"v1.14.5/ar/enterprise/integrations/box",
"v1.14.5/ar/enterprise/integrations/clickup",
"v1.14.5/ar/enterprise/integrations/github",
"v1.14.5/ar/enterprise/integrations/gmail",
"v1.14.5/ar/enterprise/integrations/google_calendar",
"v1.14.5/ar/enterprise/integrations/google_contacts",
"v1.14.5/ar/enterprise/integrations/google_docs",
"v1.14.5/ar/enterprise/integrations/google_drive",
"v1.14.5/ar/enterprise/integrations/google_sheets",
"v1.14.5/ar/enterprise/integrations/google_slides",
"v1.14.5/ar/enterprise/integrations/hubspot",
"v1.14.5/ar/enterprise/integrations/jira",
"v1.14.5/ar/enterprise/integrations/linear",
"v1.14.5/ar/enterprise/integrations/microsoft_excel",
"v1.14.5/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.5/ar/enterprise/integrations/microsoft_outlook",
"v1.14.5/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.5/ar/enterprise/integrations/microsoft_teams",
"v1.14.5/ar/enterprise/integrations/microsoft_word",
"v1.14.5/ar/enterprise/integrations/notion",
"v1.14.5/ar/enterprise/integrations/salesforce",
"v1.14.5/ar/enterprise/integrations/shopify",
"v1.14.5/ar/enterprise/integrations/slack",
"v1.14.5/ar/enterprise/integrations/stripe",
"v1.14.5/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.5/ar/enterprise/guides/build-crew",
"v1.14.5/ar/enterprise/guides/prepare-for-deployment",
"v1.14.5/ar/enterprise/guides/deploy-to-amp",
"v1.14.5/ar/enterprise/guides/private-package-registry",
"v1.14.5/ar/enterprise/guides/kickoff-crew",
"v1.14.5/ar/enterprise/guides/training-crews",
"v1.14.5/ar/enterprise/guides/update-crew",
"v1.14.5/ar/enterprise/guides/enable-crew-studio",
"v1.14.5/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.5/ar/enterprise/guides/azure-openai-setup",
"v1.14.5/ar/enterprise/guides/tool-repository",
"v1.14.5/ar/enterprise/guides/custom-mcp-server",
"v1.14.5/ar/enterprise/guides/react-component-export",
"v1.14.5/ar/enterprise/guides/team-management",
"v1.14.5/ar/enterprise/guides/human-in-the-loop",
"v1.14.5/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.5/ar/enterprise/guides/automation-triggers",
"v1.14.5/ar/enterprise/guides/gmail-trigger",
"v1.14.5/ar/enterprise/guides/google-calendar-trigger",
"v1.14.5/ar/enterprise/guides/google-drive-trigger",
"v1.14.5/ar/enterprise/guides/outlook-trigger",
"v1.14.5/ar/enterprise/guides/onedrive-trigger",
"v1.14.5/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.5/ar/enterprise/guides/slack-trigger",
"v1.14.5/ar/enterprise/guides/hubspot-trigger",
"v1.14.5/ar/enterprise/guides/salesforce-trigger",
"v1.14.5/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.5/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.5/ar/api-reference/introduction",
"v1.14.5/ar/api-reference/inputs",
"v1.14.5/ar/api-reference/kickoff",
"v1.14.5/ar/api-reference/resume",
"v1.14.5/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.5/ar/examples/example",
"v1.14.5/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.5/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.4",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.4/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.4/ar/introduction",
"v1.14.4/ar/guides/coding-tools/build-with-ai",
"v1.14.4/ar/skills",
"v1.14.4/ar/installation",
"v1.14.4/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.4/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.4/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.4/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.4/ar/guides/flows/first-flow",
"v1.14.4/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.4/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.4/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.4/ar/guides/advanced/customizing-prompts",
"v1.14.4/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.4/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.4/ar/concepts/agents",
"v1.14.4/ar/concepts/agent-capabilities",
"v1.14.4/ar/concepts/tasks",
"v1.14.4/ar/concepts/crews",
"v1.14.4/ar/concepts/flows",
"v1.14.4/ar/concepts/production-architecture",
"v1.14.4/ar/concepts/knowledge",
"v1.14.4/ar/concepts/skills",
"v1.14.4/ar/concepts/llms",
"v1.14.4/ar/concepts/files",
"v1.14.4/ar/concepts/processes",
"v1.14.4/ar/concepts/collaboration",
"v1.14.4/ar/concepts/training",
"v1.14.4/ar/concepts/memory",
"v1.14.4/ar/concepts/reasoning",
"v1.14.4/ar/concepts/planning",
"v1.14.4/ar/concepts/testing",
"v1.14.4/ar/concepts/cli",
"v1.14.4/ar/concepts/tools",
"v1.14.4/ar/concepts/event-listener",
"v1.14.4/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.4/ar/mcp/overview",
"v1.14.4/ar/mcp/dsl-integration",
"v1.14.4/ar/mcp/stdio",
"v1.14.4/ar/mcp/sse",
"v1.14.4/ar/mcp/streamable-http",
"v1.14.4/ar/mcp/multiple-servers",
"v1.14.4/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.4/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.4/ar/tools/file-document/overview",
"v1.14.4/ar/tools/file-document/filereadtool",
"v1.14.4/ar/tools/file-document/filewritetool",
"v1.14.4/ar/tools/file-document/pdfsearchtool",
"v1.14.4/ar/tools/file-document/docxsearchtool",
"v1.14.4/ar/tools/file-document/mdxsearchtool",
"v1.14.4/ar/tools/file-document/xmlsearchtool",
"v1.14.4/ar/tools/file-document/txtsearchtool",
"v1.14.4/ar/tools/file-document/jsonsearchtool",
"v1.14.4/ar/tools/file-document/csvsearchtool",
"v1.14.4/ar/tools/file-document/directorysearchtool",
"v1.14.4/ar/tools/file-document/directoryreadtool",
"v1.14.4/ar/tools/file-document/ocrtool",
"v1.14.4/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.4/ar/tools/web-scraping/overview",
"v1.14.4/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.4/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.4/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.4/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.4/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.4/ar/tools/web-scraping/spidertool",
"v1.14.4/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.4/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.4/ar/tools/web-scraping/stagehandtool",
"v1.14.4/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.4/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.4/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.4/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.4/ar/tools/search-research/overview",
"v1.14.4/ar/tools/search-research/serperdevtool",
"v1.14.4/ar/tools/search-research/bravesearchtool",
"v1.14.4/ar/tools/search-research/exasearchtool",
"v1.14.4/ar/tools/search-research/linkupsearchtool",
"v1.14.4/ar/tools/search-research/githubsearchtool",
"v1.14.4/ar/tools/search-research/websitesearchtool",
"v1.14.4/ar/tools/search-research/codedocssearchtool",
"v1.14.4/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.4/ar/tools/search-research/youtubevideosearchtool",
"v1.14.4/ar/tools/search-research/tavilysearchtool",
"v1.14.4/ar/tools/search-research/tavilyextractortool",
"v1.14.4/ar/tools/search-research/tavilyresearchtool",
"v1.14.4/ar/tools/search-research/arxivpapertool",
"v1.14.4/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.4/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.4/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.4/ar/tools/database-data/overview",
"v1.14.4/ar/tools/database-data/mysqltool",
"v1.14.4/ar/tools/database-data/pgsearchtool",
"v1.14.4/ar/tools/database-data/snowflakesearchtool",
"v1.14.4/ar/tools/database-data/nl2sqltool",
"v1.14.4/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.4/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.4/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.4/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.4/ar/tools/ai-ml/overview",
"v1.14.4/ar/tools/ai-ml/dalletool",
"v1.14.4/ar/tools/ai-ml/visiontool",
"v1.14.4/ar/tools/ai-ml/aimindtool",
"v1.14.4/ar/tools/ai-ml/llamaindextool",
"v1.14.4/ar/tools/ai-ml/langchaintool",
"v1.14.4/ar/tools/ai-ml/ragtool",
"v1.14.4/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.4/ar/tools/cloud-storage/overview",
"v1.14.4/ar/tools/cloud-storage/s3readertool",
"v1.14.4/ar/tools/cloud-storage/s3writertool",
"v1.14.4/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.4/ar/tools/integration/overview",
"v1.14.4/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.4/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.4/ar/tools/automation/overview",
"v1.14.4/ar/tools/automation/apifyactorstool",
"v1.14.4/ar/tools/automation/composiotool",
"v1.14.4/ar/tools/automation/multiontool",
"v1.14.4/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.4/ar/observability/tracing",
"v1.14.4/ar/observability/overview",
"v1.14.4/ar/observability/arize-phoenix",
"v1.14.4/ar/observability/braintrust",
"v1.14.4/ar/observability/datadog",
"v1.14.4/ar/observability/galileo",
"v1.14.4/ar/observability/langdb",
"v1.14.4/ar/observability/langfuse",
"v1.14.4/ar/observability/langtrace",
"v1.14.4/ar/observability/maxim",
"v1.14.4/ar/observability/mlflow",
"v1.14.4/ar/observability/neatlogs",
"v1.14.4/ar/observability/openlit",
"v1.14.4/ar/observability/opik",
"v1.14.4/ar/observability/patronus-evaluation",
"v1.14.4/ar/observability/portkey",
"v1.14.4/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.4/ar/learn/overview",
"v1.14.4/ar/learn/llm-selection-guide",
"v1.14.4/ar/learn/conditional-tasks",
"v1.14.4/ar/learn/coding-agents",
"v1.14.4/ar/learn/create-custom-tools",
"v1.14.4/ar/learn/custom-llm",
"v1.14.4/ar/learn/custom-manager-agent",
"v1.14.4/ar/learn/customizing-agents",
"v1.14.4/ar/learn/dalle-image-generation",
"v1.14.4/ar/learn/force-tool-output-as-result",
"v1.14.4/ar/learn/hierarchical-process",
"v1.14.4/ar/learn/human-input-on-execution",
"v1.14.4/ar/learn/human-in-the-loop",
"v1.14.4/ar/learn/human-feedback-in-flows",
"v1.14.4/ar/learn/kickoff-async",
"v1.14.4/ar/learn/kickoff-for-each",
"v1.14.4/ar/learn/llm-connections",
"v1.14.4/ar/learn/multimodal-agents",
"v1.14.4/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.4/ar/learn/sequential-process",
"v1.14.4/ar/learn/using-annotations",
"v1.14.4/ar/learn/execution-hooks",
"v1.14.4/ar/learn/llm-hooks",
"v1.14.4/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.4/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.4/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.4/ar/enterprise/features/automations",
"v1.14.4/ar/enterprise/features/crew-studio",
"v1.14.4/ar/enterprise/features/marketplace",
"v1.14.4/ar/enterprise/features/agent-repositories",
"v1.14.4/ar/enterprise/features/tools-and-integrations",
"v1.14.4/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.4/ar/enterprise/features/traces",
"v1.14.4/ar/enterprise/features/webhook-streaming",
"v1.14.4/ar/enterprise/features/hallucination-guardrail",
"v1.14.4/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.4/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.4/ar/enterprise/integrations/asana",
"v1.14.4/ar/enterprise/integrations/box",
"v1.14.4/ar/enterprise/integrations/clickup",
"v1.14.4/ar/enterprise/integrations/github",
"v1.14.4/ar/enterprise/integrations/gmail",
"v1.14.4/ar/enterprise/integrations/google_calendar",
"v1.14.4/ar/enterprise/integrations/google_contacts",
"v1.14.4/ar/enterprise/integrations/google_docs",
"v1.14.4/ar/enterprise/integrations/google_drive",
"v1.14.4/ar/enterprise/integrations/google_sheets",
"v1.14.4/ar/enterprise/integrations/google_slides",
"v1.14.4/ar/enterprise/integrations/hubspot",
"v1.14.4/ar/enterprise/integrations/jira",
"v1.14.4/ar/enterprise/integrations/linear",
"v1.14.4/ar/enterprise/integrations/microsoft_excel",
"v1.14.4/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.4/ar/enterprise/integrations/microsoft_outlook",
"v1.14.4/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.4/ar/enterprise/integrations/microsoft_teams",
"v1.14.4/ar/enterprise/integrations/microsoft_word",
"v1.14.4/ar/enterprise/integrations/notion",
"v1.14.4/ar/enterprise/integrations/salesforce",
"v1.14.4/ar/enterprise/integrations/shopify",
"v1.14.4/ar/enterprise/integrations/slack",
"v1.14.4/ar/enterprise/integrations/stripe",
"v1.14.4/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.4/ar/enterprise/guides/build-crew",
"v1.14.4/ar/enterprise/guides/prepare-for-deployment",
"v1.14.4/ar/enterprise/guides/deploy-to-amp",
"v1.14.4/ar/enterprise/guides/private-package-registry",
"v1.14.4/ar/enterprise/guides/kickoff-crew",
"v1.14.4/ar/enterprise/guides/training-crews",
"v1.14.4/ar/enterprise/guides/update-crew",
"v1.14.4/ar/enterprise/guides/enable-crew-studio",
"v1.14.4/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.4/ar/enterprise/guides/azure-openai-setup",
"v1.14.4/ar/enterprise/guides/tool-repository",
"v1.14.4/ar/enterprise/guides/custom-mcp-server",
"v1.14.4/ar/enterprise/guides/react-component-export",
"v1.14.4/ar/enterprise/guides/team-management",
"v1.14.4/ar/enterprise/guides/human-in-the-loop",
"v1.14.4/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.4/ar/enterprise/guides/automation-triggers",
"v1.14.4/ar/enterprise/guides/gmail-trigger",
"v1.14.4/ar/enterprise/guides/google-calendar-trigger",
"v1.14.4/ar/enterprise/guides/google-drive-trigger",
"v1.14.4/ar/enterprise/guides/outlook-trigger",
"v1.14.4/ar/enterprise/guides/onedrive-trigger",
"v1.14.4/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.4/ar/enterprise/guides/slack-trigger",
"v1.14.4/ar/enterprise/guides/hubspot-trigger",
"v1.14.4/ar/enterprise/guides/salesforce-trigger",
"v1.14.4/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.4/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.4/ar/api-reference/introduction",
"v1.14.4/ar/api-reference/inputs",
"v1.14.4/ar/api-reference/kickoff",
"v1.14.4/ar/api-reference/resume",
"v1.14.4/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.4/ar/examples/example",
"v1.14.4/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.4/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.3",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.3/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.3/ar/introduction",
"v1.14.3/ar/guides/coding-tools/build-with-ai",
"v1.14.3/ar/skills",
"v1.14.3/ar/installation",
"v1.14.3/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.3/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.3/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.3/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.3/ar/guides/flows/first-flow",
"v1.14.3/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.3/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.3/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.3/ar/guides/advanced/customizing-prompts",
"v1.14.3/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.3/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.3/ar/concepts/agents",
"v1.14.3/ar/concepts/agent-capabilities",
"v1.14.3/ar/concepts/tasks",
"v1.14.3/ar/concepts/crews",
"v1.14.3/ar/concepts/flows",
"v1.14.3/ar/concepts/production-architecture",
"v1.14.3/ar/concepts/knowledge",
"v1.14.3/ar/concepts/skills",
"v1.14.3/ar/concepts/llms",
"v1.14.3/ar/concepts/files",
"v1.14.3/ar/concepts/processes",
"v1.14.3/ar/concepts/collaboration",
"v1.14.3/ar/concepts/training",
"v1.14.3/ar/concepts/memory",
"v1.14.3/ar/concepts/reasoning",
"v1.14.3/ar/concepts/planning",
"v1.14.3/ar/concepts/testing",
"v1.14.3/ar/concepts/cli",
"v1.14.3/ar/concepts/tools",
"v1.14.3/ar/concepts/event-listener",
"v1.14.3/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.3/ar/mcp/overview",
"v1.14.3/ar/mcp/dsl-integration",
"v1.14.3/ar/mcp/stdio",
"v1.14.3/ar/mcp/sse",
"v1.14.3/ar/mcp/streamable-http",
"v1.14.3/ar/mcp/multiple-servers",
"v1.14.3/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.3/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.3/ar/tools/file-document/overview",
"v1.14.3/ar/tools/file-document/filereadtool",
"v1.14.3/ar/tools/file-document/filewritetool",
"v1.14.3/ar/tools/file-document/pdfsearchtool",
"v1.14.3/ar/tools/file-document/docxsearchtool",
"v1.14.3/ar/tools/file-document/mdxsearchtool",
"v1.14.3/ar/tools/file-document/xmlsearchtool",
"v1.14.3/ar/tools/file-document/txtsearchtool",
"v1.14.3/ar/tools/file-document/jsonsearchtool",
"v1.14.3/ar/tools/file-document/csvsearchtool",
"v1.14.3/ar/tools/file-document/directorysearchtool",
"v1.14.3/ar/tools/file-document/directoryreadtool",
"v1.14.3/ar/tools/file-document/ocrtool",
"v1.14.3/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.3/ar/tools/web-scraping/overview",
"v1.14.3/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.3/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.3/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.3/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.3/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.3/ar/tools/web-scraping/spidertool",
"v1.14.3/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.3/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.3/ar/tools/web-scraping/stagehandtool",
"v1.14.3/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.3/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.3/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.3/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.3/ar/tools/search-research/overview",
"v1.14.3/ar/tools/search-research/serperdevtool",
"v1.14.3/ar/tools/search-research/bravesearchtool",
"v1.14.3/ar/tools/search-research/exasearchtool",
"v1.14.3/ar/tools/search-research/linkupsearchtool",
"v1.14.3/ar/tools/search-research/githubsearchtool",
"v1.14.3/ar/tools/search-research/websitesearchtool",
"v1.14.3/ar/tools/search-research/codedocssearchtool",
"v1.14.3/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.3/ar/tools/search-research/youtubevideosearchtool",
"v1.14.3/ar/tools/search-research/tavilysearchtool",
"v1.14.3/ar/tools/search-research/tavilyextractortool",
"v1.14.3/ar/tools/search-research/arxivpapertool",
"v1.14.3/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.3/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.3/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.3/ar/tools/database-data/overview",
"v1.14.3/ar/tools/database-data/mysqltool",
"v1.14.3/ar/tools/database-data/pgsearchtool",
"v1.14.3/ar/tools/database-data/snowflakesearchtool",
"v1.14.3/ar/tools/database-data/nl2sqltool",
"v1.14.3/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.3/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.3/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.3/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.3/ar/tools/ai-ml/overview",
"v1.14.3/ar/tools/ai-ml/dalletool",
"v1.14.3/ar/tools/ai-ml/visiontool",
"v1.14.3/ar/tools/ai-ml/aimindtool",
"v1.14.3/ar/tools/ai-ml/llamaindextool",
"v1.14.3/ar/tools/ai-ml/langchaintool",
"v1.14.3/ar/tools/ai-ml/ragtool",
"v1.14.3/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.3/ar/tools/cloud-storage/overview",
"v1.14.3/ar/tools/cloud-storage/s3readertool",
"v1.14.3/ar/tools/cloud-storage/s3writertool",
"v1.14.3/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.3/ar/tools/integration/overview",
"v1.14.3/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.3/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.3/ar/tools/automation/overview",
"v1.14.3/ar/tools/automation/apifyactorstool",
"v1.14.3/ar/tools/automation/composiotool",
"v1.14.3/ar/tools/automation/multiontool",
"v1.14.3/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.3/ar/observability/tracing",
"v1.14.3/ar/observability/overview",
"v1.14.3/ar/observability/arize-phoenix",
"v1.14.3/ar/observability/braintrust",
"v1.14.3/ar/observability/datadog",
"v1.14.3/ar/observability/galileo",
"v1.14.3/ar/observability/langdb",
"v1.14.3/ar/observability/langfuse",
"v1.14.3/ar/observability/langtrace",
"v1.14.3/ar/observability/maxim",
"v1.14.3/ar/observability/mlflow",
"v1.14.3/ar/observability/neatlogs",
"v1.14.3/ar/observability/openlit",
"v1.14.3/ar/observability/opik",
"v1.14.3/ar/observability/patronus-evaluation",
"v1.14.3/ar/observability/portkey",
"v1.14.3/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.3/ar/learn/overview",
"v1.14.3/ar/learn/llm-selection-guide",
"v1.14.3/ar/learn/conditional-tasks",
"v1.14.3/ar/learn/coding-agents",
"v1.14.3/ar/learn/create-custom-tools",
"v1.14.3/ar/learn/custom-llm",
"v1.14.3/ar/learn/custom-manager-agent",
"v1.14.3/ar/learn/customizing-agents",
"v1.14.3/ar/learn/dalle-image-generation",
"v1.14.3/ar/learn/force-tool-output-as-result",
"v1.14.3/ar/learn/hierarchical-process",
"v1.14.3/ar/learn/human-input-on-execution",
"v1.14.3/ar/learn/human-in-the-loop",
"v1.14.3/ar/learn/human-feedback-in-flows",
"v1.14.3/ar/learn/kickoff-async",
"v1.14.3/ar/learn/kickoff-for-each",
"v1.14.3/ar/learn/llm-connections",
"v1.14.3/ar/learn/multimodal-agents",
"v1.14.3/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.3/ar/learn/sequential-process",
"v1.14.3/ar/learn/using-annotations",
"v1.14.3/ar/learn/execution-hooks",
"v1.14.3/ar/learn/llm-hooks",
"v1.14.3/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.3/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.3/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.3/ar/enterprise/features/automations",
"v1.14.3/ar/enterprise/features/crew-studio",
"v1.14.3/ar/enterprise/features/marketplace",
"v1.14.3/ar/enterprise/features/agent-repositories",
"v1.14.3/ar/enterprise/features/tools-and-integrations",
"v1.14.3/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.3/ar/enterprise/features/traces",
"v1.14.3/ar/enterprise/features/webhook-streaming",
"v1.14.3/ar/enterprise/features/hallucination-guardrail",
"v1.14.3/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.3/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.3/ar/enterprise/integrations/asana",
"v1.14.3/ar/enterprise/integrations/box",
"v1.14.3/ar/enterprise/integrations/clickup",
"v1.14.3/ar/enterprise/integrations/github",
"v1.14.3/ar/enterprise/integrations/gmail",
"v1.14.3/ar/enterprise/integrations/google_calendar",
"v1.14.3/ar/enterprise/integrations/google_contacts",
"v1.14.3/ar/enterprise/integrations/google_docs",
"v1.14.3/ar/enterprise/integrations/google_drive",
"v1.14.3/ar/enterprise/integrations/google_sheets",
"v1.14.3/ar/enterprise/integrations/google_slides",
"v1.14.3/ar/enterprise/integrations/hubspot",
"v1.14.3/ar/enterprise/integrations/jira",
"v1.14.3/ar/enterprise/integrations/linear",
"v1.14.3/ar/enterprise/integrations/microsoft_excel",
"v1.14.3/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.3/ar/enterprise/integrations/microsoft_outlook",
"v1.14.3/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.3/ar/enterprise/integrations/microsoft_teams",
"v1.14.3/ar/enterprise/integrations/microsoft_word",
"v1.14.3/ar/enterprise/integrations/notion",
"v1.14.3/ar/enterprise/integrations/salesforce",
"v1.14.3/ar/enterprise/integrations/shopify",
"v1.14.3/ar/enterprise/integrations/slack",
"v1.14.3/ar/enterprise/integrations/stripe",
"v1.14.3/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.3/ar/enterprise/guides/build-crew",
"v1.14.3/ar/enterprise/guides/prepare-for-deployment",
"v1.14.3/ar/enterprise/guides/deploy-to-amp",
"v1.14.3/ar/enterprise/guides/private-package-registry",
"v1.14.3/ar/enterprise/guides/kickoff-crew",
"v1.14.3/ar/enterprise/guides/training-crews",
"v1.14.3/ar/enterprise/guides/update-crew",
"v1.14.3/ar/enterprise/guides/enable-crew-studio",
"v1.14.3/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.3/ar/enterprise/guides/azure-openai-setup",
"v1.14.3/ar/enterprise/guides/tool-repository",
"v1.14.3/ar/enterprise/guides/custom-mcp-server",
"v1.14.3/ar/enterprise/guides/react-component-export",
"v1.14.3/ar/enterprise/guides/team-management",
"v1.14.3/ar/enterprise/guides/human-in-the-loop",
"v1.14.3/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.3/ar/enterprise/guides/automation-triggers",
"v1.14.3/ar/enterprise/guides/gmail-trigger",
"v1.14.3/ar/enterprise/guides/google-calendar-trigger",
"v1.14.3/ar/enterprise/guides/google-drive-trigger",
"v1.14.3/ar/enterprise/guides/outlook-trigger",
"v1.14.3/ar/enterprise/guides/onedrive-trigger",
"v1.14.3/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.3/ar/enterprise/guides/slack-trigger",
"v1.14.3/ar/enterprise/guides/hubspot-trigger",
"v1.14.3/ar/enterprise/guides/salesforce-trigger",
"v1.14.3/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.3/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.3/ar/api-reference/introduction",
"v1.14.3/ar/api-reference/inputs",
"v1.14.3/ar/api-reference/kickoff",
"v1.14.3/ar/api-reference/resume",
"v1.14.3/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.3/ar/examples/example",
"v1.14.3/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.3/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.2",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.2/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.2/ar/introduction",
"v1.14.2/ar/skills",
"v1.14.2/ar/installation",
"v1.14.2/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.2/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.2/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.2/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.2/ar/guides/flows/first-flow",
"v1.14.2/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.2/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.2/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.2/ar/guides/advanced/customizing-prompts",
"v1.14.2/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.2/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.2/ar/concepts/agents",
"v1.14.2/ar/concepts/agent-capabilities",
"v1.14.2/ar/concepts/tasks",
"v1.14.2/ar/concepts/crews",
"v1.14.2/ar/concepts/flows",
"v1.14.2/ar/concepts/production-architecture",
"v1.14.2/ar/concepts/knowledge",
"v1.14.2/ar/concepts/skills",
"v1.14.2/ar/concepts/llms",
"v1.14.2/ar/concepts/files",
"v1.14.2/ar/concepts/processes",
"v1.14.2/ar/concepts/collaboration",
"v1.14.2/ar/concepts/training",
"v1.14.2/ar/concepts/memory",
"v1.14.2/ar/concepts/reasoning",
"v1.14.2/ar/concepts/planning",
"v1.14.2/ar/concepts/testing",
"v1.14.2/ar/concepts/cli",
"v1.14.2/ar/concepts/tools",
"v1.14.2/ar/concepts/event-listener",
"v1.14.2/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.2/ar/mcp/overview",
"v1.14.2/ar/mcp/dsl-integration",
"v1.14.2/ar/mcp/stdio",
"v1.14.2/ar/mcp/sse",
"v1.14.2/ar/mcp/streamable-http",
"v1.14.2/ar/mcp/multiple-servers",
"v1.14.2/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.2/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.2/ar/tools/file-document/overview",
"v1.14.2/ar/tools/file-document/filereadtool",
"v1.14.2/ar/tools/file-document/filewritetool",
"v1.14.2/ar/tools/file-document/pdfsearchtool",
"v1.14.2/ar/tools/file-document/docxsearchtool",
"v1.14.2/ar/tools/file-document/mdxsearchtool",
"v1.14.2/ar/tools/file-document/xmlsearchtool",
"v1.14.2/ar/tools/file-document/txtsearchtool",
"v1.14.2/ar/tools/file-document/jsonsearchtool",
"v1.14.2/ar/tools/file-document/csvsearchtool",
"v1.14.2/ar/tools/file-document/directorysearchtool",
"v1.14.2/ar/tools/file-document/directoryreadtool",
"v1.14.2/ar/tools/file-document/ocrtool",
"v1.14.2/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.2/ar/tools/web-scraping/overview",
"v1.14.2/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.2/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.2/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.2/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.2/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.2/ar/tools/web-scraping/spidertool",
"v1.14.2/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.2/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.2/ar/tools/web-scraping/stagehandtool",
"v1.14.2/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.2/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.2/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.2/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.2/ar/tools/search-research/overview",
"v1.14.2/ar/tools/search-research/serperdevtool",
"v1.14.2/ar/tools/search-research/bravesearchtool",
"v1.14.2/ar/tools/search-research/exasearchtool",
"v1.14.2/ar/tools/search-research/linkupsearchtool",
"v1.14.2/ar/tools/search-research/githubsearchtool",
"v1.14.2/ar/tools/search-research/websitesearchtool",
"v1.14.2/ar/tools/search-research/codedocssearchtool",
"v1.14.2/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.2/ar/tools/search-research/youtubevideosearchtool",
"v1.14.2/ar/tools/search-research/tavilysearchtool",
"v1.14.2/ar/tools/search-research/tavilyextractortool",
"v1.14.2/ar/tools/search-research/arxivpapertool",
"v1.14.2/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.2/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.2/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.2/ar/tools/database-data/overview",
"v1.14.2/ar/tools/database-data/mysqltool",
"v1.14.2/ar/tools/database-data/pgsearchtool",
"v1.14.2/ar/tools/database-data/snowflakesearchtool",
"v1.14.2/ar/tools/database-data/nl2sqltool",
"v1.14.2/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.2/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.2/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.2/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.2/ar/tools/ai-ml/overview",
"v1.14.2/ar/tools/ai-ml/dalletool",
"v1.14.2/ar/tools/ai-ml/visiontool",
"v1.14.2/ar/tools/ai-ml/aimindtool",
"v1.14.2/ar/tools/ai-ml/llamaindextool",
"v1.14.2/ar/tools/ai-ml/langchaintool",
"v1.14.2/ar/tools/ai-ml/ragtool",
"v1.14.2/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.2/ar/tools/cloud-storage/overview",
"v1.14.2/ar/tools/cloud-storage/s3readertool",
"v1.14.2/ar/tools/cloud-storage/s3writertool",
"v1.14.2/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.2/ar/tools/integration/overview",
"v1.14.2/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.2/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.2/ar/tools/automation/overview",
"v1.14.2/ar/tools/automation/apifyactorstool",
"v1.14.2/ar/tools/automation/composiotool",
"v1.14.2/ar/tools/automation/multiontool",
"v1.14.2/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.2/ar/observability/tracing",
"v1.14.2/ar/observability/overview",
"v1.14.2/ar/observability/arize-phoenix",
"v1.14.2/ar/observability/braintrust",
"v1.14.2/ar/observability/datadog",
"v1.14.2/ar/observability/galileo",
"v1.14.2/ar/observability/langdb",
"v1.14.2/ar/observability/langfuse",
"v1.14.2/ar/observability/langtrace",
"v1.14.2/ar/observability/maxim",
"v1.14.2/ar/observability/mlflow",
"v1.14.2/ar/observability/neatlogs",
"v1.14.2/ar/observability/openlit",
"v1.14.2/ar/observability/opik",
"v1.14.2/ar/observability/patronus-evaluation",
"v1.14.2/ar/observability/portkey",
"v1.14.2/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.2/ar/learn/overview",
"v1.14.2/ar/learn/llm-selection-guide",
"v1.14.2/ar/learn/conditional-tasks",
"v1.14.2/ar/learn/coding-agents",
"v1.14.2/ar/learn/create-custom-tools",
"v1.14.2/ar/learn/custom-llm",
"v1.14.2/ar/learn/custom-manager-agent",
"v1.14.2/ar/learn/customizing-agents",
"v1.14.2/ar/learn/dalle-image-generation",
"v1.14.2/ar/learn/force-tool-output-as-result",
"v1.14.2/ar/learn/hierarchical-process",
"v1.14.2/ar/learn/human-input-on-execution",
"v1.14.2/ar/learn/human-in-the-loop",
"v1.14.2/ar/learn/human-feedback-in-flows",
"v1.14.2/ar/learn/kickoff-async",
"v1.14.2/ar/learn/kickoff-for-each",
"v1.14.2/ar/learn/llm-connections",
"v1.14.2/ar/learn/multimodal-agents",
"v1.14.2/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.2/ar/learn/sequential-process",
"v1.14.2/ar/learn/using-annotations",
"v1.14.2/ar/learn/execution-hooks",
"v1.14.2/ar/learn/llm-hooks",
"v1.14.2/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.2/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.2/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.2/ar/enterprise/features/automations",
"v1.14.2/ar/enterprise/features/crew-studio",
"v1.14.2/ar/enterprise/features/marketplace",
"v1.14.2/ar/enterprise/features/agent-repositories",
"v1.14.2/ar/enterprise/features/tools-and-integrations",
"v1.14.2/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.2/ar/enterprise/features/traces",
"v1.14.2/ar/enterprise/features/webhook-streaming",
"v1.14.2/ar/enterprise/features/hallucination-guardrail",
"v1.14.2/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.2/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.2/ar/enterprise/integrations/asana",
"v1.14.2/ar/enterprise/integrations/box",
"v1.14.2/ar/enterprise/integrations/clickup",
"v1.14.2/ar/enterprise/integrations/github",
"v1.14.2/ar/enterprise/integrations/gmail",
"v1.14.2/ar/enterprise/integrations/google_calendar",
"v1.14.2/ar/enterprise/integrations/google_contacts",
"v1.14.2/ar/enterprise/integrations/google_docs",
"v1.14.2/ar/enterprise/integrations/google_drive",
"v1.14.2/ar/enterprise/integrations/google_sheets",
"v1.14.2/ar/enterprise/integrations/google_slides",
"v1.14.2/ar/enterprise/integrations/hubspot",
"v1.14.2/ar/enterprise/integrations/jira",
"v1.14.2/ar/enterprise/integrations/linear",
"v1.14.2/ar/enterprise/integrations/microsoft_excel",
"v1.14.2/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.2/ar/enterprise/integrations/microsoft_outlook",
"v1.14.2/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.2/ar/enterprise/integrations/microsoft_teams",
"v1.14.2/ar/enterprise/integrations/microsoft_word",
"v1.14.2/ar/enterprise/integrations/notion",
"v1.14.2/ar/enterprise/integrations/salesforce",
"v1.14.2/ar/enterprise/integrations/shopify",
"v1.14.2/ar/enterprise/integrations/slack",
"v1.14.2/ar/enterprise/integrations/stripe",
"v1.14.2/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.2/ar/enterprise/guides/build-crew",
"v1.14.2/ar/enterprise/guides/prepare-for-deployment",
"v1.14.2/ar/enterprise/guides/deploy-to-amp",
"v1.14.2/ar/enterprise/guides/private-package-registry",
"v1.14.2/ar/enterprise/guides/kickoff-crew",
"v1.14.2/ar/enterprise/guides/training-crews",
"v1.14.2/ar/enterprise/guides/update-crew",
"v1.14.2/ar/enterprise/guides/enable-crew-studio",
"v1.14.2/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.2/ar/enterprise/guides/azure-openai-setup",
"v1.14.2/ar/enterprise/guides/tool-repository",
"v1.14.2/ar/enterprise/guides/custom-mcp-server",
"v1.14.2/ar/enterprise/guides/react-component-export",
"v1.14.2/ar/enterprise/guides/team-management",
"v1.14.2/ar/enterprise/guides/human-in-the-loop",
"v1.14.2/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.2/ar/enterprise/guides/automation-triggers",
"v1.14.2/ar/enterprise/guides/gmail-trigger",
"v1.14.2/ar/enterprise/guides/google-calendar-trigger",
"v1.14.2/ar/enterprise/guides/google-drive-trigger",
"v1.14.2/ar/enterprise/guides/outlook-trigger",
"v1.14.2/ar/enterprise/guides/onedrive-trigger",
"v1.14.2/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.2/ar/enterprise/guides/slack-trigger",
"v1.14.2/ar/enterprise/guides/hubspot-trigger",
"v1.14.2/ar/enterprise/guides/salesforce-trigger",
"v1.14.2/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.2/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.2/ar/api-reference/introduction",
"v1.14.2/ar/api-reference/inputs",
"v1.14.2/ar/api-reference/kickoff",
"v1.14.2/ar/api-reference/resume",
"v1.14.2/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.2/ar/examples/example",
"v1.14.2/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.2/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.1",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.1/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.1/ar/introduction",
"v1.14.1/ar/skills",
"v1.14.1/ar/installation",
"v1.14.1/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.1/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.1/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.1/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.1/ar/guides/flows/first-flow",
"v1.14.1/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.1/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.1/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.1/ar/guides/advanced/customizing-prompts",
"v1.14.1/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.1/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.1/ar/concepts/agents",
"v1.14.1/ar/concepts/agent-capabilities",
"v1.14.1/ar/concepts/tasks",
"v1.14.1/ar/concepts/crews",
"v1.14.1/ar/concepts/flows",
"v1.14.1/ar/concepts/production-architecture",
"v1.14.1/ar/concepts/knowledge",
"v1.14.1/ar/concepts/skills",
"v1.14.1/ar/concepts/llms",
"v1.14.1/ar/concepts/files",
"v1.14.1/ar/concepts/processes",
"v1.14.1/ar/concepts/collaboration",
"v1.14.1/ar/concepts/training",
"v1.14.1/ar/concepts/memory",
"v1.14.1/ar/concepts/reasoning",
"v1.14.1/ar/concepts/planning",
"v1.14.1/ar/concepts/testing",
"v1.14.1/ar/concepts/cli",
"v1.14.1/ar/concepts/tools",
"v1.14.1/ar/concepts/event-listener",
"v1.14.1/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.1/ar/mcp/overview",
"v1.14.1/ar/mcp/dsl-integration",
"v1.14.1/ar/mcp/stdio",
"v1.14.1/ar/mcp/sse",
"v1.14.1/ar/mcp/streamable-http",
"v1.14.1/ar/mcp/multiple-servers",
"v1.14.1/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.1/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.1/ar/tools/file-document/overview",
"v1.14.1/ar/tools/file-document/filereadtool",
"v1.14.1/ar/tools/file-document/filewritetool",
"v1.14.1/ar/tools/file-document/pdfsearchtool",
"v1.14.1/ar/tools/file-document/docxsearchtool",
"v1.14.1/ar/tools/file-document/mdxsearchtool",
"v1.14.1/ar/tools/file-document/xmlsearchtool",
"v1.14.1/ar/tools/file-document/txtsearchtool",
"v1.14.1/ar/tools/file-document/jsonsearchtool",
"v1.14.1/ar/tools/file-document/csvsearchtool",
"v1.14.1/ar/tools/file-document/directorysearchtool",
"v1.14.1/ar/tools/file-document/directoryreadtool",
"v1.14.1/ar/tools/file-document/ocrtool",
"v1.14.1/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.1/ar/tools/web-scraping/overview",
"v1.14.1/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.1/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.1/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.1/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.1/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.1/ar/tools/web-scraping/spidertool",
"v1.14.1/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.1/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.1/ar/tools/web-scraping/stagehandtool",
"v1.14.1/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.1/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.1/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.1/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.1/ar/tools/search-research/overview",
"v1.14.1/ar/tools/search-research/serperdevtool",
"v1.14.1/ar/tools/search-research/bravesearchtool",
"v1.14.1/ar/tools/search-research/exasearchtool",
"v1.14.1/ar/tools/search-research/linkupsearchtool",
"v1.14.1/ar/tools/search-research/githubsearchtool",
"v1.14.1/ar/tools/search-research/websitesearchtool",
"v1.14.1/ar/tools/search-research/codedocssearchtool",
"v1.14.1/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.1/ar/tools/search-research/youtubevideosearchtool",
"v1.14.1/ar/tools/search-research/tavilysearchtool",
"v1.14.1/ar/tools/search-research/tavilyextractortool",
"v1.14.1/ar/tools/search-research/arxivpapertool",
"v1.14.1/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.1/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.1/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.1/ar/tools/database-data/overview",
"v1.14.1/ar/tools/database-data/mysqltool",
"v1.14.1/ar/tools/database-data/pgsearchtool",
"v1.14.1/ar/tools/database-data/snowflakesearchtool",
"v1.14.1/ar/tools/database-data/nl2sqltool",
"v1.14.1/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.1/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.1/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.1/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.1/ar/tools/ai-ml/overview",
"v1.14.1/ar/tools/ai-ml/dalletool",
"v1.14.1/ar/tools/ai-ml/visiontool",
"v1.14.1/ar/tools/ai-ml/aimindtool",
"v1.14.1/ar/tools/ai-ml/llamaindextool",
"v1.14.1/ar/tools/ai-ml/langchaintool",
"v1.14.1/ar/tools/ai-ml/ragtool",
"v1.14.1/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.1/ar/tools/cloud-storage/overview",
"v1.14.1/ar/tools/cloud-storage/s3readertool",
"v1.14.1/ar/tools/cloud-storage/s3writertool",
"v1.14.1/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.1/ar/tools/integration/overview",
"v1.14.1/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.1/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.1/ar/tools/automation/overview",
"v1.14.1/ar/tools/automation/apifyactorstool",
"v1.14.1/ar/tools/automation/composiotool",
"v1.14.1/ar/tools/automation/multiontool",
"v1.14.1/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.1/ar/observability/tracing",
"v1.14.1/ar/observability/overview",
"v1.14.1/ar/observability/arize-phoenix",
"v1.14.1/ar/observability/braintrust",
"v1.14.1/ar/observability/datadog",
"v1.14.1/ar/observability/galileo",
"v1.14.1/ar/observability/langdb",
"v1.14.1/ar/observability/langfuse",
"v1.14.1/ar/observability/langtrace",
"v1.14.1/ar/observability/maxim",
"v1.14.1/ar/observability/mlflow",
"v1.14.1/ar/observability/neatlogs",
"v1.14.1/ar/observability/openlit",
"v1.14.1/ar/observability/opik",
"v1.14.1/ar/observability/patronus-evaluation",
"v1.14.1/ar/observability/portkey",
"v1.14.1/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.1/ar/learn/overview",
"v1.14.1/ar/learn/llm-selection-guide",
"v1.14.1/ar/learn/conditional-tasks",
"v1.14.1/ar/learn/coding-agents",
"v1.14.1/ar/learn/create-custom-tools",
"v1.14.1/ar/learn/custom-llm",
"v1.14.1/ar/learn/custom-manager-agent",
"v1.14.1/ar/learn/customizing-agents",
"v1.14.1/ar/learn/dalle-image-generation",
"v1.14.1/ar/learn/force-tool-output-as-result",
"v1.14.1/ar/learn/hierarchical-process",
"v1.14.1/ar/learn/human-input-on-execution",
"v1.14.1/ar/learn/human-in-the-loop",
"v1.14.1/ar/learn/human-feedback-in-flows",
"v1.14.1/ar/learn/kickoff-async",
"v1.14.1/ar/learn/kickoff-for-each",
"v1.14.1/ar/learn/llm-connections",
"v1.14.1/ar/learn/multimodal-agents",
"v1.14.1/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.1/ar/learn/sequential-process",
"v1.14.1/ar/learn/using-annotations",
"v1.14.1/ar/learn/execution-hooks",
"v1.14.1/ar/learn/llm-hooks",
"v1.14.1/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.1/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.1/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.1/ar/enterprise/features/automations",
"v1.14.1/ar/enterprise/features/crew-studio",
"v1.14.1/ar/enterprise/features/marketplace",
"v1.14.1/ar/enterprise/features/agent-repositories",
"v1.14.1/ar/enterprise/features/tools-and-integrations",
"v1.14.1/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.1/ar/enterprise/features/traces",
"v1.14.1/ar/enterprise/features/webhook-streaming",
"v1.14.1/ar/enterprise/features/hallucination-guardrail",
"v1.14.1/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.1/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.1/ar/enterprise/integrations/asana",
"v1.14.1/ar/enterprise/integrations/box",
"v1.14.1/ar/enterprise/integrations/clickup",
"v1.14.1/ar/enterprise/integrations/github",
"v1.14.1/ar/enterprise/integrations/gmail",
"v1.14.1/ar/enterprise/integrations/google_calendar",
"v1.14.1/ar/enterprise/integrations/google_contacts",
"v1.14.1/ar/enterprise/integrations/google_docs",
"v1.14.1/ar/enterprise/integrations/google_drive",
"v1.14.1/ar/enterprise/integrations/google_sheets",
"v1.14.1/ar/enterprise/integrations/google_slides",
"v1.14.1/ar/enterprise/integrations/hubspot",
"v1.14.1/ar/enterprise/integrations/jira",
"v1.14.1/ar/enterprise/integrations/linear",
"v1.14.1/ar/enterprise/integrations/microsoft_excel",
"v1.14.1/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.1/ar/enterprise/integrations/microsoft_outlook",
"v1.14.1/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.1/ar/enterprise/integrations/microsoft_teams",
"v1.14.1/ar/enterprise/integrations/microsoft_word",
"v1.14.1/ar/enterprise/integrations/notion",
"v1.14.1/ar/enterprise/integrations/salesforce",
"v1.14.1/ar/enterprise/integrations/shopify",
"v1.14.1/ar/enterprise/integrations/slack",
"v1.14.1/ar/enterprise/integrations/stripe",
"v1.14.1/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.1/ar/enterprise/guides/build-crew",
"v1.14.1/ar/enterprise/guides/prepare-for-deployment",
"v1.14.1/ar/enterprise/guides/deploy-to-amp",
"v1.14.1/ar/enterprise/guides/private-package-registry",
"v1.14.1/ar/enterprise/guides/kickoff-crew",
"v1.14.1/ar/enterprise/guides/training-crews",
"v1.14.1/ar/enterprise/guides/update-crew",
"v1.14.1/ar/enterprise/guides/enable-crew-studio",
"v1.14.1/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.1/ar/enterprise/guides/azure-openai-setup",
"v1.14.1/ar/enterprise/guides/tool-repository",
"v1.14.1/ar/enterprise/guides/custom-mcp-server",
"v1.14.1/ar/enterprise/guides/react-component-export",
"v1.14.1/ar/enterprise/guides/team-management",
"v1.14.1/ar/enterprise/guides/human-in-the-loop",
"v1.14.1/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.1/ar/enterprise/guides/automation-triggers",
"v1.14.1/ar/enterprise/guides/gmail-trigger",
"v1.14.1/ar/enterprise/guides/google-calendar-trigger",
"v1.14.1/ar/enterprise/guides/google-drive-trigger",
"v1.14.1/ar/enterprise/guides/outlook-trigger",
"v1.14.1/ar/enterprise/guides/onedrive-trigger",
"v1.14.1/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.1/ar/enterprise/guides/slack-trigger",
"v1.14.1/ar/enterprise/guides/hubspot-trigger",
"v1.14.1/ar/enterprise/guides/salesforce-trigger",
"v1.14.1/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.1/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.1/ar/api-reference/introduction",
"v1.14.1/ar/api-reference/inputs",
"v1.14.1/ar/api-reference/kickoff",
"v1.14.1/ar/api-reference/resume",
"v1.14.1/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.1/ar/examples/example",
"v1.14.1/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.1/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.14.0",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.14.0/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.0/ar/introduction",
"v1.14.0/ar/installation",
"v1.14.0/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.14.0/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.14.0/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.14.0/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.14.0/ar/guides/flows/first-flow",
"v1.14.0/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.14.0/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.14.0/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.14.0/ar/guides/advanced/customizing-prompts",
"v1.14.0/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.14.0/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.14.0/ar/concepts/agents",
"v1.14.0/ar/concepts/agent-capabilities",
"v1.14.0/ar/concepts/tasks",
"v1.14.0/ar/concepts/crews",
"v1.14.0/ar/concepts/flows",
"v1.14.0/ar/concepts/production-architecture",
"v1.14.0/ar/concepts/knowledge",
"v1.14.0/ar/concepts/skills",
"v1.14.0/ar/concepts/llms",
"v1.14.0/ar/concepts/files",
"v1.14.0/ar/concepts/processes",
"v1.14.0/ar/concepts/collaboration",
"v1.14.0/ar/concepts/training",
"v1.14.0/ar/concepts/memory",
"v1.14.0/ar/concepts/reasoning",
"v1.14.0/ar/concepts/planning",
"v1.14.0/ar/concepts/testing",
"v1.14.0/ar/concepts/cli",
"v1.14.0/ar/concepts/tools",
"v1.14.0/ar/concepts/event-listener",
"v1.14.0/ar/concepts/checkpointing"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.14.0/ar/mcp/overview",
"v1.14.0/ar/mcp/dsl-integration",
"v1.14.0/ar/mcp/stdio",
"v1.14.0/ar/mcp/sse",
"v1.14.0/ar/mcp/streamable-http",
"v1.14.0/ar/mcp/multiple-servers",
"v1.14.0/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.14.0/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.14.0/ar/tools/file-document/overview",
"v1.14.0/ar/tools/file-document/filereadtool",
"v1.14.0/ar/tools/file-document/filewritetool",
"v1.14.0/ar/tools/file-document/pdfsearchtool",
"v1.14.0/ar/tools/file-document/docxsearchtool",
"v1.14.0/ar/tools/file-document/mdxsearchtool",
"v1.14.0/ar/tools/file-document/xmlsearchtool",
"v1.14.0/ar/tools/file-document/txtsearchtool",
"v1.14.0/ar/tools/file-document/jsonsearchtool",
"v1.14.0/ar/tools/file-document/csvsearchtool",
"v1.14.0/ar/tools/file-document/directorysearchtool",
"v1.14.0/ar/tools/file-document/directoryreadtool",
"v1.14.0/ar/tools/file-document/ocrtool",
"v1.14.0/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.14.0/ar/tools/web-scraping/overview",
"v1.14.0/ar/tools/web-scraping/scrapewebsitetool",
"v1.14.0/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.14.0/ar/tools/web-scraping/scrapflyscrapetool",
"v1.14.0/ar/tools/web-scraping/seleniumscrapingtool",
"v1.14.0/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.14.0/ar/tools/web-scraping/spidertool",
"v1.14.0/ar/tools/web-scraping/browserbaseloadtool",
"v1.14.0/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.14.0/ar/tools/web-scraping/stagehandtool",
"v1.14.0/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.14.0/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.14.0/ar/tools/web-scraping/oxylabsscraperstool",
"v1.14.0/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.14.0/ar/tools/search-research/overview",
"v1.14.0/ar/tools/search-research/serperdevtool",
"v1.14.0/ar/tools/search-research/bravesearchtool",
"v1.14.0/ar/tools/search-research/exasearchtool",
"v1.14.0/ar/tools/search-research/linkupsearchtool",
"v1.14.0/ar/tools/search-research/githubsearchtool",
"v1.14.0/ar/tools/search-research/websitesearchtool",
"v1.14.0/ar/tools/search-research/codedocssearchtool",
"v1.14.0/ar/tools/search-research/youtubechannelsearchtool",
"v1.14.0/ar/tools/search-research/youtubevideosearchtool",
"v1.14.0/ar/tools/search-research/tavilysearchtool",
"v1.14.0/ar/tools/search-research/tavilyextractortool",
"v1.14.0/ar/tools/search-research/arxivpapertool",
"v1.14.0/ar/tools/search-research/serpapi-googlesearchtool",
"v1.14.0/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.14.0/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.14.0/ar/tools/database-data/overview",
"v1.14.0/ar/tools/database-data/mysqltool",
"v1.14.0/ar/tools/database-data/pgsearchtool",
"v1.14.0/ar/tools/database-data/snowflakesearchtool",
"v1.14.0/ar/tools/database-data/nl2sqltool",
"v1.14.0/ar/tools/database-data/qdrantvectorsearchtool",
"v1.14.0/ar/tools/database-data/weaviatevectorsearchtool",
"v1.14.0/ar/tools/database-data/mongodbvectorsearchtool",
"v1.14.0/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.14.0/ar/tools/ai-ml/overview",
"v1.14.0/ar/tools/ai-ml/dalletool",
"v1.14.0/ar/tools/ai-ml/visiontool",
"v1.14.0/ar/tools/ai-ml/aimindtool",
"v1.14.0/ar/tools/ai-ml/llamaindextool",
"v1.14.0/ar/tools/ai-ml/langchaintool",
"v1.14.0/ar/tools/ai-ml/ragtool",
"v1.14.0/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.14.0/ar/tools/cloud-storage/overview",
"v1.14.0/ar/tools/cloud-storage/s3readertool",
"v1.14.0/ar/tools/cloud-storage/s3writertool",
"v1.14.0/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.14.0/ar/tools/integration/overview",
"v1.14.0/ar/tools/integration/bedrockinvokeagenttool",
"v1.14.0/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.14.0/ar/tools/automation/overview",
"v1.14.0/ar/tools/automation/apifyactorstool",
"v1.14.0/ar/tools/automation/composiotool",
"v1.14.0/ar/tools/automation/multiontool",
"v1.14.0/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.14.0/ar/observability/tracing",
"v1.14.0/ar/observability/overview",
"v1.14.0/ar/observability/arize-phoenix",
"v1.14.0/ar/observability/braintrust",
"v1.14.0/ar/observability/datadog",
"v1.14.0/ar/observability/galileo",
"v1.14.0/ar/observability/langdb",
"v1.14.0/ar/observability/langfuse",
"v1.14.0/ar/observability/langtrace",
"v1.14.0/ar/observability/maxim",
"v1.14.0/ar/observability/mlflow",
"v1.14.0/ar/observability/neatlogs",
"v1.14.0/ar/observability/openlit",
"v1.14.0/ar/observability/opik",
"v1.14.0/ar/observability/patronus-evaluation",
"v1.14.0/ar/observability/portkey",
"v1.14.0/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.14.0/ar/learn/overview",
"v1.14.0/ar/learn/llm-selection-guide",
"v1.14.0/ar/learn/conditional-tasks",
"v1.14.0/ar/learn/coding-agents",
"v1.14.0/ar/learn/create-custom-tools",
"v1.14.0/ar/learn/custom-llm",
"v1.14.0/ar/learn/custom-manager-agent",
"v1.14.0/ar/learn/customizing-agents",
"v1.14.0/ar/learn/dalle-image-generation",
"v1.14.0/ar/learn/force-tool-output-as-result",
"v1.14.0/ar/learn/hierarchical-process",
"v1.14.0/ar/learn/human-input-on-execution",
"v1.14.0/ar/learn/human-in-the-loop",
"v1.14.0/ar/learn/human-feedback-in-flows",
"v1.14.0/ar/learn/kickoff-async",
"v1.14.0/ar/learn/kickoff-for-each",
"v1.14.0/ar/learn/llm-connections",
"v1.14.0/ar/learn/multimodal-agents",
"v1.14.0/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.14.0/ar/learn/sequential-process",
"v1.14.0/ar/learn/using-annotations",
"v1.14.0/ar/learn/execution-hooks",
"v1.14.0/ar/learn/llm-hooks",
"v1.14.0/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.14.0/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.0/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.14.0/ar/enterprise/features/automations",
"v1.14.0/ar/enterprise/features/crew-studio",
"v1.14.0/ar/enterprise/features/marketplace",
"v1.14.0/ar/enterprise/features/agent-repositories",
"v1.14.0/ar/enterprise/features/tools-and-integrations",
"v1.14.0/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.14.0/ar/enterprise/features/traces",
"v1.14.0/ar/enterprise/features/webhook-streaming",
"v1.14.0/ar/enterprise/features/hallucination-guardrail",
"v1.14.0/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.14.0/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.14.0/ar/enterprise/integrations/asana",
"v1.14.0/ar/enterprise/integrations/box",
"v1.14.0/ar/enterprise/integrations/clickup",
"v1.14.0/ar/enterprise/integrations/github",
"v1.14.0/ar/enterprise/integrations/gmail",
"v1.14.0/ar/enterprise/integrations/google_calendar",
"v1.14.0/ar/enterprise/integrations/google_contacts",
"v1.14.0/ar/enterprise/integrations/google_docs",
"v1.14.0/ar/enterprise/integrations/google_drive",
"v1.14.0/ar/enterprise/integrations/google_sheets",
"v1.14.0/ar/enterprise/integrations/google_slides",
"v1.14.0/ar/enterprise/integrations/hubspot",
"v1.14.0/ar/enterprise/integrations/jira",
"v1.14.0/ar/enterprise/integrations/linear",
"v1.14.0/ar/enterprise/integrations/microsoft_excel",
"v1.14.0/ar/enterprise/integrations/microsoft_onedrive",
"v1.14.0/ar/enterprise/integrations/microsoft_outlook",
"v1.14.0/ar/enterprise/integrations/microsoft_sharepoint",
"v1.14.0/ar/enterprise/integrations/microsoft_teams",
"v1.14.0/ar/enterprise/integrations/microsoft_word",
"v1.14.0/ar/enterprise/integrations/notion",
"v1.14.0/ar/enterprise/integrations/salesforce",
"v1.14.0/ar/enterprise/integrations/shopify",
"v1.14.0/ar/enterprise/integrations/slack",
"v1.14.0/ar/enterprise/integrations/stripe",
"v1.14.0/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.14.0/ar/enterprise/guides/build-crew",
"v1.14.0/ar/enterprise/guides/prepare-for-deployment",
"v1.14.0/ar/enterprise/guides/deploy-to-amp",
"v1.14.0/ar/enterprise/guides/private-package-registry",
"v1.14.0/ar/enterprise/guides/kickoff-crew",
"v1.14.0/ar/enterprise/guides/training-crews",
"v1.14.0/ar/enterprise/guides/update-crew",
"v1.14.0/ar/enterprise/guides/enable-crew-studio",
"v1.14.0/ar/enterprise/guides/capture_telemetry_logs",
"v1.14.0/ar/enterprise/guides/azure-openai-setup",
"v1.14.0/ar/enterprise/guides/tool-repository",
"v1.14.0/ar/enterprise/guides/custom-mcp-server",
"v1.14.0/ar/enterprise/guides/react-component-export",
"v1.14.0/ar/enterprise/guides/team-management",
"v1.14.0/ar/enterprise/guides/human-in-the-loop",
"v1.14.0/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.14.0/ar/enterprise/guides/automation-triggers",
"v1.14.0/ar/enterprise/guides/gmail-trigger",
"v1.14.0/ar/enterprise/guides/google-calendar-trigger",
"v1.14.0/ar/enterprise/guides/google-drive-trigger",
"v1.14.0/ar/enterprise/guides/outlook-trigger",
"v1.14.0/ar/enterprise/guides/onedrive-trigger",
"v1.14.0/ar/enterprise/guides/microsoft-teams-trigger",
"v1.14.0/ar/enterprise/guides/slack-trigger",
"v1.14.0/ar/enterprise/guides/hubspot-trigger",
"v1.14.0/ar/enterprise/guides/salesforce-trigger",
"v1.14.0/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.14.0/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.14.0/ar/api-reference/introduction",
"v1.14.0/ar/api-reference/inputs",
"v1.14.0/ar/api-reference/kickoff",
"v1.14.0/ar/api-reference/resume",
"v1.14.0/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.14.0/ar/examples/example",
"v1.14.0/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.14.0/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.13.0",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.13.0/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.13.0/ar/introduction",
"v1.13.0/ar/installation",
"v1.13.0/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.13.0/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.13.0/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.13.0/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.13.0/ar/guides/flows/first-flow",
"v1.13.0/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.13.0/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.13.0/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.13.0/ar/guides/advanced/customizing-prompts",
"v1.13.0/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.13.0/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.13.0/ar/concepts/agents",
"v1.13.0/ar/concepts/agent-capabilities",
"v1.13.0/ar/concepts/tasks",
"v1.13.0/ar/concepts/crews",
"v1.13.0/ar/concepts/flows",
"v1.13.0/ar/concepts/production-architecture",
"v1.13.0/ar/concepts/knowledge",
"v1.13.0/ar/concepts/skills",
"v1.13.0/ar/concepts/llms",
"v1.13.0/ar/concepts/files",
"v1.13.0/ar/concepts/processes",
"v1.13.0/ar/concepts/collaboration",
"v1.13.0/ar/concepts/training",
"v1.13.0/ar/concepts/memory",
"v1.13.0/ar/concepts/reasoning",
"v1.13.0/ar/concepts/planning",
"v1.13.0/ar/concepts/testing",
"v1.13.0/ar/concepts/cli",
"v1.13.0/ar/concepts/tools",
"v1.13.0/ar/concepts/event-listener"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.13.0/ar/mcp/overview",
"v1.13.0/ar/mcp/dsl-integration",
"v1.13.0/ar/mcp/stdio",
"v1.13.0/ar/mcp/sse",
"v1.13.0/ar/mcp/streamable-http",
"v1.13.0/ar/mcp/multiple-servers",
"v1.13.0/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.13.0/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.13.0/ar/tools/file-document/overview",
"v1.13.0/ar/tools/file-document/filereadtool",
"v1.13.0/ar/tools/file-document/filewritetool",
"v1.13.0/ar/tools/file-document/pdfsearchtool",
"v1.13.0/ar/tools/file-document/docxsearchtool",
"v1.13.0/ar/tools/file-document/mdxsearchtool",
"v1.13.0/ar/tools/file-document/xmlsearchtool",
"v1.13.0/ar/tools/file-document/txtsearchtool",
"v1.13.0/ar/tools/file-document/jsonsearchtool",
"v1.13.0/ar/tools/file-document/csvsearchtool",
"v1.13.0/ar/tools/file-document/directorysearchtool",
"v1.13.0/ar/tools/file-document/directoryreadtool",
"v1.13.0/ar/tools/file-document/ocrtool",
"v1.13.0/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.13.0/ar/tools/web-scraping/overview",
"v1.13.0/ar/tools/web-scraping/scrapewebsitetool",
"v1.13.0/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.13.0/ar/tools/web-scraping/scrapflyscrapetool",
"v1.13.0/ar/tools/web-scraping/seleniumscrapingtool",
"v1.13.0/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.13.0/ar/tools/web-scraping/spidertool",
"v1.13.0/ar/tools/web-scraping/browserbaseloadtool",
"v1.13.0/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.13.0/ar/tools/web-scraping/stagehandtool",
"v1.13.0/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.13.0/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.13.0/ar/tools/web-scraping/oxylabsscraperstool",
"v1.13.0/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.13.0/ar/tools/search-research/overview",
"v1.13.0/ar/tools/search-research/serperdevtool",
"v1.13.0/ar/tools/search-research/bravesearchtool",
"v1.13.0/ar/tools/search-research/exasearchtool",
"v1.13.0/ar/tools/search-research/linkupsearchtool",
"v1.13.0/ar/tools/search-research/githubsearchtool",
"v1.13.0/ar/tools/search-research/websitesearchtool",
"v1.13.0/ar/tools/search-research/codedocssearchtool",
"v1.13.0/ar/tools/search-research/youtubechannelsearchtool",
"v1.13.0/ar/tools/search-research/youtubevideosearchtool",
"v1.13.0/ar/tools/search-research/tavilysearchtool",
"v1.13.0/ar/tools/search-research/tavilyextractortool",
"v1.13.0/ar/tools/search-research/arxivpapertool",
"v1.13.0/ar/tools/search-research/serpapi-googlesearchtool",
"v1.13.0/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.13.0/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.13.0/ar/tools/database-data/overview",
"v1.13.0/ar/tools/database-data/mysqltool",
"v1.13.0/ar/tools/database-data/pgsearchtool",
"v1.13.0/ar/tools/database-data/snowflakesearchtool",
"v1.13.0/ar/tools/database-data/nl2sqltool",
"v1.13.0/ar/tools/database-data/qdrantvectorsearchtool",
"v1.13.0/ar/tools/database-data/weaviatevectorsearchtool",
"v1.13.0/ar/tools/database-data/mongodbvectorsearchtool",
"v1.13.0/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.13.0/ar/tools/ai-ml/overview",
"v1.13.0/ar/tools/ai-ml/dalletool",
"v1.13.0/ar/tools/ai-ml/visiontool",
"v1.13.0/ar/tools/ai-ml/aimindtool",
"v1.13.0/ar/tools/ai-ml/llamaindextool",
"v1.13.0/ar/tools/ai-ml/langchaintool",
"v1.13.0/ar/tools/ai-ml/ragtool",
"v1.13.0/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.13.0/ar/tools/cloud-storage/overview",
"v1.13.0/ar/tools/cloud-storage/s3readertool",
"v1.13.0/ar/tools/cloud-storage/s3writertool",
"v1.13.0/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.13.0/ar/tools/integration/overview",
"v1.13.0/ar/tools/integration/bedrockinvokeagenttool",
"v1.13.0/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.13.0/ar/tools/automation/overview",
"v1.13.0/ar/tools/automation/apifyactorstool",
"v1.13.0/ar/tools/automation/composiotool",
"v1.13.0/ar/tools/automation/multiontool",
"v1.13.0/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.13.0/ar/observability/tracing",
"v1.13.0/ar/observability/overview",
"v1.13.0/ar/observability/arize-phoenix",
"v1.13.0/ar/observability/braintrust",
"v1.13.0/ar/observability/datadog",
"v1.13.0/ar/observability/galileo",
"v1.13.0/ar/observability/langdb",
"v1.13.0/ar/observability/langfuse",
"v1.13.0/ar/observability/langtrace",
"v1.13.0/ar/observability/maxim",
"v1.13.0/ar/observability/mlflow",
"v1.13.0/ar/observability/neatlogs",
"v1.13.0/ar/observability/openlit",
"v1.13.0/ar/observability/opik",
"v1.13.0/ar/observability/patronus-evaluation",
"v1.13.0/ar/observability/portkey",
"v1.13.0/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.13.0/ar/learn/overview",
"v1.13.0/ar/learn/llm-selection-guide",
"v1.13.0/ar/learn/conditional-tasks",
"v1.13.0/ar/learn/coding-agents",
"v1.13.0/ar/learn/create-custom-tools",
"v1.13.0/ar/learn/custom-llm",
"v1.13.0/ar/learn/custom-manager-agent",
"v1.13.0/ar/learn/customizing-agents",
"v1.13.0/ar/learn/dalle-image-generation",
"v1.13.0/ar/learn/force-tool-output-as-result",
"v1.13.0/ar/learn/hierarchical-process",
"v1.13.0/ar/learn/human-input-on-execution",
"v1.13.0/ar/learn/human-in-the-loop",
"v1.13.0/ar/learn/human-feedback-in-flows",
"v1.13.0/ar/learn/kickoff-async",
"v1.13.0/ar/learn/kickoff-for-each",
"v1.13.0/ar/learn/llm-connections",
"v1.13.0/ar/learn/multimodal-agents",
"v1.13.0/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.13.0/ar/learn/sequential-process",
"v1.13.0/ar/learn/using-annotations",
"v1.13.0/ar/learn/execution-hooks",
"v1.13.0/ar/learn/llm-hooks",
"v1.13.0/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.13.0/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.13.0/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.13.0/ar/enterprise/features/automations",
"v1.13.0/ar/enterprise/features/crew-studio",
"v1.13.0/ar/enterprise/features/marketplace",
"v1.13.0/ar/enterprise/features/agent-repositories",
"v1.13.0/ar/enterprise/features/tools-and-integrations",
"v1.13.0/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.13.0/ar/enterprise/features/traces",
"v1.13.0/ar/enterprise/features/webhook-streaming",
"v1.13.0/ar/enterprise/features/hallucination-guardrail",
"v1.13.0/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.13.0/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.13.0/ar/enterprise/integrations/asana",
"v1.13.0/ar/enterprise/integrations/box",
"v1.13.0/ar/enterprise/integrations/clickup",
"v1.13.0/ar/enterprise/integrations/github",
"v1.13.0/ar/enterprise/integrations/gmail",
"v1.13.0/ar/enterprise/integrations/google_calendar",
"v1.13.0/ar/enterprise/integrations/google_contacts",
"v1.13.0/ar/enterprise/integrations/google_docs",
"v1.13.0/ar/enterprise/integrations/google_drive",
"v1.13.0/ar/enterprise/integrations/google_sheets",
"v1.13.0/ar/enterprise/integrations/google_slides",
"v1.13.0/ar/enterprise/integrations/hubspot",
"v1.13.0/ar/enterprise/integrations/jira",
"v1.13.0/ar/enterprise/integrations/linear",
"v1.13.0/ar/enterprise/integrations/microsoft_excel",
"v1.13.0/ar/enterprise/integrations/microsoft_onedrive",
"v1.13.0/ar/enterprise/integrations/microsoft_outlook",
"v1.13.0/ar/enterprise/integrations/microsoft_sharepoint",
"v1.13.0/ar/enterprise/integrations/microsoft_teams",
"v1.13.0/ar/enterprise/integrations/microsoft_word",
"v1.13.0/ar/enterprise/integrations/notion",
"v1.13.0/ar/enterprise/integrations/salesforce",
"v1.13.0/ar/enterprise/integrations/shopify",
"v1.13.0/ar/enterprise/integrations/slack",
"v1.13.0/ar/enterprise/integrations/stripe",
"v1.13.0/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.13.0/ar/enterprise/guides/build-crew",
"v1.13.0/ar/enterprise/guides/prepare-for-deployment",
"v1.13.0/ar/enterprise/guides/deploy-to-amp",
"v1.13.0/ar/enterprise/guides/private-package-registry",
"v1.13.0/ar/enterprise/guides/kickoff-crew",
"v1.13.0/ar/enterprise/guides/update-crew",
"v1.13.0/ar/enterprise/guides/enable-crew-studio",
"v1.13.0/ar/enterprise/guides/capture_telemetry_logs",
"v1.13.0/ar/enterprise/guides/azure-openai-setup",
"v1.13.0/ar/enterprise/guides/tool-repository",
"v1.13.0/ar/enterprise/guides/custom-mcp-server",
"v1.13.0/ar/enterprise/guides/react-component-export",
"v1.13.0/ar/enterprise/guides/team-management",
"v1.13.0/ar/enterprise/guides/human-in-the-loop",
"v1.13.0/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.13.0/ar/enterprise/guides/automation-triggers",
"v1.13.0/ar/enterprise/guides/gmail-trigger",
"v1.13.0/ar/enterprise/guides/google-calendar-trigger",
"v1.13.0/ar/enterprise/guides/google-drive-trigger",
"v1.13.0/ar/enterprise/guides/outlook-trigger",
"v1.13.0/ar/enterprise/guides/onedrive-trigger",
"v1.13.0/ar/enterprise/guides/microsoft-teams-trigger",
"v1.13.0/ar/enterprise/guides/slack-trigger",
"v1.13.0/ar/enterprise/guides/hubspot-trigger",
"v1.13.0/ar/enterprise/guides/salesforce-trigger",
"v1.13.0/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.13.0/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.13.0/ar/api-reference/introduction",
"v1.13.0/ar/api-reference/inputs",
"v1.13.0/ar/api-reference/kickoff",
"v1.13.0/ar/api-reference/resume",
"v1.13.0/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.13.0/ar/examples/example",
"v1.13.0/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.13.0/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.12.2",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.12.2/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.2/ar/introduction",
"v1.12.2/ar/installation",
"v1.12.2/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.12.2/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.12.2/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.12.2/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.12.2/ar/guides/flows/first-flow",
"v1.12.2/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.12.2/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.12.2/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.12.2/ar/guides/advanced/customizing-prompts",
"v1.12.2/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.12.2/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.12.2/ar/concepts/agents",
"v1.12.2/ar/concepts/tasks",
"v1.12.2/ar/concepts/crews",
"v1.12.2/ar/concepts/flows",
"v1.12.2/ar/concepts/production-architecture",
"v1.12.2/ar/concepts/knowledge",
"v1.12.2/ar/concepts/skills",
"v1.12.2/ar/concepts/llms",
"v1.12.2/ar/concepts/files",
"v1.12.2/ar/concepts/processes",
"v1.12.2/ar/concepts/collaboration",
"v1.12.2/ar/concepts/training",
"v1.12.2/ar/concepts/memory",
"v1.12.2/ar/concepts/reasoning",
"v1.12.2/ar/concepts/planning",
"v1.12.2/ar/concepts/testing",
"v1.12.2/ar/concepts/cli",
"v1.12.2/ar/concepts/tools",
"v1.12.2/ar/concepts/event-listener"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.12.2/ar/mcp/overview",
"v1.12.2/ar/mcp/dsl-integration",
"v1.12.2/ar/mcp/stdio",
"v1.12.2/ar/mcp/sse",
"v1.12.2/ar/mcp/streamable-http",
"v1.12.2/ar/mcp/multiple-servers",
"v1.12.2/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.12.2/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.12.2/ar/tools/file-document/overview",
"v1.12.2/ar/tools/file-document/filereadtool",
"v1.12.2/ar/tools/file-document/filewritetool",
"v1.12.2/ar/tools/file-document/pdfsearchtool",
"v1.12.2/ar/tools/file-document/docxsearchtool",
"v1.12.2/ar/tools/file-document/mdxsearchtool",
"v1.12.2/ar/tools/file-document/xmlsearchtool",
"v1.12.2/ar/tools/file-document/txtsearchtool",
"v1.12.2/ar/tools/file-document/jsonsearchtool",
"v1.12.2/ar/tools/file-document/csvsearchtool",
"v1.12.2/ar/tools/file-document/directorysearchtool",
"v1.12.2/ar/tools/file-document/directoryreadtool",
"v1.12.2/ar/tools/file-document/ocrtool",
"v1.12.2/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.12.2/ar/tools/web-scraping/overview",
"v1.12.2/ar/tools/web-scraping/scrapewebsitetool",
"v1.12.2/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.2/ar/tools/web-scraping/scrapflyscrapetool",
"v1.12.2/ar/tools/web-scraping/seleniumscrapingtool",
"v1.12.2/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.12.2/ar/tools/web-scraping/spidertool",
"v1.12.2/ar/tools/web-scraping/browserbaseloadtool",
"v1.12.2/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.12.2/ar/tools/web-scraping/stagehandtool",
"v1.12.2/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.2/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.2/ar/tools/web-scraping/oxylabsscraperstool",
"v1.12.2/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.12.2/ar/tools/search-research/overview",
"v1.12.2/ar/tools/search-research/serperdevtool",
"v1.12.2/ar/tools/search-research/bravesearchtool",
"v1.12.2/ar/tools/search-research/exasearchtool",
"v1.12.2/ar/tools/search-research/linkupsearchtool",
"v1.12.2/ar/tools/search-research/githubsearchtool",
"v1.12.2/ar/tools/search-research/websitesearchtool",
"v1.12.2/ar/tools/search-research/codedocssearchtool",
"v1.12.2/ar/tools/search-research/youtubechannelsearchtool",
"v1.12.2/ar/tools/search-research/youtubevideosearchtool",
"v1.12.2/ar/tools/search-research/tavilysearchtool",
"v1.12.2/ar/tools/search-research/tavilyextractortool",
"v1.12.2/ar/tools/search-research/arxivpapertool",
"v1.12.2/ar/tools/search-research/serpapi-googlesearchtool",
"v1.12.2/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.12.2/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.12.2/ar/tools/database-data/overview",
"v1.12.2/ar/tools/database-data/mysqltool",
"v1.12.2/ar/tools/database-data/pgsearchtool",
"v1.12.2/ar/tools/database-data/snowflakesearchtool",
"v1.12.2/ar/tools/database-data/nl2sqltool",
"v1.12.2/ar/tools/database-data/qdrantvectorsearchtool",
"v1.12.2/ar/tools/database-data/weaviatevectorsearchtool",
"v1.12.2/ar/tools/database-data/mongodbvectorsearchtool",
"v1.12.2/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.12.2/ar/tools/ai-ml/overview",
"v1.12.2/ar/tools/ai-ml/dalletool",
"v1.12.2/ar/tools/ai-ml/visiontool",
"v1.12.2/ar/tools/ai-ml/aimindtool",
"v1.12.2/ar/tools/ai-ml/llamaindextool",
"v1.12.2/ar/tools/ai-ml/langchaintool",
"v1.12.2/ar/tools/ai-ml/ragtool",
"v1.12.2/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.12.2/ar/tools/cloud-storage/overview",
"v1.12.2/ar/tools/cloud-storage/s3readertool",
"v1.12.2/ar/tools/cloud-storage/s3writertool",
"v1.12.2/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.2/ar/tools/integration/overview",
"v1.12.2/ar/tools/integration/bedrockinvokeagenttool",
"v1.12.2/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.12.2/ar/tools/automation/overview",
"v1.12.2/ar/tools/automation/apifyactorstool",
"v1.12.2/ar/tools/automation/composiotool",
"v1.12.2/ar/tools/automation/multiontool",
"v1.12.2/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.2/ar/observability/tracing",
"v1.12.2/ar/observability/overview",
"v1.12.2/ar/observability/arize-phoenix",
"v1.12.2/ar/observability/braintrust",
"v1.12.2/ar/observability/datadog",
"v1.12.2/ar/observability/galileo",
"v1.12.2/ar/observability/langdb",
"v1.12.2/ar/observability/langfuse",
"v1.12.2/ar/observability/langtrace",
"v1.12.2/ar/observability/maxim",
"v1.12.2/ar/observability/mlflow",
"v1.12.2/ar/observability/neatlogs",
"v1.12.2/ar/observability/openlit",
"v1.12.2/ar/observability/opik",
"v1.12.2/ar/observability/patronus-evaluation",
"v1.12.2/ar/observability/portkey",
"v1.12.2/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.12.2/ar/learn/overview",
"v1.12.2/ar/learn/llm-selection-guide",
"v1.12.2/ar/learn/conditional-tasks",
"v1.12.2/ar/learn/coding-agents",
"v1.12.2/ar/learn/create-custom-tools",
"v1.12.2/ar/learn/custom-llm",
"v1.12.2/ar/learn/custom-manager-agent",
"v1.12.2/ar/learn/customizing-agents",
"v1.12.2/ar/learn/dalle-image-generation",
"v1.12.2/ar/learn/force-tool-output-as-result",
"v1.12.2/ar/learn/hierarchical-process",
"v1.12.2/ar/learn/human-input-on-execution",
"v1.12.2/ar/learn/human-in-the-loop",
"v1.12.2/ar/learn/human-feedback-in-flows",
"v1.12.2/ar/learn/kickoff-async",
"v1.12.2/ar/learn/kickoff-for-each",
"v1.12.2/ar/learn/llm-connections",
"v1.12.2/ar/learn/multimodal-agents",
"v1.12.2/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.2/ar/learn/sequential-process",
"v1.12.2/ar/learn/using-annotations",
"v1.12.2/ar/learn/execution-hooks",
"v1.12.2/ar/learn/llm-hooks",
"v1.12.2/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.2/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.2/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.12.2/ar/enterprise/features/automations",
"v1.12.2/ar/enterprise/features/crew-studio",
"v1.12.2/ar/enterprise/features/marketplace",
"v1.12.2/ar/enterprise/features/agent-repositories",
"v1.12.2/ar/enterprise/features/tools-and-integrations",
"v1.12.2/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.12.2/ar/enterprise/features/traces",
"v1.12.2/ar/enterprise/features/webhook-streaming",
"v1.12.2/ar/enterprise/features/hallucination-guardrail",
"v1.12.2/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.12.2/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.12.2/ar/enterprise/integrations/asana",
"v1.12.2/ar/enterprise/integrations/box",
"v1.12.2/ar/enterprise/integrations/clickup",
"v1.12.2/ar/enterprise/integrations/github",
"v1.12.2/ar/enterprise/integrations/gmail",
"v1.12.2/ar/enterprise/integrations/google_calendar",
"v1.12.2/ar/enterprise/integrations/google_contacts",
"v1.12.2/ar/enterprise/integrations/google_docs",
"v1.12.2/ar/enterprise/integrations/google_drive",
"v1.12.2/ar/enterprise/integrations/google_sheets",
"v1.12.2/ar/enterprise/integrations/google_slides",
"v1.12.2/ar/enterprise/integrations/hubspot",
"v1.12.2/ar/enterprise/integrations/jira",
"v1.12.2/ar/enterprise/integrations/linear",
"v1.12.2/ar/enterprise/integrations/microsoft_excel",
"v1.12.2/ar/enterprise/integrations/microsoft_onedrive",
"v1.12.2/ar/enterprise/integrations/microsoft_outlook",
"v1.12.2/ar/enterprise/integrations/microsoft_sharepoint",
"v1.12.2/ar/enterprise/integrations/microsoft_teams",
"v1.12.2/ar/enterprise/integrations/microsoft_word",
"v1.12.2/ar/enterprise/integrations/notion",
"v1.12.2/ar/enterprise/integrations/salesforce",
"v1.12.2/ar/enterprise/integrations/shopify",
"v1.12.2/ar/enterprise/integrations/slack",
"v1.12.2/ar/enterprise/integrations/stripe",
"v1.12.2/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.2/ar/enterprise/guides/build-crew",
"v1.12.2/ar/enterprise/guides/prepare-for-deployment",
"v1.12.2/ar/enterprise/guides/deploy-to-amp",
"v1.12.2/ar/enterprise/guides/private-package-registry",
"v1.12.2/ar/enterprise/guides/kickoff-crew",
"v1.12.2/ar/enterprise/guides/update-crew",
"v1.12.2/ar/enterprise/guides/enable-crew-studio",
"v1.12.2/ar/enterprise/guides/capture_telemetry_logs",
"v1.12.2/ar/enterprise/guides/azure-openai-setup",
"v1.12.2/ar/enterprise/guides/tool-repository",
"v1.12.2/ar/enterprise/guides/custom-mcp-server",
"v1.12.2/ar/enterprise/guides/react-component-export",
"v1.12.2/ar/enterprise/guides/team-management",
"v1.12.2/ar/enterprise/guides/human-in-the-loop",
"v1.12.2/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.12.2/ar/enterprise/guides/automation-triggers",
"v1.12.2/ar/enterprise/guides/gmail-trigger",
"v1.12.2/ar/enterprise/guides/google-calendar-trigger",
"v1.12.2/ar/enterprise/guides/google-drive-trigger",
"v1.12.2/ar/enterprise/guides/outlook-trigger",
"v1.12.2/ar/enterprise/guides/onedrive-trigger",
"v1.12.2/ar/enterprise/guides/microsoft-teams-trigger",
"v1.12.2/ar/enterprise/guides/slack-trigger",
"v1.12.2/ar/enterprise/guides/hubspot-trigger",
"v1.12.2/ar/enterprise/guides/salesforce-trigger",
"v1.12.2/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.12.2/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.2/ar/api-reference/introduction",
"v1.12.2/ar/api-reference/inputs",
"v1.12.2/ar/api-reference/kickoff",
"v1.12.2/ar/api-reference/resume",
"v1.12.2/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.12.2/ar/examples/example",
"v1.12.2/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.12.2/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.12.1",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.12.1/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.1/ar/introduction",
"v1.12.1/ar/installation",
"v1.12.1/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.12.1/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.12.1/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.12.1/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.12.1/ar/guides/flows/first-flow",
"v1.12.1/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.12.1/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.12.1/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.12.1/ar/guides/advanced/customizing-prompts",
"v1.12.1/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.12.1/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.12.1/ar/concepts/agents",
"v1.12.1/ar/concepts/tasks",
"v1.12.1/ar/concepts/crews",
"v1.12.1/ar/concepts/flows",
"v1.12.1/ar/concepts/production-architecture",
"v1.12.1/ar/concepts/knowledge",
"v1.12.1/ar/concepts/skills",
"v1.12.1/ar/concepts/llms",
"v1.12.1/ar/concepts/files",
"v1.12.1/ar/concepts/processes",
"v1.12.1/ar/concepts/collaboration",
"v1.12.1/ar/concepts/training",
"v1.12.1/ar/concepts/memory",
"v1.12.1/ar/concepts/reasoning",
"v1.12.1/ar/concepts/planning",
"v1.12.1/ar/concepts/testing",
"v1.12.1/ar/concepts/cli",
"v1.12.1/ar/concepts/tools",
"v1.12.1/ar/concepts/event-listener"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.12.1/ar/mcp/overview",
"v1.12.1/ar/mcp/dsl-integration",
"v1.12.1/ar/mcp/stdio",
"v1.12.1/ar/mcp/sse",
"v1.12.1/ar/mcp/streamable-http",
"v1.12.1/ar/mcp/multiple-servers",
"v1.12.1/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.12.1/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.12.1/ar/tools/file-document/overview",
"v1.12.1/ar/tools/file-document/filereadtool",
"v1.12.1/ar/tools/file-document/filewritetool",
"v1.12.1/ar/tools/file-document/pdfsearchtool",
"v1.12.1/ar/tools/file-document/docxsearchtool",
"v1.12.1/ar/tools/file-document/mdxsearchtool",
"v1.12.1/ar/tools/file-document/xmlsearchtool",
"v1.12.1/ar/tools/file-document/txtsearchtool",
"v1.12.1/ar/tools/file-document/jsonsearchtool",
"v1.12.1/ar/tools/file-document/csvsearchtool",
"v1.12.1/ar/tools/file-document/directorysearchtool",
"v1.12.1/ar/tools/file-document/directoryreadtool",
"v1.12.1/ar/tools/file-document/ocrtool",
"v1.12.1/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.12.1/ar/tools/web-scraping/overview",
"v1.12.1/ar/tools/web-scraping/scrapewebsitetool",
"v1.12.1/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.1/ar/tools/web-scraping/scrapflyscrapetool",
"v1.12.1/ar/tools/web-scraping/seleniumscrapingtool",
"v1.12.1/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.12.1/ar/tools/web-scraping/spidertool",
"v1.12.1/ar/tools/web-scraping/browserbaseloadtool",
"v1.12.1/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.12.1/ar/tools/web-scraping/stagehandtool",
"v1.12.1/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.1/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.1/ar/tools/web-scraping/oxylabsscraperstool",
"v1.12.1/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.12.1/ar/tools/search-research/overview",
"v1.12.1/ar/tools/search-research/serperdevtool",
"v1.12.1/ar/tools/search-research/bravesearchtool",
"v1.12.1/ar/tools/search-research/exasearchtool",
"v1.12.1/ar/tools/search-research/linkupsearchtool",
"v1.12.1/ar/tools/search-research/githubsearchtool",
"v1.12.1/ar/tools/search-research/websitesearchtool",
"v1.12.1/ar/tools/search-research/codedocssearchtool",
"v1.12.1/ar/tools/search-research/youtubechannelsearchtool",
"v1.12.1/ar/tools/search-research/youtubevideosearchtool",
"v1.12.1/ar/tools/search-research/tavilysearchtool",
"v1.12.1/ar/tools/search-research/tavilyextractortool",
"v1.12.1/ar/tools/search-research/arxivpapertool",
"v1.12.1/ar/tools/search-research/serpapi-googlesearchtool",
"v1.12.1/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.12.1/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.12.1/ar/tools/database-data/overview",
"v1.12.1/ar/tools/database-data/mysqltool",
"v1.12.1/ar/tools/database-data/pgsearchtool",
"v1.12.1/ar/tools/database-data/snowflakesearchtool",
"v1.12.1/ar/tools/database-data/nl2sqltool",
"v1.12.1/ar/tools/database-data/qdrantvectorsearchtool",
"v1.12.1/ar/tools/database-data/weaviatevectorsearchtool",
"v1.12.1/ar/tools/database-data/mongodbvectorsearchtool",
"v1.12.1/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.12.1/ar/tools/ai-ml/overview",
"v1.12.1/ar/tools/ai-ml/dalletool",
"v1.12.1/ar/tools/ai-ml/visiontool",
"v1.12.1/ar/tools/ai-ml/aimindtool",
"v1.12.1/ar/tools/ai-ml/llamaindextool",
"v1.12.1/ar/tools/ai-ml/langchaintool",
"v1.12.1/ar/tools/ai-ml/ragtool",
"v1.12.1/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.12.1/ar/tools/cloud-storage/overview",
"v1.12.1/ar/tools/cloud-storage/s3readertool",
"v1.12.1/ar/tools/cloud-storage/s3writertool",
"v1.12.1/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.1/ar/tools/integration/overview",
"v1.12.1/ar/tools/integration/bedrockinvokeagenttool",
"v1.12.1/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.12.1/ar/tools/automation/overview",
"v1.12.1/ar/tools/automation/apifyactorstool",
"v1.12.1/ar/tools/automation/composiotool",
"v1.12.1/ar/tools/automation/multiontool",
"v1.12.1/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.1/ar/observability/tracing",
"v1.12.1/ar/observability/overview",
"v1.12.1/ar/observability/arize-phoenix",
"v1.12.1/ar/observability/braintrust",
"v1.12.1/ar/observability/datadog",
"v1.12.1/ar/observability/galileo",
"v1.12.1/ar/observability/langdb",
"v1.12.1/ar/observability/langfuse",
"v1.12.1/ar/observability/langtrace",
"v1.12.1/ar/observability/maxim",
"v1.12.1/ar/observability/mlflow",
"v1.12.1/ar/observability/neatlogs",
"v1.12.1/ar/observability/openlit",
"v1.12.1/ar/observability/opik",
"v1.12.1/ar/observability/patronus-evaluation",
"v1.12.1/ar/observability/portkey",
"v1.12.1/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.12.1/ar/learn/overview",
"v1.12.1/ar/learn/llm-selection-guide",
"v1.12.1/ar/learn/conditional-tasks",
"v1.12.1/ar/learn/coding-agents",
"v1.12.1/ar/learn/create-custom-tools",
"v1.12.1/ar/learn/custom-llm",
"v1.12.1/ar/learn/custom-manager-agent",
"v1.12.1/ar/learn/customizing-agents",
"v1.12.1/ar/learn/dalle-image-generation",
"v1.12.1/ar/learn/force-tool-output-as-result",
"v1.12.1/ar/learn/hierarchical-process",
"v1.12.1/ar/learn/human-input-on-execution",
"v1.12.1/ar/learn/human-in-the-loop",
"v1.12.1/ar/learn/human-feedback-in-flows",
"v1.12.1/ar/learn/kickoff-async",
"v1.12.1/ar/learn/kickoff-for-each",
"v1.12.1/ar/learn/llm-connections",
"v1.12.1/ar/learn/multimodal-agents",
"v1.12.1/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.1/ar/learn/sequential-process",
"v1.12.1/ar/learn/using-annotations",
"v1.12.1/ar/learn/execution-hooks",
"v1.12.1/ar/learn/llm-hooks",
"v1.12.1/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.1/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.1/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.12.1/ar/enterprise/features/automations",
"v1.12.1/ar/enterprise/features/crew-studio",
"v1.12.1/ar/enterprise/features/marketplace",
"v1.12.1/ar/enterprise/features/agent-repositories",
"v1.12.1/ar/enterprise/features/tools-and-integrations",
"v1.12.1/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.12.1/ar/enterprise/features/traces",
"v1.12.1/ar/enterprise/features/webhook-streaming",
"v1.12.1/ar/enterprise/features/hallucination-guardrail",
"v1.12.1/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.12.1/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.12.1/ar/enterprise/integrations/asana",
"v1.12.1/ar/enterprise/integrations/box",
"v1.12.1/ar/enterprise/integrations/clickup",
"v1.12.1/ar/enterprise/integrations/github",
"v1.12.1/ar/enterprise/integrations/gmail",
"v1.12.1/ar/enterprise/integrations/google_calendar",
"v1.12.1/ar/enterprise/integrations/google_contacts",
"v1.12.1/ar/enterprise/integrations/google_docs",
"v1.12.1/ar/enterprise/integrations/google_drive",
"v1.12.1/ar/enterprise/integrations/google_sheets",
"v1.12.1/ar/enterprise/integrations/google_slides",
"v1.12.1/ar/enterprise/integrations/hubspot",
"v1.12.1/ar/enterprise/integrations/jira",
"v1.12.1/ar/enterprise/integrations/linear",
"v1.12.1/ar/enterprise/integrations/microsoft_excel",
"v1.12.1/ar/enterprise/integrations/microsoft_onedrive",
"v1.12.1/ar/enterprise/integrations/microsoft_outlook",
"v1.12.1/ar/enterprise/integrations/microsoft_sharepoint",
"v1.12.1/ar/enterprise/integrations/microsoft_teams",
"v1.12.1/ar/enterprise/integrations/microsoft_word",
"v1.12.1/ar/enterprise/integrations/notion",
"v1.12.1/ar/enterprise/integrations/salesforce",
"v1.12.1/ar/enterprise/integrations/shopify",
"v1.12.1/ar/enterprise/integrations/slack",
"v1.12.1/ar/enterprise/integrations/stripe",
"v1.12.1/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.1/ar/enterprise/guides/build-crew",
"v1.12.1/ar/enterprise/guides/prepare-for-deployment",
"v1.12.1/ar/enterprise/guides/deploy-to-amp",
"v1.12.1/ar/enterprise/guides/private-package-registry",
"v1.12.1/ar/enterprise/guides/kickoff-crew",
"v1.12.1/ar/enterprise/guides/update-crew",
"v1.12.1/ar/enterprise/guides/enable-crew-studio",
"v1.12.1/ar/enterprise/guides/capture_telemetry_logs",
"v1.12.1/ar/enterprise/guides/azure-openai-setup",
"v1.12.1/ar/enterprise/guides/tool-repository",
"v1.12.1/ar/enterprise/guides/custom-mcp-server",
"v1.12.1/ar/enterprise/guides/react-component-export",
"v1.12.1/ar/enterprise/guides/team-management",
"v1.12.1/ar/enterprise/guides/human-in-the-loop",
"v1.12.1/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.12.1/ar/enterprise/guides/automation-triggers",
"v1.12.1/ar/enterprise/guides/gmail-trigger",
"v1.12.1/ar/enterprise/guides/google-calendar-trigger",
"v1.12.1/ar/enterprise/guides/google-drive-trigger",
"v1.12.1/ar/enterprise/guides/outlook-trigger",
"v1.12.1/ar/enterprise/guides/onedrive-trigger",
"v1.12.1/ar/enterprise/guides/microsoft-teams-trigger",
"v1.12.1/ar/enterprise/guides/slack-trigger",
"v1.12.1/ar/enterprise/guides/hubspot-trigger",
"v1.12.1/ar/enterprise/guides/salesforce-trigger",
"v1.12.1/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.12.1/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.1/ar/api-reference/introduction",
"v1.12.1/ar/api-reference/inputs",
"v1.12.1/ar/api-reference/kickoff",
"v1.12.1/ar/api-reference/resume",
"v1.12.1/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.12.1/ar/examples/example",
"v1.12.1/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.12.1/ar/changelog"
]
}
]
}
]
},
{
"version": "v1.12.0",
"tabs": [
{
"tab": "الرئيسية",
"icon": "house",
"groups": [
{
"group": "مرحباً",
"pages": [
"v1.12.0/ar/index"
]
}
]
},
{
"tab": "التقنية التوثيق",
"icon": "book-open",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.0/ar/introduction",
"v1.12.0/ar/installation",
"v1.12.0/ar/quickstart"
]
},
{
"group": "الأدلّة",
"pages": [
{
"group": "الاستراتيجية",
"icon": "compass",
"pages": [
"v1.12.0/ar/guides/concepts/evaluating-use-cases"
]
},
{
"group": "الوكلاء",
"icon": "user",
"pages": [
"v1.12.0/ar/guides/agents/crafting-effective-agents"
]
},
{
"group": "الطواقم",
"icon": "users",
"pages": [
"v1.12.0/ar/guides/crews/first-crew"
]
},
{
"group": "التدفقات",
"icon": "code-branch",
"pages": [
"v1.12.0/ar/guides/flows/first-flow",
"v1.12.0/ar/guides/flows/mastering-flow-state"
]
},
{
"group": "الأدوات",
"icon": "wrench",
"pages": [
"v1.12.0/ar/guides/tools/publish-custom-tools"
]
},
{
"group": "أدوات البرمجة",
"icon": "terminal",
"pages": [
"v1.12.0/ar/guides/coding-tools/agents-md"
]
},
{
"group": "متقدّم",
"icon": "gear",
"pages": [
"v1.12.0/ar/guides/advanced/customizing-prompts",
"v1.12.0/ar/guides/advanced/fingerprinting"
]
},
{
"group": "الترحيل",
"icon": "shuffle",
"pages": [
"v1.12.0/ar/guides/migration/migrating-from-langgraph"
]
}
]
},
{
"group": "المفاهيم الأساسية",
"pages": [
"v1.12.0/ar/concepts/agents",
"v1.12.0/ar/concepts/tasks",
"v1.12.0/ar/concepts/crews",
"v1.12.0/ar/concepts/flows",
"v1.12.0/ar/concepts/production-architecture",
"v1.12.0/ar/concepts/knowledge",
"v1.12.0/ar/concepts/skills",
"v1.12.0/ar/concepts/llms",
"v1.12.0/ar/concepts/files",
"v1.12.0/ar/concepts/processes",
"v1.12.0/ar/concepts/collaboration",
"v1.12.0/ar/concepts/training",
"v1.12.0/ar/concepts/memory",
"v1.12.0/ar/concepts/reasoning",
"v1.12.0/ar/concepts/planning",
"v1.12.0/ar/concepts/testing",
"v1.12.0/ar/concepts/cli",
"v1.12.0/ar/concepts/tools",
"v1.12.0/ar/concepts/event-listener"
]
},
{
"group": "تكامل MCP",
"pages": [
"v1.12.0/ar/mcp/overview",
"v1.12.0/ar/mcp/dsl-integration",
"v1.12.0/ar/mcp/stdio",
"v1.12.0/ar/mcp/sse",
"v1.12.0/ar/mcp/streamable-http",
"v1.12.0/ar/mcp/multiple-servers",
"v1.12.0/ar/mcp/security"
]
},
{
"group": "الأدوات",
"pages": [
"v1.12.0/ar/tools/overview",
{
"group": "الملفات والمستندات",
"icon": "folder-open",
"pages": [
"v1.12.0/ar/tools/file-document/overview",
"v1.12.0/ar/tools/file-document/filereadtool",
"v1.12.0/ar/tools/file-document/filewritetool",
"v1.12.0/ar/tools/file-document/pdfsearchtool",
"v1.12.0/ar/tools/file-document/docxsearchtool",
"v1.12.0/ar/tools/file-document/mdxsearchtool",
"v1.12.0/ar/tools/file-document/xmlsearchtool",
"v1.12.0/ar/tools/file-document/txtsearchtool",
"v1.12.0/ar/tools/file-document/jsonsearchtool",
"v1.12.0/ar/tools/file-document/csvsearchtool",
"v1.12.0/ar/tools/file-document/directorysearchtool",
"v1.12.0/ar/tools/file-document/directoryreadtool",
"v1.12.0/ar/tools/file-document/ocrtool",
"v1.12.0/ar/tools/file-document/pdf-text-writing-tool"
]
},
{
"group": "استخراج بيانات الويب",
"icon": "globe",
"pages": [
"v1.12.0/ar/tools/web-scraping/overview",
"v1.12.0/ar/tools/web-scraping/scrapewebsitetool",
"v1.12.0/ar/tools/web-scraping/scrapeelementfromwebsitetool",
"v1.12.0/ar/tools/web-scraping/scrapflyscrapetool",
"v1.12.0/ar/tools/web-scraping/seleniumscrapingtool",
"v1.12.0/ar/tools/web-scraping/scrapegraphscrapetool",
"v1.12.0/ar/tools/web-scraping/spidertool",
"v1.12.0/ar/tools/web-scraping/browserbaseloadtool",
"v1.12.0/ar/tools/web-scraping/hyperbrowserloadtool",
"v1.12.0/ar/tools/web-scraping/stagehandtool",
"v1.12.0/ar/tools/web-scraping/firecrawlcrawlwebsitetool",
"v1.12.0/ar/tools/web-scraping/firecrawlscrapewebsitetool",
"v1.12.0/ar/tools/web-scraping/oxylabsscraperstool",
"v1.12.0/ar/tools/web-scraping/brightdata-tools"
]
},
{
"group": "البحث والاستكشاف",
"icon": "magnifying-glass",
"pages": [
"v1.12.0/ar/tools/search-research/overview",
"v1.12.0/ar/tools/search-research/serperdevtool",
"v1.12.0/ar/tools/search-research/bravesearchtool",
"v1.12.0/ar/tools/search-research/exasearchtool",
"v1.12.0/ar/tools/search-research/linkupsearchtool",
"v1.12.0/ar/tools/search-research/githubsearchtool",
"v1.12.0/ar/tools/search-research/websitesearchtool",
"v1.12.0/ar/tools/search-research/codedocssearchtool",
"v1.12.0/ar/tools/search-research/youtubechannelsearchtool",
"v1.12.0/ar/tools/search-research/youtubevideosearchtool",
"v1.12.0/ar/tools/search-research/tavilysearchtool",
"v1.12.0/ar/tools/search-research/tavilyextractortool",
"v1.12.0/ar/tools/search-research/arxivpapertool",
"v1.12.0/ar/tools/search-research/serpapi-googlesearchtool",
"v1.12.0/ar/tools/search-research/serpapi-googleshoppingtool",
"v1.12.0/ar/tools/search-research/databricks-query-tool"
]
},
{
"group": "قواعد البيانات",
"icon": "database",
"pages": [
"v1.12.0/ar/tools/database-data/overview",
"v1.12.0/ar/tools/database-data/mysqltool",
"v1.12.0/ar/tools/database-data/pgsearchtool",
"v1.12.0/ar/tools/database-data/snowflakesearchtool",
"v1.12.0/ar/tools/database-data/nl2sqltool",
"v1.12.0/ar/tools/database-data/qdrantvectorsearchtool",
"v1.12.0/ar/tools/database-data/weaviatevectorsearchtool",
"v1.12.0/ar/tools/database-data/mongodbvectorsearchtool",
"v1.12.0/ar/tools/database-data/singlestoresearchtool"
]
},
{
"group": "الذكاء الاصطناعي والتعلّم الآلي",
"icon": "brain",
"pages": [
"v1.12.0/ar/tools/ai-ml/overview",
"v1.12.0/ar/tools/ai-ml/dalletool",
"v1.12.0/ar/tools/ai-ml/visiontool",
"v1.12.0/ar/tools/ai-ml/aimindtool",
"v1.12.0/ar/tools/ai-ml/llamaindextool",
"v1.12.0/ar/tools/ai-ml/langchaintool",
"v1.12.0/ar/tools/ai-ml/ragtool",
"v1.12.0/ar/tools/ai-ml/codeinterpretertool"
]
},
{
"group": "التخزين السحابي",
"icon": "cloud",
"pages": [
"v1.12.0/ar/tools/cloud-storage/overview",
"v1.12.0/ar/tools/cloud-storage/s3readertool",
"v1.12.0/ar/tools/cloud-storage/s3writertool",
"v1.12.0/ar/tools/cloud-storage/bedrockkbretriever"
]
},
{
"group": "Integrations",
"icon": "plug",
"pages": [
"v1.12.0/ar/tools/integration/overview",
"v1.12.0/ar/tools/integration/bedrockinvokeagenttool",
"v1.12.0/ar/tools/integration/crewaiautomationtool"
]
},
{
"group": "الأتمتة",
"icon": "bolt",
"pages": [
"v1.12.0/ar/tools/automation/overview",
"v1.12.0/ar/tools/automation/apifyactorstool",
"v1.12.0/ar/tools/automation/composiotool",
"v1.12.0/ar/tools/automation/multiontool",
"v1.12.0/ar/tools/automation/zapieractionstool"
]
}
]
},
{
"group": "Observability",
"pages": [
"v1.12.0/ar/observability/tracing",
"v1.12.0/ar/observability/overview",
"v1.12.0/ar/observability/arize-phoenix",
"v1.12.0/ar/observability/braintrust",
"v1.12.0/ar/observability/datadog",
"v1.12.0/ar/observability/galileo",
"v1.12.0/ar/observability/langdb",
"v1.12.0/ar/observability/langfuse",
"v1.12.0/ar/observability/langtrace",
"v1.12.0/ar/observability/maxim",
"v1.12.0/ar/observability/mlflow",
"v1.12.0/ar/observability/neatlogs",
"v1.12.0/ar/observability/openlit",
"v1.12.0/ar/observability/opik",
"v1.12.0/ar/observability/patronus-evaluation",
"v1.12.0/ar/observability/portkey",
"v1.12.0/ar/observability/weave"
]
},
{
"group": "التعلّم",
"pages": [
"v1.12.0/ar/learn/overview",
"v1.12.0/ar/learn/llm-selection-guide",
"v1.12.0/ar/learn/conditional-tasks",
"v1.12.0/ar/learn/coding-agents",
"v1.12.0/ar/learn/create-custom-tools",
"v1.12.0/ar/learn/custom-llm",
"v1.12.0/ar/learn/custom-manager-agent",
"v1.12.0/ar/learn/customizing-agents",
"v1.12.0/ar/learn/dalle-image-generation",
"v1.12.0/ar/learn/force-tool-output-as-result",
"v1.12.0/ar/learn/hierarchical-process",
"v1.12.0/ar/learn/human-input-on-execution",
"v1.12.0/ar/learn/human-in-the-loop",
"v1.12.0/ar/learn/human-feedback-in-flows",
"v1.12.0/ar/learn/kickoff-async",
"v1.12.0/ar/learn/kickoff-for-each",
"v1.12.0/ar/learn/llm-connections",
"v1.12.0/ar/learn/multimodal-agents",
"v1.12.0/ar/learn/replay-tasks-from-latest-crew-kickoff",
"v1.12.0/ar/learn/sequential-process",
"v1.12.0/ar/learn/using-annotations",
"v1.12.0/ar/learn/execution-hooks",
"v1.12.0/ar/learn/llm-hooks",
"v1.12.0/ar/learn/tool-hooks"
]
},
{
"group": "Telemetry",
"pages": [
"v1.12.0/ar/telemetry"
]
}
]
},
{
"tab": "المؤسسات",
"icon": "briefcase",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.0/ar/enterprise/introduction"
]
},
{
"group": "البناء",
"pages": [
"v1.12.0/ar/enterprise/features/automations",
"v1.12.0/ar/enterprise/features/crew-studio",
"v1.12.0/ar/enterprise/features/marketplace",
"v1.12.0/ar/enterprise/features/agent-repositories",
"v1.12.0/ar/enterprise/features/tools-and-integrations",
"v1.12.0/ar/enterprise/features/pii-trace-redactions"
]
},
{
"group": "العمليات",
"pages": [
"v1.12.0/ar/enterprise/features/traces",
"v1.12.0/ar/enterprise/features/webhook-streaming",
"v1.12.0/ar/enterprise/features/hallucination-guardrail",
"v1.12.0/ar/enterprise/features/flow-hitl-management"
]
},
{
"group": "الإدارة",
"pages": [
"v1.12.0/ar/enterprise/features/rbac"
]
},
{
"group": "التكاملات",
"pages": [
"v1.12.0/ar/enterprise/integrations/asana",
"v1.12.0/ar/enterprise/integrations/box",
"v1.12.0/ar/enterprise/integrations/clickup",
"v1.12.0/ar/enterprise/integrations/github",
"v1.12.0/ar/enterprise/integrations/gmail",
"v1.12.0/ar/enterprise/integrations/google_calendar",
"v1.12.0/ar/enterprise/integrations/google_contacts",
"v1.12.0/ar/enterprise/integrations/google_docs",
"v1.12.0/ar/enterprise/integrations/google_drive",
"v1.12.0/ar/enterprise/integrations/google_sheets",
"v1.12.0/ar/enterprise/integrations/google_slides",
"v1.12.0/ar/enterprise/integrations/hubspot",
"v1.12.0/ar/enterprise/integrations/jira",
"v1.12.0/ar/enterprise/integrations/linear",
"v1.12.0/ar/enterprise/integrations/microsoft_excel",
"v1.12.0/ar/enterprise/integrations/microsoft_onedrive",
"v1.12.0/ar/enterprise/integrations/microsoft_outlook",
"v1.12.0/ar/enterprise/integrations/microsoft_sharepoint",
"v1.12.0/ar/enterprise/integrations/microsoft_teams",
"v1.12.0/ar/enterprise/integrations/microsoft_word",
"v1.12.0/ar/enterprise/integrations/notion",
"v1.12.0/ar/enterprise/integrations/salesforce",
"v1.12.0/ar/enterprise/integrations/shopify",
"v1.12.0/ar/enterprise/integrations/slack",
"v1.12.0/ar/enterprise/integrations/stripe",
"v1.12.0/ar/enterprise/integrations/zendesk"
]
},
{
"group": "How-To Guides",
"pages": [
"v1.12.0/ar/enterprise/guides/build-crew",
"v1.12.0/ar/enterprise/guides/prepare-for-deployment",
"v1.12.0/ar/enterprise/guides/deploy-to-amp",
"v1.12.0/ar/enterprise/guides/private-package-registry",
"v1.12.0/ar/enterprise/guides/kickoff-crew",
"v1.12.0/ar/enterprise/guides/update-crew",
"v1.12.0/ar/enterprise/guides/enable-crew-studio",
"v1.12.0/ar/enterprise/guides/capture_telemetry_logs",
"v1.12.0/ar/enterprise/guides/azure-openai-setup",
"v1.12.0/ar/enterprise/guides/tool-repository",
"v1.12.0/ar/enterprise/guides/custom-mcp-server",
"v1.12.0/ar/enterprise/guides/react-component-export",
"v1.12.0/ar/enterprise/guides/team-management",
"v1.12.0/ar/enterprise/guides/human-in-the-loop",
"v1.12.0/ar/enterprise/guides/webhook-automation"
]
},
{
"group": "المشغّلات",
"pages": [
"v1.12.0/ar/enterprise/guides/automation-triggers",
"v1.12.0/ar/enterprise/guides/gmail-trigger",
"v1.12.0/ar/enterprise/guides/google-calendar-trigger",
"v1.12.0/ar/enterprise/guides/google-drive-trigger",
"v1.12.0/ar/enterprise/guides/outlook-trigger",
"v1.12.0/ar/enterprise/guides/onedrive-trigger",
"v1.12.0/ar/enterprise/guides/microsoft-teams-trigger",
"v1.12.0/ar/enterprise/guides/slack-trigger",
"v1.12.0/ar/enterprise/guides/hubspot-trigger",
"v1.12.0/ar/enterprise/guides/salesforce-trigger",
"v1.12.0/ar/enterprise/guides/zapier-trigger"
]
},
{
"group": "موارد التعلّم",
"pages": [
"v1.12.0/ar/enterprise/resources/frequently-asked-questions"
]
}
]
},
{
"tab": "API المرجع",
"icon": "magnifying-glass",
"groups": [
{
"group": "البدء",
"pages": [
"v1.12.0/ar/api-reference/introduction",
"v1.12.0/ar/api-reference/inputs",
"v1.12.0/ar/api-reference/kickoff",
"v1.12.0/ar/api-reference/resume",
"v1.12.0/ar/api-reference/status"
]
}
]
},
{
"tab": "أمثلة",
"icon": "code",
"groups": [
{
"group": "أمثلة",
"pages": [
"v1.12.0/ar/examples/example",
"v1.12.0/ar/examples/cookbooks"
]
}
]
},
{
"tab": "التغييرات السجلات",
"icon": "clock",
"groups": [
{
"group": "سجل التغييرات",
"pages": [
"v1.12.0/ar/changelog"
]
}
]
}
]
}
]
}
]
},
"logo": {
"light": "/images/crew_only_logo.png",
"dark": "/images/crew_only_logo.png"
},
"fonts": {
"family": "Inter"
},
"appearance": {
"default": "system",
"strict": false,
"layout": "sidenav"
},
"background": {
"decoration": "grid"
},
"navbar": {
"links": [
{
"label": "Start Cloud Trial",
"href": "https://app.crewai.com",
"icon": "arrow-up-right-from-square"
}
],
"primary": {
"type": "github",
"href": "https://github.com/crewAIInc/crewAI"
}
},
"api": {
"baseUrl": "https://your-actual-crew-name.crewai.com",
"auth": {
"method": "bearer",
"name": "Authorization"
},
"playground": {
"mode": "simple"
}
},
"seo": {
"metatags": {
"og:type": "website",
"og:site_name": "CrewAI Documentation",
"og:image": "https://docs.crewai.com/images/crew_only_logo.png",
"twitter:card": "summary_large_image",
"twitter:site": "@crewAIInc",
"keywords": "AI agents, multi-agent systems, CrewAI, artificial intelligence, automation, Python framework, agent collaboration, AI workflows"
}
},
"feedback": {
"enabled": true,
"thumbsRating": true,
"suggestEdit": true
},
"redirects": [
{
"source": "/api-reference",
"destination": "/v1.14.7/en/api-reference/introduction"
},
{
"source": "/introduction",
"destination": "/v1.14.7/en/introduction"
},
{
"source": "/skills",
"destination": "/v1.14.7/en/skills"
},
{
"source": "/installation",
"destination": "/v1.14.7/en/installation"
},
{
"source": "/quickstart",
"destination": "/v1.14.7/en/quickstart"
},
{
"source": "/changelog",
"destination": "/v1.14.7/en/changelog"
},
{
"source": "/telemetry",
"destination": "/v1.14.7/en/telemetry"
},
{
"source": "/concepts/:path*",
"destination": "/v1.14.7/en/concepts/:path*"
},
{
"source": "/guides/:path*",
"destination": "/v1.14.7/en/guides/:path*"
},
{
"source": "/tools/:path*",
"destination": "/v1.14.7/en/tools/:path*"
},
{
"source": "/learn/:path*",
"destination": "/v1.14.7/en/learn/:path*"
},
{
"source": "/mcp/:path*",
"destination": "/v1.14.7/en/mcp/:path*"
},
{
"source": "/observability/:path*",
"destination": "/v1.14.7/en/observability/:path*"
},
{
"source": "/enterprise/:path*",
"destination": "/v1.14.7/en/enterprise/:path*"
},
{
"source": "/en/enterprise/guides/deploy-crew",
"destination": "/v1.14.7/en/enterprise/guides/deploy-to-amp"
},
{
"source": "/ko/enterprise/guides/deploy-crew",
"destination": "/v1.14.7/ko/enterprise/guides/deploy-to-amp"
},
{
"source": "/pt-BR/enterprise/guides/deploy-crew",
"destination": "/v1.14.7/pt-BR/enterprise/guides/deploy-to-amp"
},
{
"source": "/api-reference/:path*",
"destination": "/v1.14.7/en/api-reference/:path*"
},
{
"source": "/en/api-reference",
"destination": "/v1.14.7/en/api-reference/introduction"
},
{
"source": "/pt-BR/api-reference",
"destination": "/v1.14.7/pt-BR/api-reference/introduction"
},
{
"source": "/ko/api-reference",
"destination": "/v1.14.7/ko/api-reference/introduction"
},
{
"source": "/examples/:path*",
"destination": "/v1.14.7/en/examples/:path*"
},
{
"source": "/en/:slug*",
"destination": "/v1.14.7/en/:slug*",
"permanent": false
},
{
"source": "/pt-BR/:slug*",
"destination": "/v1.14.7/pt-BR/:slug*",
"permanent": false
},
{
"source": "/ko/:slug*",
"destination": "/v1.14.7/ko/:slug*",
"permanent": false
},
{
"source": "/ar/:slug*",
"destination": "/v1.14.7/ar/:slug*",
"permanent": false
}
],
"errors": {
"404": {
"redirect": true
}
},
"footer": {
"socials": {
"website": "https://crewai.com",
"x": "https://x.com/crewAIInc",
"github": "https://github.com/crewAIInc/crewAI",
"linkedin": "https://www.linkedin.com/company/crewai-inc",
"youtube": "https://youtube.com/@crewAIInc",
"reddit": "https://www.reddit.com/r/crewAIInc/"
}
}
}