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
+16
View File
@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "llm_speed_test_app"
version = "2.0.0"
description = "大模型速度测试助手 (Ollama)"
requires-python = ">=3.9"
dependencies = ["requests>=2.31"]
[project.scripts]
llm-speed-test = "backend.server:main"
[tool.setuptools.packages.find]
include = ["backend*"]