@FanxKJev 开放了,结果我用它做了两百道驾考题 中发帖

1. 测试方法
各取科目一和科目四题目一百道纯文本题目,请求 /v1/systemone 
请求 
{
  "state": { "question": "……", "options": ["A. 正确", "B. 错误"] },
  "model": "jev-latest",
  "questions": {
    "decision": {
      "type": "choice",
      "instructions": "……从给定标签中选出唯一正确项",
      "criteria": { "A": "……", "B": "……" }
    }
  }
}


响应 
{
  "model": "jev-1.13.0",
  "answers": { "decision": { "choice": "A", "confidence": 0.98,
       ...
 
 
Back to Top