17 lines
344 B
TOML
17 lines
344 B
TOML
[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"
|