Compare commits

...
1 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
3 changed files with 7 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
## 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.1"
VERSION = "3.8.2"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
+2
View File
@@ -59,6 +59,8 @@ setup(
packages=[
"posthog",
"posthog.ai",
"posthog.ai.langchain",
"posthog.ai.openai",
"posthog.test",
"posthog.sentry",
"posthog.exception_integrations",