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 0e3ff97 commit a5a73c9Copy full SHA for a5a73c9
src/agents/run.py
@@ -1868,7 +1868,7 @@ async def _save_result_to_session(
1868
store_setting = item.agent.model_settings.store
1869
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"}
+ input_item = {k: v for k, v in input_item.items() if k != "id"} # type: ignore[assignment]
1872
new_items_as_input.append(input_item)
1873
1874
# Save all items from this turn
0 commit comments