core[patch]: dont update run names in tracer

This commit is contained in:
Bagatur
2024-08-21 11:39:20 -07:00
parent 4feda41ab6
commit a87c4123fc

View File

@@ -206,6 +206,7 @@ class LangChainTracer(BaseTracer):
"""Update a run."""
try:
run_dict = _run_to_dict(run)
run_dict.pop("name", None)
run_dict["tags"] = self._get_tags(run)
self.client.update_run(run.id, **run_dict)
except Exception as e: