diff --git a/python/langsmith/client.py b/python/langsmith/client.py index b09833d4f..ec3af9ee4 100644 --- a/python/langsmith/client.py +++ b/python/langsmith/client.py @@ -4341,6 +4341,8 @@ def create_feedback( if ( use_multipart + and self.info.version # TODO: Remove version check once versions have updated + and ls_utils.is_version_greater_or_equal(self.info.version, "0.8.10") and self.tracing_queue is not None and feedback.trace_id is not None ): diff --git a/python/pyproject.toml b/python/pyproject.toml index 620a3662a..2ecbf899c 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langsmith" -version = "0.1.138rc1" +version = "0.1.138rc2" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." authors = ["LangChain "] license = "MIT"