15 lines
284 B
Python
15 lines
284 B
Python
#
|
||
# Copyright (c) 2024–2025, Daily
|
||
#
|
||
# SPDX-License-Identifier: BSD 2-Clause License
|
||
#
|
||
|
||
import sys
|
||
|
||
from pipecat.services import DeprecatedModuleProxy
|
||
|
||
from .stt import *
|
||
from .tts import *
|
||
|
||
sys.modules[__name__] = DeprecatedModuleProxy(globals(), "deepgram", "deepgram.[stt,tts]")
|