Skip to content

Commit 190c628

Browse files
authored
feat(llm-observability): add new packages for posthoganalytics (#163)
1 parent 78ab0ca commit 190c628

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.8.3 - 2025-01-14
2+
3+
1. Fix setuptools to include the `posthog.ai.openai` and `posthog.ai.langchain` packages for the `posthoganalytics` package.
4+
15
## 3.8.2 - 2025-01-14
26

37
1. Fix setuptools to include the `posthog.ai.openai` and `posthog.ai.langchain` packages.

posthog/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.8.2"
1+
VERSION = "3.8.3"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

setup_analytics.py

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
packages=[
3131
"posthoganalytics",
3232
"posthoganalytics.ai",
33+
"posthoganalytics.ai.langchain",
34+
"posthoganalytics.ai.openai",
3335
"posthoganalytics.test",
3436
"posthoganalytics.sentry",
3537
"posthoganalytics.exception_integrations",
@@ -59,5 +61,8 @@
5961
"Programming Language :: Python :: 3.6",
6062
"Programming Language :: Python :: 3.7",
6163
"Programming Language :: Python :: 3.8",
64+
"Programming Language :: Python :: 3.9",
65+
"Programming Language :: Python :: 3.10",
66+
"Programming Language :: Python :: 3.11",
6267
],
6368
)

0 commit comments

Comments
 (0)