From 3e075cd48d6687204953f9117e108cf7adab23b4 Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Thu, 5 Jun 2025 12:37:19 -0300 Subject: [PATCH] docs: add minimum UV version required to use the Tool repository (#2965) * docs: add minimum UV version required to use the Tool repository * docs: remove memory from Agent docs The Agent does not support `memory` attribute --- docs/concepts/agents.mdx | 4 ---- docs/enterprise/features/tool-repository.mdx | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/concepts/agents.mdx b/docs/concepts/agents.mdx index 9803a5c6d..bdf32b2cd 100644 --- a/docs/concepts/agents.mdx +++ b/docs/concepts/agents.mdx @@ -43,7 +43,6 @@ The Visual Agent Builder enables: | **Max Iterations** _(optional)_ | `max_iter` | `int` | Maximum iterations before the agent must provide its best answer. Default is 20. | | **Max RPM** _(optional)_ | `max_rpm` | `Optional[int]` | Maximum requests per minute to avoid rate limits. | | **Max Execution Time** _(optional)_ | `max_execution_time` | `Optional[int]` | Maximum time (in seconds) for task execution. | -| **Memory** _(optional)_ | `memory` | `bool` | Whether the agent should maintain memory of interactions. Default is True. | | **Verbose** _(optional)_ | `verbose` | `bool` | Enable detailed execution logs for debugging. Default is False. | | **Allow Delegation** _(optional)_ | `allow_delegation` | `bool` | Allow the agent to delegate tasks to other agents. Default is False. | | **Step Callback** _(optional)_ | `step_callback` | `Optional[Any]` | Function called after each agent step, overrides crew callback. | @@ -156,7 +155,6 @@ agent = Agent( "you excel at finding patterns in complex datasets.", llm="gpt-4", # Default: OPENAI_MODEL_NAME or "gpt-4" function_calling_llm=None, # Optional: Separate LLM for tool calling - memory=True, # Default: True verbose=False, # Default: False allow_delegation=False, # Default: False max_iter=20, # Default: 20 iterations @@ -537,7 +535,6 @@ The context window management feature works automatically in the background. You - Adjust `max_iter` and `max_retry_limit` based on task complexity ### Memory and Context Management -- Use `memory: true` for tasks requiring historical context - Leverage `knowledge_sources` for domain-specific information - Configure `embedder` when using custom embedding models - Use custom templates (`system_template`, `prompt_template`, `response_template`) for fine-grained control over agent behavior @@ -585,7 +582,6 @@ The context window management feature works automatically in the background. You - Review code sandbox settings 4. **Memory Issues**: If agent responses seem inconsistent: - - Verify memory is enabled - Check knowledge source configuration - Review conversation history management diff --git a/docs/enterprise/features/tool-repository.mdx b/docs/enterprise/features/tool-repository.mdx index df4a8c9bf..c43b96987 100644 --- a/docs/enterprise/features/tool-repository.mdx +++ b/docs/enterprise/features/tool-repository.mdx @@ -21,6 +21,7 @@ Before using the Tool Repository, ensure you have: - A [CrewAI Enterprise](https://app.crewai.com) account - [CrewAI CLI](https://docs.crewai.com/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 Enterprise organization