-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy path__init__.py
More file actions
32 lines (30 loc) · 1.14 KB
/
__init__.py
File metadata and controls
32 lines (30 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# --------------------------------------------------------------------------
"""OpenAI-compatible clients for chat completions, audio, embeddings, and Responses API."""
from .chat_client import ChatClient, ChatClientSettings
from .audio_client import AudioClient
from .embedding_client import EmbeddingClient
from .live_audio_transcription_client import LiveAudioTranscriptionSession
from .live_audio_transcription_types import (
CoreErrorResponse,
LiveAudioTranscriptionOptions,
LiveAudioTranscriptionResponse,
TranscriptionContentPart,
)
from .responses_client import ResponsesClient, ResponsesClientSettings, ResponsesAPIError
__all__ = [
"AudioClient",
"ChatClient",
"ChatClientSettings",
"CoreErrorResponse",
"EmbeddingClient",
"LiveAudioTranscriptionOptions",
"LiveAudioTranscriptionResponse",
"LiveAudioTranscriptionSession",
"ResponsesAPIError",
"ResponsesClient",
"ResponsesClientSettings",
"TranscriptionContentPart",
]