-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (24 loc) · 914 Bytes
/
__init__.py
File metadata and controls
26 lines (24 loc) · 914 Bytes
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
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# --------------------------------------------------------------------------
"""OpenAI-compatible clients for chat completions and audio transcription."""
from .chat_client import ChatClient, ChatClientSettings
from .audio_client import AudioClient
from .live_audio_transcription_client import LiveAudioTranscriptionSession
from .live_audio_transcription_types import (
CoreErrorResponse,
LiveAudioTranscriptionOptions,
LiveAudioTranscriptionResponse,
TranscriptionContentPart,
)
__all__ = [
"AudioClient",
"ChatClient",
"ChatClientSettings",
"CoreErrorResponse",
"LiveAudioTranscriptionOptions",
"LiveAudioTranscriptionResponse",
"LiveAudioTranscriptionSession",
"TranscriptionContentPart",
]