refactor : message for status

This commit is contained in:
martin legrand
2025-04-18 18:31:11 +02:00
parent 5ac7df1854
commit 0f09ef92dd
6 changed files with 33 additions and 15 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class CasualAgent(Agent):
animate_thinking("Thinking...", color="status")
answer, reasoning = await self.llm_request()
self.last_answer = answer
self.status_message = "Done"
self.status_message = "Ready"
return answer, reasoning
if __name__ == "__main__":