Skip to content

Commit 30d9921

Browse files
Add replicas to baggage header (#1817)
1 parent 6957a35 commit 30d9921

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

python/langsmith/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# Avoid calling into importlib on every call to __version__
2323

24-
__version__ = "0.4.3"
24+
__version__ = "0.4.4"
2525
version = __version__ # for backwards compatibility
2626

2727

python/langsmith/run_trees.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,7 @@ def to_headers(self) -> dict[str, str]:
716716
metadata=self.extra.get("metadata", {}),
717717
tags=self.tags,
718718
project_name=self.session_name,
719+
replicas=self.replicas,
719720
)
720721
headers["baggage"] = baggage.to_header()
721722
return headers

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langsmith"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
55
authors = ["LangChain <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)