feat: implement AI model API proxy service

This commit is contained in:
2026-03-11 18:22:16 +08:00
commit 26738973bd
33 changed files with 4607 additions and 0 deletions

16
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "zzrouter-backend"
version = "0.1.0"
description = "AI Model API Proxy Service"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.135.1",
"uvicorn[standard]>=0.41.0",
"litellm>=1.50.0",
"aiosqlite>=0.20.0",
"pydantic>=2.0.0",
]
[project.scripts]
zzrouter = "app.main:run_server"