Skip to content

Commit b619a97

Browse files
authored
Merge pull request #36 from Sathvika-891/main
updated baseagent with default llm as none
2 parents b9db226 + c22989b commit b619a97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maslibpy/agent/baseagent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class BaseAgent(BaseModel):
1010
role: str = ""
1111
goal: str = ""
1212
backstory: str = ""
13-
generator_llm:Optional[LLM]=LLM()
14-
critique_llm:Optional[LLM]=LLM()
13+
generator_llm:Optional[LLM]=None
14+
critique_llm:Optional[LLM]=None
1515
system_prompt: Optional[str] = None
1616
prompt_type: Literal["cot", "react"] = Field(default="react")
1717
prompt_pattern: Optional[str] = None

0 commit comments

Comments
 (0)