Skip to content

Commit

Permalink
Allwoing to use other LLM that are not OpenAI
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomdmoura committed Nov 24, 2023
1 parent 96a2b5b commit 7ad5680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crewai/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Agent(BaseModel):
role: str = Field(description="Role of the agent")
goal: str = Field(description="Objective 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(
description="Verbose mode for the Agent Execution",
default=False
Expand Down

0 comments on commit 7ad5680

Please sign in to comment.