mit einem Klick
python-bootstrap
// Install Python dependencies before running verification or test steps. Choose the correct path depending on whether the agent builds OpenVINO from source or not.
// Install Python dependencies before running verification or test steps. Choose the correct path depending on whether the agent builds OpenVINO from source or not.
Adds a core operator to the OpenVINO toolkit. Use when asked to implement a new operation into OpenVINO.
Add a new operation to the OpenVINO CPU plugin — node registration, JIT/oneDNN executors (AVX2/AVX-512/AMX), and functional tests.
Adds a new operation to OpenVINO Frontend pipelines with translator updates, registration, and tests.
Adds a new OpenVINO fusion transformation (subgraph to one or several operations) and corresponding tests.
Add a new operation to the OpenVINO GPU plugin — OpenCL kernel design, oneDNN-backed paths, sub-group/LWS tuning, and functional tests.
Analyze a HuggingFace model and attempt OpenVINO conversion — probe properties, run strategy matrix, classify failures, and produce a structured routing report.
| name | python-bootstrap |
| description | Install Python dependencies before running verification or test steps. Choose the correct path depending on whether the agent builds OpenVINO from source or not. |
Install packages only when they are actually needed for a step. Do not pre-install everything upfront.
Use this path when the agent does not compile OpenVINO from source.
The openvino release wheel provides the runtime needed for tests and
conversion checks.
pip install openvino optimum-intel torch \
--extra-index-url https://download.pytorch.org/whl/cpu
For frontend agents that also need ONNX or TensorFlow:
pip install onnx onnxruntime
pip install tensorflow # only if testing TF frontend
Use this path when the agent builds OpenVINO from source.
Do NOT
pip install openvinowhen a source build is present in the same environment. Installing the release wheel alongside a dev build creates twoopenvinopackages that shadow each other, producing confusing import errors and incorrect test results.
Install only the packages that are not produced by the OV build:
pip install torch \
--extra-index-url https://download.pytorch.org/whl/cpu
pip install optimum-intel pytest
# Do NOT add 'openvino' here — use the build output instead
After building OpenVINO, add the build's Python bindings to the path:
# Point Python at the locally built openvino package
export PYTHONPATH="<build_dir>/src/bindings/python:$PYTHONPATH"
# or install the wheel produced by the build
pip install <build_dir>/wheels/openvino-*.whl
agent-results/<agent>/session.md
and continue — do not abort the entire pipeline over a missing optional dep.