File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
preview/reasoning_engines/templates Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1162,6 +1162,10 @@ async def streaming_agent_run_with_events(self, request_json: str):
11621162 self .set_up ()
11631163 if not self ._tmpl_attrs .get ("session_service" ):
11641164 self .set_up ()
1165+ if not self ._tmpl_attrs .get ("in_memory_memory_service" ):
1166+ self .set_up ()
1167+ if not self ._tmpl_attrs .get ("memory_service" ):
1168+ self .set_up ()
11651169 app = self ._tmpl_attrs .get ("app" )
11661170
11671171 # Try to get the session, if it doesn't exist, create a new one.
Original file line number Diff line number Diff line change @@ -1002,6 +1002,10 @@ async def _invoke_agent_async():
10021002 self .set_up ()
10031003 if not self ._tmpl_attrs .get ("session_service" ):
10041004 self .set_up ()
1005+ if not self ._tmpl_attrs .get ("in_memory_memory_service" ):
1006+ self .set_up ()
1007+ if not self ._tmpl_attrs .get ("memory_service" ):
1008+ self .set_up ()
10051009
10061010 # Try to get the session, if it doesn't exist, create a new one.
10071011 if request .session_id :
You can’t perform that action at this time.
0 commit comments