We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337f7da commit 2717744Copy full SHA for 2717744
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 3.14.3 - 2025-02-23
2
+
3
+1. Fix async client support for OpenAI.
4
5
## 3.14.2 - 2025-02-19
6
7
1. Evaluate feature flag payloads with case sensitivity correctly. Fixes <https://github.com/PostHog/posthog-python/issues/178>
posthog/ai/openai/openai_async.py
@@ -73,6 +73,8 @@ async def create(
73
"openai",
74
posthog_trace_id,
75
posthog_properties,
76
+ posthog_privacy_mode,
77
+ posthog_groups,
78
self._client.base_url,
79
super().create,
80
**kwargs,
posthog/version.py
@@ -1,4 +1,4 @@
-VERSION = "3.14.2"
+VERSION = "3.14.3"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
0 commit comments