From 24b03eef22ead4f46cd4f34f402787f97b0c757c Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Fri, 1 Mar 2024 11:16:00 -0800 Subject: [PATCH] Update RunTree (#481) --- python/langsmith/run_trees.py | 2 -- python/pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/python/langsmith/run_trees.py b/python/langsmith/run_trees.py index 392a0c9e5..b9954d206 100644 --- a/python/langsmith/run_trees.py +++ b/python/langsmith/run_trees.py @@ -178,8 +178,6 @@ def create_child( ) -> RunTree: """Add a child run to the run tree.""" serialized_ = serialized or {"name": name} - - logger.warning(f"session_name: {self.session_name} {self.name}") run = RunTree( name=name, id=run_id or uuid4(), diff --git a/python/pyproject.toml b/python/pyproject.toml index 156c6756f..714d864e3 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langsmith" -version = "0.1.10" +version = "0.1.11" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." authors = ["LangChain "] license = "MIT"