File size: 424 Bytes
20ab5a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Version metadata for finir-intent (the Hugging Face workstream package)."""
from __future__ import annotations
__version__ = "0.1.0"
# The FinIR Intent Contract schema version this baseline emits.
INTENT_SCHEMA_VERSION = "1.0"
# The FinIR core runtime compatibility range this baseline was built against
# (must match docs/huggingface-intent-handoff.md in the finir repo).
FINIR_RUNTIME_COMPATIBLE = ">=0.1.0,<0.2.0"
|