Back to Openvino

Getting Started

docs/articles_en/physical-ai/getting-started/README.md

2026.2.1672 B
Original Source

Getting Started

{toctree}
:hidden:
:maxdepth: 1

installation
quickstart
run-a-policy

This section contains short tutorials for the first successful Physical AI workflows.

  1. Installation
  2. Quickstart
  3. Run a Policy

Minimal Path

bash
pip install physicalai
python
from physicalai.inference import InferenceModel

model = InferenceModel.load("./exports/act_policy")
model.reset()
action = model.select_action(observation)

Use Python when you need direct control over objects. Use YAML and the CLI when you need a reproducible run that can be shared or repeated.