| 18 | |
| 19 | |
| 20 | class ExtractConfig(BaseModel): |
| 21 | mode: str | None = None |
| 22 | model: str | None = None |
| 23 | overwrite: bool = False |
| 24 | filter_db: list[str] = [] |
| 25 | drop: bool = False |
| 26 | jobs: int = 1 |
| 27 | batch_size: int | None = None |
| 28 | debug: bool = False |
| 29 | small_only: bool = False |
| 30 | large_only: bool = False |
| 31 | |
| 32 | |
| 33 | class ExtractSummary(BaseModel): |
no outgoing calls