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 26398fd commit 79547f7Copy full SHA for 79547f7
posthog/ai/openai/openai_providers.py
@@ -5,11 +5,9 @@
5
raise ModuleNotFoundError("Please install the Open AI SDK to use this feature: 'pip install openai'")
6
7
from posthog.ai.openai.openai import WrappedBeta, WrappedChat, WrappedEmbeddings
8
-from posthog.ai.openai.openai_async import (
9
- WrappedBeta as AsyncWrappedBeta,
10
- WrappedChat as AsyncWrappedChat,
11
- WrappedEmbeddings as AsyncWrappedEmbeddings,
12
-)
+from posthog.ai.openai.openai_async import WrappedBeta as AsyncWrappedBeta
+from posthog.ai.openai.openai_async import WrappedChat as AsyncWrappedChat
+from posthog.ai.openai.openai_async import WrappedEmbeddings as AsyncWrappedEmbeddings
13
from posthog.client import Client as PostHogClient
14
15
0 commit comments