mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
Allwoing to use other LLM that are not OpenAI
This commit is contained in:
@@ -18,7 +18,7 @@ class Agent(BaseModel):
|
|||||||
role: str = Field(description="Role of the agent")
|
role: str = Field(description="Role of the agent")
|
||||||
goal: str = Field(description="Objective of the agent")
|
goal: str = Field(description="Objective of the agent")
|
||||||
backstory: str = Field(description="Backstory of the agent")
|
backstory: str = Field(description="Backstory of the agent")
|
||||||
llm: Optional[OpenAI] = Field(description="LLM that will run the agent")
|
llm: Optional[Any] = Field(description="LLM that will run the agent")
|
||||||
verbose: bool = Field(
|
verbose: bool = Field(
|
||||||
description="Verbose mode for the Agent Execution",
|
description="Verbose mode for the Agent Execution",
|
||||||
default=False
|
default=False
|
||||||
|
|||||||
Reference in New Issue
Block a user