Records which flow + model produced this knowledge item.
| 53 | fetched_at: datetime | None = None |
| 54 | content_hash: str | None = None # sha256 of fetched bytes; dedup key. |
| 55 | |
| 56 | |
| 57 | class ExtractionRef(BaseModel): |
| 58 | """Records which flow + model produced this knowledge item.""" |
| 59 | |
| 60 | model_config = ConfigDict(extra="forbid", frozen=True) |
| 61 | |
| 62 | flow: str |
| 63 | model: str |
| 64 | run_id: UUID | None = None |
| 65 | extracted_at: datetime |
| 66 |
no outgoing calls