File size: 314 Bytes
05269f9
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()