8 GET endpoints under /api/v1 for health, personas, cases, vector search, juror context, and hybrid search. Includes QueryService composing SubgraphQuery + VectorIndex + GraphDB, Pydantic response models, error handlers, and `serve` CLI mode via uvicorn. 20 new tests, 190 total, zero regressions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
531 B
TOML
24 lines
531 B
TOML
[project]
|
|
name = "aucourt-ingest"
|
|
version = "0.1.0"
|
|
description = "Australian legal case ingestion pipeline"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"beautifulsoup4>=4.12",
|
|
"python-docx>=1.1",
|
|
"pdfminer.six>=20221105",
|
|
"chromadb>=0.4",
|
|
"neo4j>=5.0",
|
|
"aiosqlite>=0.19",
|
|
"anthropic>=0.25",
|
|
"apscheduler>=3.10",
|
|
"fastapi>=0.110",
|
|
"uvicorn[standard]>=0.29",
|
|
]
|
|
|
|
[project.scripts]
|
|
aucourt-ingest = "aucourt_ingest.main:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|