HTML 77.2%
TypeScript 10.5%
Python 9.6%
JavaScript 2.5%
1"""Extraction schemas (pydantic) — the contract between documents and the knowledge graph. Used by the LLM factory and by2deterministic extractors alike; every field is optional because absence of evidence must stay absence."""3from aiatlas.schemas.extraction import (4 TASKS,5 BenchmarkResultExtraction,6 CompanyPassport,7 DocumentClassification,8 HardwareSpec,9 ModelPassport,10 PaperPassport,11 PricingExtraction,12 ReleaseAnnouncement,13 schema_for,14)1516__all__ = ["TASKS", "BenchmarkResultExtraction", "CompanyPassport", "DocumentClassification", "HardwareSpec", "ModelPassport", "PaperPassport",17 "PricingExtraction", "ReleaseAnnouncement", "schema_for"]18