You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For added safety, src/opentelemetry/instrumentation/langchain/span_manager.py -> self.spans: Dict[UUID, _SpanState] = {} use a WeakMap (assuming the span can be safely garbage collected after LangChain no longer has reference to the UUID object) or some kind of LRU cache for bounded memory.