Commit 91c93374 authored by Jan Reimes's avatar Jan Reimes
Browse files

feat(ai): add --skip-existing option for workspace process

Allows skipping extraction for artifact types that already exist in the .ai folder,
enabling resumed extraction without re-processing everything.
parent e249a4ce
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -105,6 +105,13 @@ WorkspaceProcessVlmOption = Annotated[
        envvar=ConfigEnvVar.TDC_AI_VLM.name,
    ),
]
WorkspaceProcessSkipExistingOption = Annotated[
    bool,
    typer.Option(
        "--skip-existing",
        help="Skip extraction for components that already exist in .ai folder",
    ),
]
ExtractionProfileOption = Annotated[
    str | None,
    typer.Option(