Skip to content

Commit 2717744

Browse files
committed
fix: async client
1 parent 337f7da commit 2717744

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.14.3 - 2025-02-23
2+
3+
1. Fix async client support for OpenAI.
4+
15
## 3.14.2 - 2025-02-19
26

37
1. Evaluate feature flag payloads with case sensitivity correctly. Fixes <https://github.com/PostHog/posthog-python/issues/178>

posthog/ai/openai/openai_async.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ async def create(
7373
"openai",
7474
posthog_trace_id,
7575
posthog_properties,
76+
posthog_privacy_mode,
77+
posthog_groups,
7678
self._client.base_url,
7779
super().create,
7880
**kwargs,

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.14.2"
1+
VERSION = "3.14.3"
22

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

0 commit comments

Comments
 (0)