Skip to content

Commit 67bb88b

Browse files
Release 3.6.2 (#479)
* remove logs * remove requirements * Bump version * Squash * minor * switch to http exporter * Support tracing cached input tokens (#477) * capture cached input tokens * bump version * Bugfix DSPy
1 parent 77af26d commit 67bb88b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/langtrace_python_sdk/instrumentation/dspy/patch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ def traced_method(wrapped, instance, args, kwargs):
114114

115115
if instance.__class__.__name__:
116116
span_attributes["dspy.signature.name"] = instance.__class__.__name__
117-
span_attributes["dspy.signature"] = str(instance.signature)
117+
# TODO(Karthik): This is not working for dspy >= 2.6.2
118+
# span_attributes["dspy.signature"] = str(instance.signature)
118119

119120
if kwargs and len(kwargs) > 0:
120121
span_attributes["dspy.signature.args"] = str(kwargs)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.6.1"
1+
__version__ = "3.6.2"

0 commit comments

Comments
 (0)