physicalai-runtime-configuring-inference-pipeline
Installation
SKILL.md
Configuring the Inference Pipeline
Pipeline order: observation → preprocessors → runner → postprocessors → action output. See docs/how-to/inference/configure-pre-post-processing.md.
Core code:
src/physicalai/inference/component_factory.py—ComponentRegistry,instantiate_component,_MAX_COMPONENT_DEPTH.src/physicalai/inference/model.py— builds processor chains from manifest specs.- Built-ins under
preprocessors/andpostprocessors/; runners underrunners/.
Workflow
- Read the manifest slice for
preprocessors,postprocessors, andmodel.runner.- Done when: you know whether specs use
type(registry short name) orclass_path.
- Done when: you know whether specs use
- Prefer
typefor built-ins registered incomponent_factory(e.g. normalize/denormalize patterns in docs). - Use
class_path+init_argsfor explicit classes: