We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7d50d commit 0e3ff97Copy full SHA for 0e3ff97
src/agents/run.py
@@ -1866,7 +1866,7 @@ async def _save_result_to_session(
1866
if isinstance(input_item, dict) and input_item.get("type") == "reasoning":
1867
# Check if store is explicitly set to False (ZDR mode)
1868
store_setting = item.agent.model_settings.store
1869
- if not store_setting and "id" in input_item:
+ if store_setting is False and "id" in input_item:
1870
# Remove the instance-specific IDs to enable load balancing
1871
input_item = {k: v for k, v in input_item.items() if k != "id"}
1872
new_items_as_input.append(input_item)
0 commit comments