Server IP : 192.64.118.117 / Your IP : 18.188.90.83 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/hc_python/lib64/python3.12/site-packages/sentry_sdk/ai/ |
Upload File : |
from typing import TYPE_CHECKING if TYPE_CHECKING: from typing import Any from sentry_sdk.tracing import Span from sentry_sdk.utils import logger def _normalize_data(data): # type: (Any) -> Any # convert pydantic data (e.g. OpenAI v1+) to json compatible format if hasattr(data, "model_dump"): try: return data.model_dump() except Exception as e: logger.warning("Could not convert pydantic data to JSON: %s", e) return data if isinstance(data, list): if len(data) == 1: return _normalize_data(data[0]) # remove empty dimensions return list(_normalize_data(x) for x in data) if isinstance(data, dict): return {k: _normalize_data(v) for (k, v) in data.items()} return data def set_data_normalized(span, key, value): # type: (Span, str, Any) -> None normalized = _normalize_data(value) span.set_data(key, normalized)