File size: 838 Bytes
b99b9ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | """PhysiX-Live: OpenEnv environment for iterative equation discovery.
Public API:
- :class:`PhysiXEnv`: the OpenEnv client (HTTP/WebSocket).
- :class:`PhysiXAction`, :class:`PhysiXObservation`, :class:`PhysiXState`:
the env's wire-protocol Pydantic models.
- :class:`RewardBreakdown`: 4-component reward record.
- :data:`GRAMMAR_HINT`: machine-generated DSL description for the LLM
system prompt (single source of truth: :mod:`physix.verifier.parser`).
"""
from physix.client import PhysiXEnv
from physix.models import (
PhysiXAction,
PhysiXObservation,
PhysiXState,
RewardBreakdown,
)
from physix.verifier.parser import GRAMMAR_HINT
__version__ = "0.1.0"
__all__ = [
"PhysiXEnv",
"PhysiXAction",
"PhysiXObservation",
"PhysiXState",
"RewardBreakdown",
"GRAMMAR_HINT",
"__version__",
]
|