第一次提交

This commit is contained in:
2026-06-29 23:48:53 +08:00
commit 8714fb07c4
13 changed files with 1471 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "simple-chat-api"
version = "0.1.0"
description = "A minimal persistent DeepSeek chat API"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.115.0",
"httpx[socks]>=0.28.0",
"openai>=1.55.0",
"uvicorn[standard]>=0.32.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]