1# Copyright 2024 Deepgram SDK contributors. All Rights Reserved.
2# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
3# SPDX-License-Identifier: MIT
4
5from .client import SpeakRESTClient
6from .async_client import AsyncSpeakRESTClient
7from .response import SpeakRESTResponse
8from .options import (
9 #### top level
10 SpeakRESTOptions,
11 SpeakOptions,
12 # common
13 TextSource,
14 BufferSource,
15 StreamSource,
16 FileSource,
17 # unique
18 SpeakSource,
19 SpeakRestSource,
20 SpeakRESTSource,
21)