Pratyush-01's picture
7B run: anti-hack reward set + 7B profile
d5f6dbd verified
"""Training utilities for PhysiX-Live.
The ``loop`` submodule pulls in heavy ML deps (torch, unsloth, trl) and is
imported lazily on demand. The lighter prompt + scorer surface is exposed
here so callers without CUDA can still build datasets and score completions.
"""
from physix.training.prompt import (
build_prompt,
parse_completion,
render_observation_for_prompt,
)
__all__ = [
"build_prompt",
"parse_completion",
"render_observation_for_prompt",
]