File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 3.8.0 - 2025-01-14
2+
3+ 1 . Add LLM Observability with support for OpenAI and Langchain callbacks.
4+
15## 3.7.5 - 2025-01-03
26
371 . Add ` distinct_id ` to group_identify
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ def test_metadata(mock_client):
335335 first_call_props = first_call_args ["properties" ]
336336 assert first_call_args ["event" ] == "$ai_generation"
337337 assert first_call_props ["$ai_trace_id" ] == "test-trace-id"
338- assert first_call_props ["$ foo" ] == "bar"
338+ assert first_call_props ["foo" ] == "bar"
339339 assert first_call_props ["$ai_input" ] == [{"role" : "user" , "content" : "Foo" }]
340340 assert first_call_props ["$ai_output" ] == {"choices" : [{"role" : "assistant" , "content" : "Bar" }]}
341341 assert first_call_props ["$ai_http_status" ] == 200
@@ -422,7 +422,7 @@ def test_openai_chain(mock_client):
422422 assert first_call_props ["$ai_trace_id" ] == "test-trace-id"
423423 assert first_call_props ["$ai_provider" ] == "openai"
424424 assert first_call_props ["$ai_model" ] == "gpt-4o-mini"
425- assert first_call_props ["$ foo" ] == "bar"
425+ assert first_call_props ["foo" ] == "bar"
426426
427427 # langchain-openai for langchain v3
428428 if "max_completion_tokens" in first_call_props ["$ai_model_parameters" ]:
Original file line number Diff line number Diff line change 1- VERSION = "3.7.5 "
1+ VERSION = "3.8.0 "
22
33if __name__ == "__main__" :
44 print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments