Lightweight reporting SDK for evo experiments. Zero dependencies.
Project description
evo-hq-agent (Python SDK)
Lightweight reporting SDK for evo experiments. Zero dependencies, Python 3.10+.
Mirrors the @evo-hq/evo-agent Node SDK surface: Run for per-task logging + scoring, Gate for safety checks with exit codes.
Install
pip install evo-hq-agent
Install name and import name differ (same pattern as python-dateutil / dateutil):
from evo_agent import Run, Gate
Usage
Benchmark (Run)
from evo_agent import Run
with Run() as run:
for task in tasks:
run.log(task["id"], "starting task")
result = evaluate(task)
run.log(task["id"], {"output": result.output})
run.report(
task["id"],
score=result.score,
summary=f"reward={result.score:.2f}",
failure_reason=None if result.passed else "task_failed",
)
# finish() called automatically on __exit__:
# - prints score JSON to stdout (the contract evo reads)
# - per-task trace files were written to $EVO_TRACES_DIR as each report() ran
Gate
from evo_agent import Gate
with Gate() as gate:
for task in critical_tasks:
result = evaluate(task)
gate.check(task["id"], score=result.score, detail=f"reward={result.score:.2f}")
# exits 0 if all passed, 1 otherwise
Environment
EVO_TRACES_DIRdirectory wheretask_<id>.jsonfiles are written (set byevo run)EVO_EXPERIMENT_IDexperiment label embedded in each trace
Both are set automatically when the evo CLI spawns your benchmark. Missing vars are tolerated -- traces are just skipped.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file evo_hq_agent-0.3.3.tar.gz.
File metadata
- Download URL: evo_hq_agent-0.3.3.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42c4facdf6bac69bbcfceb088dd41aae8aca7686eb8ea7176cc0d2d40a4f534a
|
|
| MD5 |
c8d4b7db752ddf4499eec6e38e58e902
|
|
| BLAKE2b-256 |
39a51deb1ff728d298d487fba44f1277a97f9c74dcf4d37b21df09bacd260597
|
File details
Details for the file evo_hq_agent-0.3.3-py3-none-any.whl.
File metadata
- Download URL: evo_hq_agent-0.3.3-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92094edd16ad759819e6d8b4b34f3774d9b50e00c504200a160d4c4df2089a67
|
|
| MD5 |
f2215154896e45561cb2190a9048c953
|
|
| BLAKE2b-256 |
38a1d6a6546c347cd8d7f9849212ac044141a3754aaf27e388148e3279403c46
|