Skip to content

Commit

Permalink
bug(agent):agent bug fix
Browse files Browse the repository at this point in the history
1.Fix autoplan mode rely message miss
2.Fix ToolExpert use plugin hub load bug
3.Modify Agent message output logic
  • Loading branch information
yhjun1026 committed Mar 13, 2024
1 parent bb461c9 commit fffcbf3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dbgpt/serve/agent/agents/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,10 @@ async def stable_message(
if is_complete:
return await self.memory.one_chat_competions_v2(conv_id)
else:
raise ValueError(
"The conversation has not been completed yet, so we cannot directly obtain information."
)
pass
# raise ValueError(
# "The conversation has not been completed yet, so we cannot directly obtain information."
# )
else:
raise ValueError("No conversation record found!")

Expand Down

0 comments on commit fffcbf3

Please sign in to comment.