glm-5.2-visual-runtime / apps /api /pyproject.toml
wassemgtk's picture
Add gateway API source for one-click deployment
092fd7d verified
Raw
History Blame Contribute Delete
575 Bytes
[project]
name = "glm-vvr-api"
version = "0.1.0"
description = "OpenAI-compatible GLM visual variable runtime gateway"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"pydantic>=2.8",
"pydantic-settings>=2.4",
"python-multipart>=0.0.9",
"httpx>=0.27",
"pillow>=10.4",
"numpy>=2.0",
"opencv-python-headless>=4.10",
"sqlalchemy>=2.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.3",
"pytest-asyncio>=0.23",
"openai>=1.55",
]
[tool.pytest.ini_options]
testpaths = ["../../tests"]
pythonpath = ["."]