get-results
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGet Simulation Results
获取模拟结果
Retrieve results for .
$ARGUMENTS检索对应的结果。
$ARGUMENTSWorkflow
工作流程
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 jsonIf Simulation ID Provided
若提供了模拟ID
Get detailed simulation data:
bash
coval simulations get <simulation_id> --format jsonThis 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:
| Field | Description |
|---|---|
| COMPLETED or FAILED |
| Which test case was run |
| Full conversation |
| Whether audio is available |
| Failure reason (if any) |
针对每个模拟,提取以下信息:
| 字段 | 描述 |
|---|---|
| 已完成(COMPLETED)或失败(FAILED) |
| 运行的测试用例 |
| 完整对话内容 |
| 是否有音频可用 |
| 失败原因(如有) |
Step 3: Present Summary
步骤3:呈现总结
undefinedundefinedResults for Run <run_id>
运行<run_id>的结果
| Simulation | Status | Test Case | Audio |
|---|---|---|---|
| sim_abc123 | COMPLETED | tc_xyz | Yes |
| sim_def456 | FAILED | tc_uvw | No |
| 模拟ID | 状态 | 测试用例 | 音频 |
|---|---|---|---|
| sim_abc123 | COMPLETED | tc_xyz | 是 |
| sim_def456 | FAILED | tc_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.wavundefinedcoval simulations audio <sim_id> -o output.wavundefinedFiltering
筛选
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"