跳转到主要内容
当 benchmark 的正确性由 judge model 判断或辅助判断时,使用这个模式。建议尽量区分被评测模型和 judge model。

命令

agentcompass run \
  browsecomp \
  researchharness \
  your-model \
  --env <env-provider> \
  --benchmark-params '{
    "sample_ids": ["<task_id>"],
    "judge_model": {
      "id": "judge-model",
      "base_url": "https://judge-endpoint/v1",
      "api_key": "sk-...",
      "api_protocol": "openai-chat",
      "params": {"temperature": 0}
    }
  }' \
  --model-base-url "$MODEL_BASE_URL" \
  --model-api-key "$MODEL_API_KEY"

注意事项

主题建议
Credentials真实 key 使用环境变量或私有 config。
Judge stability除非 benchmark 有特殊要求,否则 judge 参数保持 deterministic。
Cost control先用 sample_ids,再运行完整 split。
Debuggingdetails/*.json 中查看 scoring payload。

相关页面