Skip to content

Commit

Permalink
recover type of reasoning reply
Browse files Browse the repository at this point in the history
  • Loading branch information
qidanrui committed Dec 26, 2023
1 parent 9d48078 commit 6292a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbgpt/agent/agents/base_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def _select_llm_model(self, old_model: str = None):
return now_model.model

async def a_reasoning_reply(
self, messages: Union[List[Dict]]
self, messages: Optional[List[Dict]] = None
) -> Union[str, Dict, None]:
"""(async) Reply based on the conversation history and the sender.
Args:
Expand Down

0 comments on commit 6292a8b

Please sign in to comment.