auto-commit-service/pyproject.toml
Lilith 023a134967 fix(core): fix ASGI 'coroutine not callable' error
- Made main() async and properly awaited create_auto_commit_service()
- Changed to manual uvicorn.Server() instead of uvicorn.run() factory mode
- Fixed TypeError that caused 500 errors on all HTTP requests
- Updated llama_service_url default from port 8000 to 8100
- Removed DependencyStartupConfig to avoid lilith-service-addresses dependency

This resolves the critical bug preventing daemon startup and HTTP operations.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 10:48:13 -08:00

40 lines
883 B
TOML

[project]
name = "auto-commit-service"
version = "0.2.0"
description = "Automated commit message generation service using local LLM inference"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lilith-fastapi-service-base>=2.1.0",
"lilith-auto-commit-pipeline>=0.1.0",
"lilith-pipeline-framework>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"uvicorn>=0.30.0",
"typer>=0.12.0",
]
[project.scripts]
commits = "auto_commit_service.cli:main"
[project.optional-dependencies]
model-boss = [
"lilith-model-boss>=0.1.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-httpx>=0.30",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/auto_commit_service"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]