MCPcopy Create free account
hub / github.com/LLMQuant/quant-mind / ExtractionRef

Class ExtractionRef

quantmind/knowledge/_base.py:55–63  ·  view source on GitHub ↗

Records which flow + model produced this knowledge item.

Source from the content-addressed store, hash-verified

53 fetched_at: datetime | None = None
54 content_hash: str | None = None # sha256 of fetched bytes; dedup key.
55
56
57class 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

Callers 4

_extFunction · 0.90
test_minimalMethod · 0.90

Calls

no outgoing calls

Tested by 4

_extFunction · 0.72
test_minimalMethod · 0.72