Skip to content

Commit

Permalink
fix unpacking problem
Browse files Browse the repository at this point in the history
  • Loading branch information
cpacker committed Oct 15, 2024
1 parent eeb1460 commit ae9b0e9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions letta/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,13 +744,11 @@ def step(
total_usage = UsageStatistics()
step_count = 0
while True:
kwargs["ms"] = ms
kwargs["first_message"] = False
kwargs["return_dicts"] = False
step_response = self.inner_step(
messages=next_input_message,
first_message=False,
skip_verify=skip_verify,
return_dicts=False,
stream=stream,
ms=ms,
**kwargs,
)
step_response.messages
Expand Down

0 comments on commit ae9b0e9

Please sign in to comment.