get rid of some debug log lines used during development
This commit is contained in:
@@ -494,16 +494,9 @@ class OpenAIAssistantContextAggregator(LLMAssistantContextAggregator):
|
|||||||
if isinstance(frame, StartInterruptionFrame):
|
if isinstance(frame, StartInterruptionFrame):
|
||||||
self._function_calls_in_progress.clear()
|
self._function_calls_in_progress.clear()
|
||||||
self._function_call_finished = None
|
self._function_call_finished = None
|
||||||
logger.debug("clearing function calls in progress")
|
|
||||||
elif isinstance(frame, FunctionCallInProgressFrame):
|
elif isinstance(frame, FunctionCallInProgressFrame):
|
||||||
self._function_calls_in_progress[frame.tool_call_id] = frame
|
self._function_calls_in_progress[frame.tool_call_id] = frame
|
||||||
logger.debug(
|
|
||||||
f"FunctionCallInProgressFrame: {frame.tool_call_id} {self._function_calls_in_progress}"
|
|
||||||
)
|
|
||||||
elif isinstance(frame, FunctionCallResultFrame):
|
elif isinstance(frame, FunctionCallResultFrame):
|
||||||
logger.debug(
|
|
||||||
f"FunctionCallResultFrame: {frame.tool_call_id} {self._function_calls_in_progress}"
|
|
||||||
)
|
|
||||||
if frame.tool_call_id in self._function_calls_in_progress:
|
if frame.tool_call_id in self._function_calls_in_progress:
|
||||||
del self._function_calls_in_progress[frame.tool_call_id]
|
del self._function_calls_in_progress[frame.tool_call_id]
|
||||||
self._function_call_result = frame
|
self._function_call_result = frame
|
||||||
|
|||||||
Reference in New Issue
Block a user