cs-ai-sakura-dev / src /__test__.py
lifedebugger's picture
Deploy files from GitHub repository
05269f9
from tests.rtc_test import test_rtc
import warnings
warnings.filterwarnings("ignore")
import asyncio
def run_test():
try:
# await test_document_retriever()
# await test_qwen_llm()
# asyncio.run(test_inference())
test_rtc()
except Exception as e:
print(e)
run_test()