Skip to content

Commit 5300a48

Browse files
committed
fix: linti
1 parent 495b802 commit 5300a48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

posthog/ai/openai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .openai import OpenAI
22
from .openai_async import AsyncOpenAI
3-
from .openai_providers import AzureOpenAI, AsyncAzureOpenAI
3+
from .openai_providers import AsyncAzureOpenAI, AzureOpenAI
44

55
__all__ = ["OpenAI", "AsyncOpenAI", "AzureOpenAI", "AsyncAzureOpenAI"]

posthog/ai/openai/openai_providers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, posthog_client: PostHogClient, **kwargs):
2323
self.embeddings = WrappedEmbeddings(self)
2424
self.beta = WrappedBeta(self)
2525

26-
26+
2727
class AsyncAzureOpenAI(openai.AsyncAzureOpenAI):
2828
"""
2929
A wrapper around the Azure OpenAI SDK that automatically sends LLM usage events to PostHog.

0 commit comments

Comments
 (0)