Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pieroit committed Aug 7, 2024
1 parent 4df4bee commit 079df52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/routes/test_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def check_correct_websocket_reply(reply):

# why
why = reply["why"]
assert {"input", "intermediate_steps", "memory", "model_interactions"} == set(why.keys())
assert {"input", "intermediate_steps", "memory", "model_interactions", "agent_output"} == set(why.keys())
assert isinstance(why["input"], str)
assert isinstance(why["intermediate_steps"], list)
assert isinstance(why["memory"], dict)
Expand Down

0 comments on commit 079df52

Please sign in to comment.