V4.1 revisions in preparation for v4.2. AI data capture now better defined.

This commit is contained in:
Jim Lancaster
2026-08-12 18:51:48 -05:00
parent 89cf69f8a2
commit 171132919d
15 changed files with 944 additions and 11 deletions
+4
View File
@@ -86,6 +86,8 @@ async def seed_job(app_client: tuple[FastAPI, TestClient]) -> Callable[..., Awai
error_detail: str | None = None,
revision_text: str | None = None,
source_file: Path | None = None,
ai_metadata: dict | None = None,
raw_api_response: dict | None = None,
) -> UUID:
async with session_scope() as session:
stored_path = app.state.settings.upload_dir / filename
@@ -130,6 +132,8 @@ async def seed_job(app_client: tuple[FastAPI, TestClient]) -> Callable[..., Awai
),
raw_transcription=transcription_text,
error_detail=error_detail,
ai_metadata=ai_metadata,
raw_api_response=raw_api_response,
)
)