12 lines
201 B
Python
12 lines
201 B
Python
"""大模型速度测试助手 - 启动入口
|
|
|
|
用法:
|
|
python run.py
|
|
|
|
启动后访问 http://localhost:8000
|
|
"""
|
|
from backend.server import main # noqa: E402
|
|
|
|
if __name__ == "__main__":
|
|
main()
|