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
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
15
15
"""
16
16
Langchain instrumentation supporting `ChatOpenAI` and `ChatBedrock`, it can be enabled by
17
-
using ``LangChainInstrumentor``.
17
+
using ``LangChainInstrumentor``. Other providers/LLMs may be supported in the future and telemetry for them is skipped for now.
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/callback_handler.py
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,12 @@ def on_chat_model_start(
54
54
metadata: dict[str, Any] |None,
55
55
**kwargs: Any,
56
56
) ->None:
57
+
# Other providers/LLMs may be supported in the future and telemetry for them is skipped for now.
0 commit comments