| name | setup |
| description | Provisions the oracle ML inference daemon with onnxruntime via uv. Use when setting up local ONNX model inference for skill quality evaluation. |
Oracle Setup
Provision the ML inference environment.
When NOT To Use
- The daemon is already provisioned and only needs to be used
- Evaluating skill quality itself (use
abstract:skills-eval)
What This Does
- Creates a Python 3.11+ virtual environment using uv
- Installs onnxruntime into the venv
- Verifies the installation
Prerequisites
- uv must be installed
- Internet connection for initial download
Steps
- Run provisioning:
cd plugins/oracle && uv run python -c "
from oracle.provision import provision_venv, get_venv_path
result = provision_venv(get_venv_path())
print(result.message)
"
- Report result to the user.
- If successful, tell the user the daemon will start on next session.
- If failed, show the error and suggest checking uv and network.
Exit Criteria