Skip to content

Commit 7e3d8ab

Browse files
committed
Log realtime session type
1 parent 87380cd commit 7e3d8ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

litellm/litellm_core_utils/realtime_streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def _collect_user_input_from_client_event(self, message: Union[str, dict]) -> No
177177
if tools and isinstance(tools, list):
178178
self.session_tools = tools
179179
# GA: session.type is required; log it for traceability but no action needed
180-
_ = session.get("type") # "realtime" | "transcription"
180+
verbose_logger.debug(f"Realtime session.type: {session.get('type')}")
181181
except (json.JSONDecodeError, AttributeError, TypeError):
182182
pass
183183

0 commit comments

Comments
 (0)