File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -1031,7 +1031,6 @@ async def run_agent(req: RunAgentRequest) -> list[Event]:
10311031 session_id = req .session_id ,
10321032 new_message = req .new_message ,
10331033 state_delta = req .state_delta ,
1034- run_config = RunConfig (save_input_blobs_as_artifacts = True ),
10351034 )
10361035 ) as agen :
10371036 events = [event async for event in agen ]
@@ -1061,10 +1060,7 @@ async def event_generator():
10611060 session_id = req .session_id ,
10621061 new_message = req .new_message ,
10631062 state_delta = req .state_delta ,
1064- run_config = RunConfig (
1065- streaming_mode = stream_mode ,
1066- save_input_blobs_as_artifacts = True ,
1067- ),
1063+ run_config = RunConfig (streaming_mode = stream_mode ),
10681064 )
10691065 ) as agen :
10701066 async for event in agen :
You can’t perform that action at this time.
0 commit comments