File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 20
20
from langsmith .utils import ContextThreadPoolExecutor
21
21
22
22
# Avoid calling into importlib on every call to __version__
23
- __version__ = "0.3.40 "
23
+ __version__ = "0.3.41 "
24
24
version = __version__ # for backwards compatibility
25
25
26
26
Original file line number Diff line number Diff line change @@ -2164,6 +2164,8 @@ def update_run(
2164
2164
data ["events" ] = events
2165
2165
if data ["extra" ]:
2166
2166
self ._insert_runtime_env ([data ])
2167
+ if metadata := data ["extra" ].get ("metadata" ):
2168
+ data ["extra" ]["metadata" ] = self ._hide_run_metadata (metadata )
2167
2169
2168
2170
if self ._pyo3_client is not None :
2169
2171
self ._pyo3_client .update_run (data )
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " langsmith"
3
- version = " 0.3.40 "
3
+ version = " 0.3.41 "
4
4
description = " Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
5
5
authors = [
" LangChain <[email protected] >" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments