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