426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
151 lines
5.1 KiB
Python
151 lines
5.1 KiB
Python
"""Command helper for running App Eval coding workspaces through agents."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import argparse
|
|
import json
|
|
import os
|
|
import sys
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
|
|
def _repo_root() -> Path:
|
|
current = Path(__file__).resolve()
|
|
for parent in current.parents:
|
|
if (parent / "packages" / "benchmarks" / "eliza-adapter").exists():
|
|
return parent
|
|
raise FileNotFoundError("Could not locate repository root from App Eval agent command")
|
|
|
|
|
|
def _add_adapter_paths() -> Path:
|
|
root = _repo_root()
|
|
for relative in (
|
|
"packages/benchmarks/eliza-adapter",
|
|
"packages/benchmarks/hermes-adapter",
|
|
"packages/benchmarks/openclaw-adapter",
|
|
"packages",
|
|
):
|
|
path = str(root / relative)
|
|
if path not in sys.path:
|
|
sys.path.insert(0, path)
|
|
return root
|
|
|
|
|
|
def _write_json(path: Path, data: dict[str, Any]) -> None:
|
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
path.write_text(json.dumps(data, indent=2, sort_keys=True), encoding="utf-8")
|
|
|
|
|
|
def _read_text(path: str) -> str:
|
|
return Path(path).read_text(encoding="utf-8")
|
|
|
|
|
|
def build_prompt(*, prompt_path: str, workspace: str) -> str:
|
|
prompt = _read_text(prompt_path)
|
|
return "\n\n".join(
|
|
[
|
|
"You are running an App Eval coding benchmark task.",
|
|
f"Repository workspace: {workspace}",
|
|
"Modify files in that workspace until the requested implementation is complete.",
|
|
"Do not edit files outside the workspace. Leave tests and source files on disk.",
|
|
prompt,
|
|
]
|
|
)
|
|
|
|
|
|
def parse_args(argv: list[str] | None = None) -> argparse.Namespace:
|
|
parser = argparse.ArgumentParser(description="Run an App Eval coding task through a benchmark agent.")
|
|
parser.add_argument("--adapter", required=True, choices=["elizaos", "opencode"])
|
|
parser.add_argument("--workspace", required=True)
|
|
parser.add_argument("--prompt", required=True)
|
|
parser.add_argument("--task", required=True)
|
|
parser.add_argument("--provider", default="cerebras")
|
|
parser.add_argument("--model", default="gemma-4-31b")
|
|
parser.add_argument("--timeout-seconds", type=int, default=7200)
|
|
parser.add_argument("--dry-run", action="store_true")
|
|
parser.add_argument("--result-json", required=True)
|
|
return parser.parse_args(argv)
|
|
|
|
|
|
def main(argv: list[str] | None = None) -> int:
|
|
args = parse_args(argv)
|
|
workspace = Path(args.workspace)
|
|
workspace.mkdir(parents=True, exist_ok=True)
|
|
prompt = build_prompt(prompt_path=args.prompt, workspace=str(workspace))
|
|
result_json = Path(args.result_json)
|
|
metadata: dict[str, Any] = {
|
|
"adapter": args.adapter,
|
|
"benchmark": "app_eval_coding",
|
|
"task": args.task,
|
|
"workspace": str(workspace),
|
|
"prompt": args.prompt,
|
|
"provider": args.provider,
|
|
"model": args.model,
|
|
"prompt_chars": len(prompt),
|
|
"dry_run": bool(args.dry_run),
|
|
}
|
|
if args.dry_run:
|
|
_write_json(result_json, {**metadata, "status": "dry_run"})
|
|
return 0
|
|
|
|
root = _add_adapter_paths()
|
|
os.environ["BENCHMARK_TASK_AGENT"] = args.adapter
|
|
os.environ["BENCHMARK_MODEL_PROVIDER"] = args.provider
|
|
os.environ["BENCHMARK_MODEL_NAME"] = args.model
|
|
os.environ.setdefault("ELIZA_AGENT_ORCHESTRATOR", "1")
|
|
os.environ.setdefault("ELIZA_AGENT_SELECTION_STRATEGY", "fixed")
|
|
os.environ.setdefault("ELIZA_ACP_DEFAULT_AGENT", args.adapter)
|
|
os.environ.setdefault("ELIZA_DEFAULT_AGENT_TYPE", args.adapter)
|
|
os.environ.setdefault("ELIZA_BENCH_HTTP_TIMEOUT", str(args.timeout_seconds))
|
|
os.environ.setdefault("ELIZA_BENCH_START_TIMEOUT", "300")
|
|
|
|
from eliza_adapter import ElizaServerManager # type: ignore
|
|
|
|
manager = ElizaServerManager(timeout=300.0, repo_root=root)
|
|
try:
|
|
manager.start()
|
|
manager.client.reset(task_id=args.task, benchmark="app_eval_coding")
|
|
response = manager.client.send_message(
|
|
prompt,
|
|
context={
|
|
"benchmark": "app_eval_coding",
|
|
"task_id": args.task,
|
|
"workspace": str(workspace),
|
|
"prompt_path": args.prompt,
|
|
"system_prompt": (
|
|
"You are an autonomous coding benchmark agent. Use the provided "
|
|
"workspace as the repository root, edit files there, and run tests "
|
|
"when useful before reporting completion."
|
|
),
|
|
},
|
|
)
|
|
_write_json(
|
|
result_json,
|
|
{
|
|
**metadata,
|
|
"status": "completed",
|
|
"response_text": response.text,
|
|
"actions": response.actions,
|
|
"metadata": response.metadata,
|
|
"usage": response.params.get("usage", {}),
|
|
},
|
|
)
|
|
return 0
|
|
except Exception as exc:
|
|
_write_json(
|
|
result_json,
|
|
{
|
|
**metadata,
|
|
"status": "error",
|
|
"error": f"{type(exc).__name__}: {exc}",
|
|
},
|
|
)
|
|
return 1
|
|
finally:
|
|
manager.stop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|