get-results

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Get Simulation Results

获取模拟结果

Retrieve results for
$ARGUMENTS
.
检索
$ARGUMENTS
对应的结果。

Workflow

工作流程

If Run ID Provided

若提供了运行ID

List all simulations for the run:
bash
coval simulations list --run-id <run_id> --format json
列出该运行下的所有模拟:
bash
coval simulations list --run-id <run_id> --format json

If Simulation ID Provided

若提供了模拟ID

Get detailed simulation data:
bash
coval simulations get <simulation_id> --format json
This returns:
  • Status (COMPLETED, FAILED)
  • Test case ID
  • Transcript (conversation history)
  • Timestamps
  • Error message (if failed)
获取详细的模拟数据:
bash
coval simulations get <simulation_id> --format json
返回内容包括:
  • 状态(COMPLETED、FAILED)
  • 测试用例ID
  • 对话记录(transcript)
  • 时间戳
  • 错误信息(若运行失败)

Step 2: Analyze Results

步骤2:分析结果

For each simulation, extract:
FieldDescription
status
COMPLETED or FAILED
test_case_id
Which test case was run
transcript
Full conversation
has_audio
Whether audio is available
error_message
Failure reason (if any)
针对每个模拟,提取以下信息:
字段描述
status
已完成(COMPLETED)或失败(FAILED)
test_case_id
运行的测试用例
transcript
完整对话内容
has_audio
是否有音频可用
error_message
失败原因(如有)

Step 3: Present Summary

步骤3:呈现总结

undefined
undefined

Results for Run <run_id>

运行<run_id>的结果

SimulationStatusTest CaseAudio
sim_abc123COMPLETEDtc_xyzYes
sim_def456FAILEDtc_uvwNo
模拟ID状态测试用例音频
sim_abc123COMPLETEDtc_xyz
sim_def456FAILEDtc_uvw

Failed Simulations

失败的模拟

  • sim_def456: "Connection timeout"
  • sim_def456: "连接超时"

View Details

查看详情

coval simulations get <sim_id>
coval simulations get <sim_id>

Download Audio

下载音频

coval simulations audio <sim_id> -o output.wav
undefined
coval simulations audio <sim_id> -o output.wav
undefined

Filtering

筛选

List simulations with filters:
bash
coval simulations list --run-id <run_id> --filter "status=FAILED"
coval simulations list --run-id <run_id> --filter "has_audio=true"
使用筛选条件列出模拟:
bash
coval simulations list --run-id <run_id> --filter "status=FAILED"
coval simulations list --run-id <run_id> --filter "has_audio=true"