Initial commit of LLM speed test app

This commit is contained in:
2026-09-06 11:45:52 +08:00
commit 5544b5f9f9
38 changed files with 8587 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""大模型速度测试助手 - 启动入口
用法:
python run.py
启动后访问 http://localhost:8000
"""
from backend.server import main # noqa: E402
if __name__ == "__main__":
main()