From ffd717c51a8ab2398190a67d7be385860c777f38 Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Thu, 13 Nov 2025 01:55:10 -0500 Subject: [PATCH] fix: custom tool docs links, add mintlify broken links action (#3903) * fix: update docs links to point to correct endpoints * fix: update all broken doc links --- .github/workflows/docs-broken-links.yml | 35 +++++++++++++++++++ docs/en/concepts/knowledge.mdx | 2 +- docs/en/concepts/llms.mdx | 2 +- docs/en/enterprise/features/marketplace.mdx | 2 +- .../features/tools-and-integrations.mdx | 2 +- docs/en/enterprise/guides/tool-repository.mdx | 4 +-- .../resources/frequently-asked-questions.mdx | 4 +-- docs/en/learn/hierarchical-process.mdx | 2 +- docs/en/observability/portkey.mdx | 6 ++-- docs/en/tools/cloud-storage/overview.mdx | 2 +- docs/ko/changelog.mdx | 4 +-- docs/ko/concepts/knowledge.mdx | 2 +- docs/ko/concepts/llms.mdx | 2 +- docs/ko/enterprise/features/marketplace.mdx | 2 +- .../features/tools-and-integrations.mdx | 2 +- docs/ko/enterprise/guides/tool-repository.mdx | 4 +-- .../resources/frequently-asked-questions.mdx | 4 +-- docs/ko/learn/hierarchical-process.mdx | 2 +- docs/ko/observability/portkey.mdx | 6 ++-- docs/ko/tools/cloud-storage/overview.mdx | 2 +- docs/ko/tools/tool-integrations/overview.mdx | 4 +-- docs/pt-BR/concepts/knowledge.mdx | 2 +- docs/pt-BR/concepts/llms.mdx | 2 +- .../pt-BR/enterprise/features/marketplace.mdx | 2 +- .../features/tools-and-integrations.mdx | 2 +- .../enterprise/guides/tool-repository.mdx | 4 +-- .../resources/frequently-asked-questions.mdx | 4 +-- docs/pt-BR/learn/hierarchical-process.mdx | 2 +- docs/pt-BR/observability/portkey.mdx | 6 ++-- docs/pt-BR/tools/cloud-storage/overview.mdx | 2 +- .../tools/tool-integrations/overview.mdx | 4 +-- 31 files changed, 77 insertions(+), 48 deletions(-) create mode 100644 .github/workflows/docs-broken-links.yml diff --git a/.github/workflows/docs-broken-links.yml b/.github/workflows/docs-broken-links.yml new file mode 100644 index 000000000..baf2a6ea7 --- /dev/null +++ b/.github/workflows/docs-broken-links.yml @@ -0,0 +1,35 @@ +name: Check Documentation Broken Links + +on: + pull_request: + paths: + - "docs/**" + - "docs.json" + push: + branches: + - main + paths: + - "docs/**" + - "docs.json" + workflow_dispatch: + +jobs: + check-links: + name: Check broken links + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: "latest" + + - name: Install Mintlify CLI + run: npm i -g mintlify + + - name: Run broken link checker + run: | + # Auto-answer the prompt with yes command + yes "" | mintlify broken-links || test $? -eq 141 + working-directory: ./docs diff --git a/docs/en/concepts/knowledge.mdx b/docs/en/concepts/knowledge.mdx index 8ebc0f3cd..dfd74949a 100644 --- a/docs/en/concepts/knowledge.mdx +++ b/docs/en/concepts/knowledge.mdx @@ -739,7 +739,7 @@ class KnowledgeMonitorListener(BaseEventListener): knowledge_monitor = KnowledgeMonitorListener() ``` -For more information on using events, see the [Event Listeners](https://docs.crewai.com/concepts/event-listener) documentation. +For more information on using events, see the [Event Listeners](/en/concepts/event-listener) documentation. ### Custom Knowledge Sources diff --git a/docs/en/concepts/llms.mdx b/docs/en/concepts/llms.mdx index fabf27aaa..1ebfafd3d 100644 --- a/docs/en/concepts/llms.mdx +++ b/docs/en/concepts/llms.mdx @@ -1035,7 +1035,7 @@ CrewAI supports streaming responses from LLMs, allowing your application to rece ``` - [Click here](https://docs.crewai.com/concepts/event-listener#event-listeners) for more details + [Click here](/en/concepts/event-listener#event-listeners) for more details diff --git a/docs/en/enterprise/features/marketplace.mdx b/docs/en/enterprise/features/marketplace.mdx index dc7e0d916..8e5c1ee85 100644 --- a/docs/en/enterprise/features/marketplace.mdx +++ b/docs/en/enterprise/features/marketplace.mdx @@ -37,7 +37,7 @@ you can use them locally or refine them to your needs. Connect external apps and manage internal tools your agents can use. - + Publish and install tools to enhance your crews' capabilities. diff --git a/docs/en/enterprise/features/tools-and-integrations.mdx b/docs/en/enterprise/features/tools-and-integrations.mdx index db2cec5ce..268cb4ea8 100644 --- a/docs/en/enterprise/features/tools-and-integrations.mdx +++ b/docs/en/enterprise/features/tools-and-integrations.mdx @@ -241,7 +241,7 @@ Tools & Integrations is the central hub for connecting third‑party apps and ma ## Related - + Create, publish, and version custom tools for your organization. diff --git a/docs/en/enterprise/guides/tool-repository.mdx b/docs/en/enterprise/guides/tool-repository.mdx index aee927e63..dc3a11c3f 100644 --- a/docs/en/enterprise/guides/tool-repository.mdx +++ b/docs/en/enterprise/guides/tool-repository.mdx @@ -21,7 +21,7 @@ The repository is not a version control system. Use Git to track code changes an Before using the Tool Repository, ensure you have: - A [CrewAI AMP](https://app.crewai.com) account -- [CrewAI CLI](https://docs.crewai.com/concepts/cli#cli) installed +- [CrewAI CLI](/en/concepts/cli#cli) installed - uv>=0.5.0 installed. Check out [how to upgrade](https://docs.astral.sh/uv/getting-started/installation/#upgrading-uv) - [Git](https://git-scm.com) installed and configured - Access permissions to publish or install tools in your CrewAI AMP organization @@ -112,7 +112,7 @@ By default, tools are published as private. To make a tool public: crewai tool publish --public ``` -For more details on how to build tools, see [Creating your own tools](https://docs.crewai.com/concepts/tools#creating-your-own-tools). +For more details on how to build tools, see [Creating your own tools](/en/concepts/tools#creating-your-own-tools). ## Updating Tools diff --git a/docs/en/enterprise/resources/frequently-asked-questions.mdx b/docs/en/enterprise/resources/frequently-asked-questions.mdx index 1253d7eef..222f5e153 100644 --- a/docs/en/enterprise/resources/frequently-asked-questions.mdx +++ b/docs/en/enterprise/resources/frequently-asked-questions.mdx @@ -49,7 +49,7 @@ mode: "wide" To integrate human input into agent execution, set the `human_input` flag in the task definition. When enabled, the agent prompts the user for input before delivering its final answer. This input can provide extra context, clarify ambiguities, or validate the agent's output. - For detailed implementation guidance, see our [Human-in-the-Loop guide](/en/how-to/human-in-the-loop). + For detailed implementation guidance, see our [Human-in-the-Loop guide](/en/enterprise/guides/human-in-the-loop). @@ -142,7 +142,7 @@ mode: "wide" You can create custom tools by subclassing the `BaseTool` class provided by CrewAI or by using the tool decorator. Subclassing involves defining a new class that inherits from `BaseTool`, specifying the name, description, and the `_run` method for operational logic. The tool decorator allows you to create a `Tool` object directly with the required attributes and a functional logic. - CrewAI Tools Guide + CrewAI Tools Guide diff --git a/docs/en/learn/hierarchical-process.mdx b/docs/en/learn/hierarchical-process.mdx index 25d6867dc..d048c2f1d 100644 --- a/docs/en/learn/hierarchical-process.mdx +++ b/docs/en/learn/hierarchical-process.mdx @@ -97,7 +97,7 @@ project_crew = Crew( ``` - For more details on creating and customizing a manager agent, check out the [Custom Manager Agent documentation](https://docs.crewai.com/how-to/custom-manager-agent#custom-manager-agent). + For more details on creating and customizing a manager agent, check out the [Custom Manager Agent documentation](/en/learn/custom-manager-agent). diff --git a/docs/en/observability/portkey.mdx b/docs/en/observability/portkey.mdx index adf46593f..851cd358a 100644 --- a/docs/en/observability/portkey.mdx +++ b/docs/en/observability/portkey.mdx @@ -733,9 +733,7 @@ Here's a basic configuration to route requests to OpenAI, specifically using GPT - Collect relevant metadata to filter logs - Enforce access permissions - Create API keys through: - - [Portkey App](https://app.portkey.ai/) - - [API Key Management API](/en/api-reference/admin-api/control-plane/api-keys/create-api-key) + Create API keys through the [Portkey App](https://app.portkey.ai/) Example using Python SDK: ```python @@ -758,7 +756,7 @@ Here's a basic configuration to route requests to OpenAI, specifically using GPT ) ``` - For detailed key management instructions, see our [API Keys documentation](/en/api-reference/admin-api/control-plane/api-keys/create-api-key). + For detailed key management instructions, see the [Portkey documentation](https://portkey.ai/docs). diff --git a/docs/en/tools/cloud-storage/overview.mdx b/docs/en/tools/cloud-storage/overview.mdx index 093bff17d..87e23ca39 100644 --- a/docs/en/tools/cloud-storage/overview.mdx +++ b/docs/en/tools/cloud-storage/overview.mdx @@ -18,7 +18,7 @@ These tools enable your agents to interact with cloud services, access cloud sto Write and upload files to Amazon S3 storage. - + Invoke Amazon Bedrock agents for AI-powered tasks. diff --git a/docs/ko/changelog.mdx b/docs/ko/changelog.mdx index 3b6fdfd6c..699469797 100644 --- a/docs/ko/changelog.mdx +++ b/docs/ko/changelog.mdx @@ -632,11 +632,11 @@ mode: "wide" ## 기여 - 기여를 원하시면, [기여 가이드](CONTRIBUTING.md)를 참조하세요. + 기여를 원하시면, [기여 가이드](https://github.com/crewAIInc/crewAI/blob/main/CONTRIBUTING.md)를 참조하세요. ## 라이센스 - 이 프로젝트는 MIT 라이센스 하에 배포됩니다. 자세한 내용은 [LICENSE](LICENSE) 파일을 확인하세요. + 이 프로젝트는 MIT 라이센스 하에 배포됩니다. 자세한 내용은 [LICENSE](https://github.com/crewAIInc/crewAI/blob/main/LICENSE) 파일을 확인하세요. diff --git a/docs/ko/concepts/knowledge.mdx b/docs/ko/concepts/knowledge.mdx index f9024cddf..92f688392 100644 --- a/docs/ko/concepts/knowledge.mdx +++ b/docs/ko/concepts/knowledge.mdx @@ -706,7 +706,7 @@ class KnowledgeMonitorListener(BaseEventListener): knowledge_monitor = KnowledgeMonitorListener() ``` -이벤트 사용에 대한 자세한 내용은 [이벤트 리스너](https://docs.crewai.com/concepts/event-listener) 문서를 참고하세요. +이벤트 사용에 대한 자세한 내용은 [이벤트 리스너](/ko/concepts/event-listener) 문서를 참고하세요. ### 맞춤형 지식 소스 diff --git a/docs/ko/concepts/llms.mdx b/docs/ko/concepts/llms.mdx index 36bf0dbd0..59e629bd3 100644 --- a/docs/ko/concepts/llms.mdx +++ b/docs/ko/concepts/llms.mdx @@ -748,7 +748,7 @@ CrewAI는 LLM의 스트리밍 응답을 지원하여, 애플리케이션이 출 ``` - [자세한 내용은 여기를 클릭하세요](https://docs.crewai.com/concepts/event-listener#event-listeners) + [자세한 내용은 여기를 클릭하세요](/ko/concepts/event-listener#event-listeners) diff --git a/docs/ko/enterprise/features/marketplace.mdx b/docs/ko/enterprise/features/marketplace.mdx index d43807898..027593172 100644 --- a/docs/ko/enterprise/features/marketplace.mdx +++ b/docs/ko/enterprise/features/marketplace.mdx @@ -36,7 +36,7 @@ mode: "wide" 에이전트가 사용할 외부 앱 연결 및 내부 도구 관리. - + 크루 기능을 확장할 수 있도록 도구를 게시하고 설치. diff --git a/docs/ko/enterprise/features/tools-and-integrations.mdx b/docs/ko/enterprise/features/tools-and-integrations.mdx index 23085ec31..c5a15c7d0 100644 --- a/docs/ko/enterprise/features/tools-and-integrations.mdx +++ b/docs/ko/enterprise/features/tools-and-integrations.mdx @@ -231,7 +231,7 @@ mode: "wide" ## 관련 문서 - + 크루 기능을 확장할 수 있도록 도구를 게시하고 설치하세요. diff --git a/docs/ko/enterprise/guides/tool-repository.mdx b/docs/ko/enterprise/guides/tool-repository.mdx index 7e83b403b..7e9efe5a1 100644 --- a/docs/ko/enterprise/guides/tool-repository.mdx +++ b/docs/ko/enterprise/guides/tool-repository.mdx @@ -21,7 +21,7 @@ Tool Repository는 CrewAI 도구를 위한 패키지 관리자입니다. 사용 Tool Repository를 사용하기 전에 다음이 준비되어 있어야 합니다: - [CrewAI AMP](https://app.crewai.com) 계정 -- [CrewAI CLI](https://docs.crewai.com/concepts/cli#cli) 설치됨 +- [CrewAI CLI](/ko/concepts/cli#cli) 설치됨 - uv>=0.5.0 이 설치되어 있어야 합니다. [업그레이드 방법](https://docs.astral.sh/uv/getting-started/installation/#upgrading-uv)을 참고하세요. - [Git](https://git-scm.com) 설치 및 구성 완료 - CrewAI AMP 조직에서 도구를 게시하거나 설치할 수 있는 액세스 권한 @@ -66,7 +66,7 @@ crewai tool publish crewai tool publish --public ``` -도구 빌드에 대한 자세한 내용은 [나만의 도구 만들기](https://docs.crewai.com/concepts/tools#creating-your-own-tools)를 참고하세요. +도구 빌드에 대한 자세한 내용은 [나만의 도구 만들기](/ko/concepts/tools#creating-your-own-tools)를 참고하세요. ## 도구 업데이트 diff --git a/docs/ko/enterprise/resources/frequently-asked-questions.mdx b/docs/ko/enterprise/resources/frequently-asked-questions.mdx index f26863016..926b55e14 100644 --- a/docs/ko/enterprise/resources/frequently-asked-questions.mdx +++ b/docs/ko/enterprise/resources/frequently-asked-questions.mdx @@ -49,7 +49,7 @@ mode: "wide" 에이전트 실행에 인간 입력을 통합하려면 작업 정의에서 `human_input` 플래그를 설정하세요. 활성화하면, 에이전트가 최종 답변을 제공하기 전에 사용자에게 입력을 요청합니다. 이 입력은 추가 맥락을 제공하거나, 애매함을 해소하거나, 에이전트의 출력을 검증해야 할 때 활용될 수 있습니다. - 자세한 구현 방법은 [Human-in-the-Loop 가이드](/ko/how-to/human-in-the-loop)를 참고해 주세요. + 자세한 구현 방법은 [Human-in-the-Loop 가이드](/ko/enterprise/guides/human-in-the-loop)를 참고해 주세요. @@ -142,7 +142,7 @@ mode: "wide" CrewAI에서 제공하는 `BaseTool` 클래스를 상속받아 커스텀 도구를 직접 만들거나, tool 데코레이터를 활용할 수 있습니다. 상속 방식은 `BaseTool`을 상속하는 새로운 클래스를 정의해 이름, 설명, 그리고 실제 논리를 처리하는 `_run` 메서드를 작성합니다. tool 데코레이터를 사용하면 필수 속성과 운영 로직만 정의해 바로 `Tool` 객체를 만들 수 있습니다. - CrewAI 도구 가이드 + CrewAI 도구 가이드 diff --git a/docs/ko/learn/hierarchical-process.mdx b/docs/ko/learn/hierarchical-process.mdx index ba737f4f0..e659bd8d2 100644 --- a/docs/ko/learn/hierarchical-process.mdx +++ b/docs/ko/learn/hierarchical-process.mdx @@ -95,7 +95,7 @@ project_crew = Crew( ``` - 매니저 에이전트 생성 및 맞춤화에 대한 자세한 내용은 [커스텀 매니저 에이전트 문서](https://docs.crewai.com/how-to/custom-manager-agent#custom-manager-agent)를 참고하세요. + 매니저 에이전트 생성 및 맞춤화에 대한 자세한 내용은 [커스텀 매니저 에이전트 문서](/ko/learn/custom-manager-agent)를 참고하세요. ### 워크플로우 실행 diff --git a/docs/ko/observability/portkey.mdx b/docs/ko/observability/portkey.mdx index 1fb64288b..019cb35ea 100644 --- a/docs/ko/observability/portkey.mdx +++ b/docs/ko/observability/portkey.mdx @@ -730,9 +730,7 @@ Portkey 대시보드에서 [구성 페이지](https://app.portkey.ai/configs)에 - 로그를 필터링하기 위한 관련 메타데이터 수집 - 액세스 권한 적용 -API 키 생성 방법: -- [Portkey App](https://app.portkey.ai/) -- [API Key Management API](/ko/api-reference/admin-api/control-plane/api-keys/create-api-key) +[Portkey App](https://app.portkey.ai/)를 통해 API 키를 생성하세요 Python SDK를 사용한 예시: ```python @@ -755,7 +753,7 @@ api_key = portkey.api_keys.create( ) ``` -자세한 키 관리 방법은 [API 키 문서](/ko/api-reference/admin-api/control-plane/api-keys/create-api-key)를 참조하세요. +자세한 키 관리 방법은 [Portkey 문서](https://portkey.ai/docs)를 참조하세요. diff --git a/docs/ko/tools/cloud-storage/overview.mdx b/docs/ko/tools/cloud-storage/overview.mdx index cba3b5e21..ecbf612c0 100644 --- a/docs/ko/tools/cloud-storage/overview.mdx +++ b/docs/ko/tools/cloud-storage/overview.mdx @@ -18,7 +18,7 @@ mode: "wide" 파일을 Amazon S3 스토리지에 작성하고 업로드합니다. - + AI 기반 작업을 위해 Amazon Bedrock 에이전트를 호출합니다. diff --git a/docs/ko/tools/tool-integrations/overview.mdx b/docs/ko/tools/tool-integrations/overview.mdx index 4dfa0e62b..0f4a95acb 100644 --- a/docs/ko/tools/tool-integrations/overview.mdx +++ b/docs/ko/tools/tool-integrations/overview.mdx @@ -11,7 +11,7 @@ mode: "wide" Invoke Amazon Bedrock Agents from CrewAI to orchestrate actions across AWS services. @@ -20,7 +20,7 @@ mode: "wide" Automate deployment and operations by integrating CrewAI with external platforms and workflows. diff --git a/docs/pt-BR/concepts/knowledge.mdx b/docs/pt-BR/concepts/knowledge.mdx index b6efd0b6b..eabe22fab 100644 --- a/docs/pt-BR/concepts/knowledge.mdx +++ b/docs/pt-BR/concepts/knowledge.mdx @@ -704,7 +704,7 @@ class KnowledgeMonitorListener(BaseEventListener): knowledge_monitor = KnowledgeMonitorListener() ``` -Para mais informações sobre como usar eventos, consulte a documentação [Event Listeners](https://docs.crewai.com/concepts/event-listener). +Para mais informações sobre como usar eventos, consulte a documentação [Event Listeners](/pt-BR/concepts/event-listener). ### Fontes de Knowledge Personalizadas diff --git a/docs/pt-BR/concepts/llms.mdx b/docs/pt-BR/concepts/llms.mdx index 0f0291008..5b59db1e5 100644 --- a/docs/pt-BR/concepts/llms.mdx +++ b/docs/pt-BR/concepts/llms.mdx @@ -725,7 +725,7 @@ O CrewAI suporta respostas em streaming de LLMs, permitindo que sua aplicação ``` - [Clique aqui](https://docs.crewai.com/concepts/event-listener#event-listeners) para mais detalhes + [Clique aqui](/pt-BR/concepts/event-listener#event-listeners) para mais detalhes diff --git a/docs/pt-BR/enterprise/features/marketplace.mdx b/docs/pt-BR/enterprise/features/marketplace.mdx index 7022cc1bd..fa06188d2 100644 --- a/docs/pt-BR/enterprise/features/marketplace.mdx +++ b/docs/pt-BR/enterprise/features/marketplace.mdx @@ -36,7 +36,7 @@ Você também pode baixar templates diretamente do marketplace clicando em `Down Conecte apps externos e gerencie ferramentas internas que seus agentes podem usar. - + Publique e instale ferramentas para ampliar as capacidades dos seus crews. diff --git a/docs/pt-BR/enterprise/features/tools-and-integrations.mdx b/docs/pt-BR/enterprise/features/tools-and-integrations.mdx index 5d1d00de8..8ba6c84e5 100644 --- a/docs/pt-BR/enterprise/features/tools-and-integrations.mdx +++ b/docs/pt-BR/enterprise/features/tools-and-integrations.mdx @@ -231,7 +231,7 @@ Ferramentas & Integrações é o hub central para conectar aplicações de terce ## Relacionados - + Publique e instale ferramentas para ampliar as capacidades dos seus crews. diff --git a/docs/pt-BR/enterprise/guides/tool-repository.mdx b/docs/pt-BR/enterprise/guides/tool-repository.mdx index c59a2ab0b..b8b953738 100644 --- a/docs/pt-BR/enterprise/guides/tool-repository.mdx +++ b/docs/pt-BR/enterprise/guides/tool-repository.mdx @@ -21,7 +21,7 @@ O repositório não é um sistema de controle de versões. Use Git para rastrear Antes de usar o Repositório de Ferramentas, certifique-se de que você possui: - Uma conta [CrewAI AMP](https://app.crewai.com) -- [CrewAI CLI](https://docs.crewai.com/concepts/cli#cli) instalada +- [CrewAI CLI](/pt-BR/concepts/cli#cli) instalada - uv>=0.5.0 instalado. Veja [como atualizar](https://docs.astral.sh/uv/getting-started/installation/#upgrading-uv) - [Git](https://git-scm.com) instalado e configurado - Permissões de acesso para publicar ou instalar ferramentas em sua organização CrewAI AMP @@ -66,7 +66,7 @@ Por padrão, as ferramentas são publicadas como privadas. Para tornar uma ferra crewai tool publish --public ``` -Para mais detalhes sobre como construir ferramentas, acesse [Criando suas próprias ferramentas](https://docs.crewai.com/concepts/tools#creating-your-own-tools). +Para mais detalhes sobre como construir ferramentas, acesse [Criando suas próprias ferramentas](/pt-BR/concepts/tools#creating-your-own-tools). ## Atualizando ferramentas diff --git a/docs/pt-BR/enterprise/resources/frequently-asked-questions.mdx b/docs/pt-BR/enterprise/resources/frequently-asked-questions.mdx index c197a00cd..bcac42191 100644 --- a/docs/pt-BR/enterprise/resources/frequently-asked-questions.mdx +++ b/docs/pt-BR/enterprise/resources/frequently-asked-questions.mdx @@ -49,7 +49,7 @@ mode: "wide" Para integrar a entrada humana na execução do agente, defina a flag `human_input` na definição da tarefa. Quando habilitada, o agente solicitará a entrada do usuário antes de entregar sua resposta final. Essa entrada pode fornecer contexto extra, esclarecer ambiguidades ou validar a saída do agente. - Para orientações detalhadas de implementação, veja nosso [guia Human-in-the-Loop](/pt-BR/how-to/human-in-the-loop). + Para orientações detalhadas de implementação, veja nosso [guia Human-in-the-Loop](/pt-BR/enterprise/guides/human-in-the-loop). @@ -142,7 +142,7 @@ mode: "wide" Você pode criar ferramentas personalizadas herdando da classe `BaseTool` fornecida pela CrewAI ou usando o decorador de ferramenta. Herdar envolve definir uma nova classe que herda de `BaseTool`, especificando o nome, a descrição e o método `_run` para a lógica operacional. O decorador de ferramenta permite criar um objeto `Tool` diretamente com os atributos necessários e uma lógica funcional. - CrewAI Tools Guide + CrewAI Tools Guide diff --git a/docs/pt-BR/learn/hierarchical-process.mdx b/docs/pt-BR/learn/hierarchical-process.mdx index 8621df646..d7985f5d2 100644 --- a/docs/pt-BR/learn/hierarchical-process.mdx +++ b/docs/pt-BR/learn/hierarchical-process.mdx @@ -96,7 +96,7 @@ project_crew = Crew( ``` - Para mais detalhes sobre a criação e personalização de um agente gerente, confira a [documentação do Custom Manager Agent](https://docs.crewai.com/how-to/custom-manager-agent#custom-manager-agent). + Para mais detalhes sobre a criação e personalização de um agente gerente, confira a [documentação do Custom Manager Agent](/pt-BR/learn/custom-manager-agent). diff --git a/docs/pt-BR/observability/portkey.mdx b/docs/pt-BR/observability/portkey.mdx index e5a6f08ec..9e54136f5 100644 --- a/docs/pt-BR/observability/portkey.mdx +++ b/docs/pt-BR/observability/portkey.mdx @@ -733,9 +733,7 @@ Aqui está um exemplo básico para rotear requisições ao OpenAI, usando especi - Coletam metadados relevantes para filtragem de logs - Impõem permissões de acesso - Crie chaves de API através de: - - [Portkey App](https://app.portkey.ai/) - - [API Key Management API](/pt-BR/api-reference/admin-api/control-plane/api-keys/create-api-key) + Crie chaves de API através do [Portkey App](https://app.portkey.ai/) Exemplo usando Python SDK: ```python @@ -758,7 +756,7 @@ Aqui está um exemplo básico para rotear requisições ao OpenAI, usando especi ) ``` - Para instruções detalhadas de gerenciamento de chaves, veja nossa [documentação de API Keys](/pt-BR/api-reference/admin-api/control-plane/api-keys/create-api-key). + Para instruções detalhadas de gerenciamento de chaves, veja a [documentação Portkey](https://portkey.ai/docs). diff --git a/docs/pt-BR/tools/cloud-storage/overview.mdx b/docs/pt-BR/tools/cloud-storage/overview.mdx index a31603028..ace69705f 100644 --- a/docs/pt-BR/tools/cloud-storage/overview.mdx +++ b/docs/pt-BR/tools/cloud-storage/overview.mdx @@ -18,7 +18,7 @@ Essas ferramentas permitem que seus agentes interajam com serviços em nuvem, ac Escreva e faça upload de arquivos para o armazenamento Amazon S3. - + Acione agentes Amazon Bedrock para tarefas orientadas por IA. diff --git a/docs/pt-BR/tools/tool-integrations/overview.mdx b/docs/pt-BR/tools/tool-integrations/overview.mdx index 4dfa0e62b..64056a7ca 100644 --- a/docs/pt-BR/tools/tool-integrations/overview.mdx +++ b/docs/pt-BR/tools/tool-integrations/overview.mdx @@ -11,7 +11,7 @@ mode: "wide" Invoke Amazon Bedrock Agents from CrewAI to orchestrate actions across AWS services. @@ -20,7 +20,7 @@ mode: "wide" Automate deployment and operations by integrating CrewAI with external platforms and workflows.