Skip to content

Commit

Permalink
stutter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
the-praxs committed Dec 22, 2024
1 parent d355ce9 commit 2696ae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/v1/integrations/taskweaver.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ handler = TaskWeaverEventHandler()
session.event_emitter.register(handler)

user_query = "Hello, what are the capabilities of TaskWeaver?"
response_round = session.send_message(user_query, event_handler=handler)
response_round = session.send_message(user_query)

user_query = "Write me a simple calculator program in python"
response_round = session.send_message(user_query, event_handler=handler)
response_round = session.send_message(user_query)

agentops.end_session("Success")
```
Expand Down

0 comments on commit 2696ae7

Please sign in to comment.