diff --git a/docs/core-concepts/Memory.md b/docs/core-concepts/Memory.md index ce7955e0e..9c9d47be0 100644 --- a/docs/core-concepts/Memory.md +++ b/docs/core-concepts/Memory.md @@ -12,7 +12,7 @@ description: Leveraging memory systems in the crewAI framework to enhance agent | Component | Description | | :------------------- | :----------------------------------------------------------- | | **Short-Term Memory**| Temporarily stores recent interactions and outcomes, enabling agents to recall and utilize information relevant to their current context during the current executions. | -| **Long-Term Memory** | Preserves valuable insights and learnings from past executions, allowing agents to build and refine their knowledge over time. So Agents can remeber what they did right and wrong across multiple executions | +| **Long-Term Memory** | Preserves valuable insights and learnings from past executions, allowing agents to build and refine their knowledge over time. So Agents can remember what they did right and wrong across multiple executions | | **Entity Memory** | Captures and organizes information about entities (people, places, concepts) encountered during tasks, facilitating deeper understanding and relationship mapping. | | **Contextual Memory**| Maintains the context of interactions by combining `ShortTermMemory`, `LongTermMemory`, and `EntityMemory`, aiding in the coherence and relevance of agent responses over a sequence of tasks or a conversation. | diff --git a/docs/how-to/Create-Custom-Tools.md b/docs/how-to/Create-Custom-Tools.md index e0e91c4f2..c5e260687 100644 --- a/docs/how-to/Create-Custom-Tools.md +++ b/docs/how-to/Create-Custom-Tools.md @@ -51,7 +51,7 @@ To optimize tool performance with caching, define custom caching strategies usin @tool("Tool with Caching") def cached_tool(argument: str) -> str: """Tool functionality description.""" - return "Cachable result" + return "Cacheable result" def my_cache_strategy(arguments: dict, result: str) -> bool: # Define custom caching logic diff --git a/docs/how-to/Creating-a-Crew-and-kick-it-off.md b/docs/how-to/Creating-a-Crew-and-kick-it-off.md index 7b5dd325e..85b1ba506 100644 --- a/docs/how-to/Creating-a-Crew-and-kick-it-off.md +++ b/docs/how-to/Creating-a-Crew-and-kick-it-off.md @@ -79,5 +79,4 @@ manager = Agent( 1. `allow_code_execution`: Enable or disable code execution capabilities for the agent (default is False). 2. `max_execution_time`: Set a maximum execution time (in seconds) for the agent to complete a task. -3. `function_calling_llm`: Specify a separate language model for function calling. -4 \ No newline at end of file +3. `function_calling_llm`: Specify a separate language model for function calling. \ No newline at end of file diff --git a/docs/tools/TXTSearchTool.md b/docs/tools/TXTSearchTool.md index 817c77756..e13fb543f 100644 --- a/docs/tools/TXTSearchTool.md +++ b/docs/tools/TXTSearchTool.md @@ -31,7 +31,7 @@ tool = TXTSearchTool(txt='path/to/text/file.txt') ``` ## Arguments -- `txt` (str): **Optinal**. The path to the text file you want to search. This argument is only required if the tool was not initialized with a specific text file; otherwise, the search will be conducted within the initially provided text file. +- `txt` (str): **Optional**. The path to the text file you want to search. This argument is only required if the tool was not initialized with a specific text file; otherwise, the search will be conducted within the initially provided text file. ## Custom model and embeddings