Compare commits

...
2 Commits
Author SHA1 Message Date
Georgiy TarasovandGitHub 78ab0ca8b5 fix(llm-observability): include the ai packages (#162)
* fix: setuptools

* fix: include packages
2025-01-14 10:27:05 +01:00
Peter KirkhamandGitHub c5bfc1377a fix: update to export module (#161) 2025-01-14 01:25:00 +00:00
4 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -1,4 +1,8 @@
## 3.8.0 - 2025-01-14
## 3.8.2 - 2025-01-14
1. Fix setuptools to include the `posthog.ai.openai` and `posthog.ai.langchain` packages.
## 3.8.1 - 2025-01-14
1. Add LLM Observability with support for OpenAI and Langchain callbacks.
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION = "3.8.0"
VERSION = "3.8.2"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
+3
View File
@@ -58,6 +58,9 @@ setup(
test_suite="posthog.test.all",
packages=[
"posthog",
"posthog.ai",
"posthog.ai.langchain",
"posthog.ai.openai",
"posthog.test",
"posthog.sentry",
"posthog.exception_integrations",
+1
View File
@@ -29,6 +29,7 @@ setup(
test_suite="posthoganalytics.test.all",
packages=[
"posthoganalytics",
"posthoganalytics.ai",
"posthoganalytics.test",
"posthoganalytics.sentry",
"posthoganalytics.exception_integrations",