From b0acae81b0a56c9cef942fa52a674f66dd0c3e79 Mon Sep 17 00:00:00 2001 From: Sajal Sharma Date: Fri, 19 Apr 2024 13:41:36 +0800 Subject: [PATCH] Update LLM-Connections.md (#353) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: João Moura --- docs/how-to/LLM-Connections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how-to/LLM-Connections.md b/docs/how-to/LLM-Connections.md index 510f2405f..516388efc 100644 --- a/docs/how-to/LLM-Connections.md +++ b/docs/how-to/LLM-Connections.md @@ -16,8 +16,8 @@ The `Agent` class is the cornerstone for implementing AI solutions in CrewAI. He - `role`: Defines the agent's role within the solution. - `goal`: Specifies the agent's objective. - `backstory`: Provides a background story to the agent. - - `llm`: The language model that will run the agent. By default, it uses the GPT-4 model defined in the environment variable "OPENAI_MODEL_NAME". - - `function_calling_llm`: The language model that will handle the tool calling for this agent, overriding the crew function_calling_llm. Optional. + - `llm`: Indicates the Large Language Model the agent uses. By default, it uses the GPT-4 model defined in the environment variable "OPENAI_MODEL_NAME". + - `function_calling_llm` *Optional*: Will turn the ReAct crewAI agent into a function calling agent. - `max_iter`: Maximum number of iterations for an agent to execute a task, default is 15. - `memory`: Enables the agent to retain information during and a across executions. Default is `False`. - `max_rpm`: Maximum number of requests per minute the agent's execution should respect. Optional.