25 lines
624 B
TOML
25 lines
624 B
TOML
[project]
|
|
name = "intelligent-cabin-agent"
|
|
version = "0.1.0"
|
|
description = "High-response agent service for customer service, aftersales, front desk, and intelligent cabin."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0,<1.0.0",
|
|
"uvicorn[standard]>=0.30.0,<1.0.0",
|
|
"pydantic>=2.8.0,<3.0.0",
|
|
"pydantic-settings>=2.3.0,<3.0.0",
|
|
"PyYAML>=6.0.2,<7.0.0",
|
|
"torch>=2.11.0,<3.0.0",
|
|
"transformers>=4.57.0,<5.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|