* Upgrade LLM model from GPT-4.1 to GPT-5.2 * Switch noise cancellation to ai-coustics QUAIL_VF_L
46 lines
974 B
TOML
46 lines
974 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "agent-starter-python"
|
|
version = "1.0.0"
|
|
description = "Simple voice AI assistant built with LiveKit Agents for Python"
|
|
requires-python = ">=3.10, <3.15"
|
|
|
|
dependencies = [
|
|
"livekit-agents[silero,turn-detector]~=1.4",
|
|
"livekit-plugins-ai-coustics",
|
|
"livekit-plugins-noise-cancellation~=0.2",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
"ruff",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py39"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "N", "B", "A", "C4", "UP", "SIM", "RUF"]
|
|
ignore = ["E501"] # Line too long (handled by formatter)
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|