fiddler-langgraph 0.1.0rc1__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fiddler_langgraph/VERSION +1 -1
- fiddler_langgraph/tracing/callback.py +6 -2
- {fiddler_langgraph-0.1.0rc1.dist-info → fiddler_langgraph-0.1.1.dist-info}/METADATA +1 -1
- {fiddler_langgraph-0.1.0rc1.dist-info → fiddler_langgraph-0.1.1.dist-info}/RECORD +6 -6
- {fiddler_langgraph-0.1.0rc1.dist-info → fiddler_langgraph-0.1.1.dist-info}/WHEEL +0 -0
- {fiddler_langgraph-0.1.0rc1.dist-info → fiddler_langgraph-0.1.1.dist-info}/top_level.txt +0 -0
fiddler_langgraph/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -208,7 +208,12 @@ class _CallbackHandler(BaseCallbackHandler):
|
|
|
208
208
|
if metadata is not None:
|
|
209
209
|
fiddler_attributes = metadata.get(FIDDLER_METADATA_KEY, {})
|
|
210
210
|
for key, value in fiddler_attributes.items():
|
|
211
|
-
|
|
211
|
+
# FiddlerSpanAttributes keys should not be prefixed with fiddler.span.user.
|
|
212
|
+
fdl_key = (
|
|
213
|
+
key
|
|
214
|
+
if key in vars(FiddlerSpanAttributes).values()
|
|
215
|
+
else FIDDLER_USER_SPAN_ATTRIBUTE_TEMPLATE.format(key=key)
|
|
216
|
+
)
|
|
212
217
|
span.set_attribute(fdl_key, value)
|
|
213
218
|
|
|
214
219
|
def _update_root_span_agent_name(self, agent_name: str) -> None:
|
|
@@ -626,7 +631,6 @@ class _CallbackHandler(BaseCallbackHandler):
|
|
|
626
631
|
system_message = [m for m in messages[0] if isinstance(m, SystemMessage)]
|
|
627
632
|
user_message = [m for m in messages[0] if isinstance(m, HumanMessage)]
|
|
628
633
|
|
|
629
|
-
# breakpoint()
|
|
630
634
|
if metadata is not None:
|
|
631
635
|
_set_agent_name(child_span, metadata)
|
|
632
636
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
fiddler_langgraph/VERSION,sha256=
|
|
1
|
+
fiddler_langgraph/VERSION,sha256=gERzFlKfxiAU-6oEf7Z8Uaww4ygwzaNwQFNJ2NZtGWw,6
|
|
2
2
|
fiddler_langgraph/__init__.py,sha256=cqomWAmuY-2KvwJTvo7c7cecCPoe31pv4vgyBk_E8oQ,315
|
|
3
3
|
fiddler_langgraph/core/__init__.py,sha256=HXPZt8YpmVrvwEEukoWR78LufMKtl7lVjLtcl9UNSoc,42
|
|
4
4
|
fiddler_langgraph/core/attributes.py,sha256=Kj2p03gzuaVWhgd4odm15xMP-FbYSDA5aBi-dvEtgkA,2864
|
|
5
5
|
fiddler_langgraph/core/client.py,sha256=qgDsMI_bBVSV-75tLjnM0of0i464g9KyeUljiccRkIE,13658
|
|
6
6
|
fiddler_langgraph/core/span_processor.py,sha256=ODYmdo0FUYEFbIWS_VaR9L6qHUVvpnuk-RSIhgRxyb0,1164
|
|
7
7
|
fiddler_langgraph/tracing/__init__.py,sha256=Kw8VUB7RDffBq4ss0v6vNQYi4KDQOM0J1elbMrqJpsU,49
|
|
8
|
-
fiddler_langgraph/tracing/callback.py,sha256=
|
|
8
|
+
fiddler_langgraph/tracing/callback.py,sha256=oI6Zpbfe50mGu85NArd8rXxOyYvOKUV4fY--EBnlQlo,31264
|
|
9
9
|
fiddler_langgraph/tracing/instrumentation.py,sha256=LHCYW6asySajbF-sOOi6_6J7UBD6z1Vwp4QjHP9zzt0,10580
|
|
10
10
|
fiddler_langgraph/tracing/jsonl_capture.py,sha256=7Sy0nbxRftV5y64UCovSlm07qXn-EfG3uHpBu9H2ZiU,8174
|
|
11
11
|
fiddler_langgraph/tracing/util.py,sha256=RKMrrmdCXSRJrTIHngdhRsotPLEY_LR1SKnUXAJC40Y,2678
|
|
12
|
-
fiddler_langgraph-0.1.
|
|
13
|
-
fiddler_langgraph-0.1.
|
|
14
|
-
fiddler_langgraph-0.1.
|
|
15
|
-
fiddler_langgraph-0.1.
|
|
12
|
+
fiddler_langgraph-0.1.1.dist-info/METADATA,sha256=79J7iKAC1ZqCwGp1guUDNWZfjzM-5LSf03x1HBqwfVg,10184
|
|
13
|
+
fiddler_langgraph-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
+
fiddler_langgraph-0.1.1.dist-info/top_level.txt,sha256=hOKdR6_3AkS4dS6EfE9Ii7YrS_hApnyGfY-0v0DV0s4,18
|
|
15
|
+
fiddler_langgraph-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|