File size: 481 Bytes
b99b9ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """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",
]
|