Skip to content

Commit

Permalink
Merge pull request #31 from video-db/fix-re-message
Browse files Browse the repository at this point in the history
Fix RE Final Response
  • Loading branch information
ashish-spext authored Oct 29, 2024
2 parents 13a697d + b99a6e0 commit 03c39d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/director/core/reasoning.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def step(self):
)
if self.iterations == self.max_iterations - 1:
# Direct response case
self.summary_content.status_message = "Here is the the response"
self.summary_content.status_message = "Here is the response"
self.summary_content.text = llm_response.content
self.summary_content.status = MsgStatus.success
else:
Expand Down

0 comments on commit 03c39d8

Please sign in to comment.