个人项目
  1. 批改
个人项目
  • 🦊一分钟,了解 Apifox !
  • 示例项目
    • 查询宠物详情
      GET
    • 新建宠物信息
      POST
    • 修改宠物信息
      PUT
    • 删除宠物信息
      DELETE
    • 根据状态查找宠物列表
      GET
  • zyb
    • 大学搜题
      POST
  • 文档内容提取
    • 文档内容提取
      POST
    • 聊天
      POST
  • dify
    • 运行工作流
      POST
    • 查询工作流运行记录
      GET
    • 运行agent
      POST
    • 获取工作流执行结果
      GET
  • 批改
    • 批量运行批改
      POST
    • 根据批次批量评估批改结果
      POST
    • 查询批改结果
      POST
    • 批量添加题目
      POST
    • 导入批改数据
      POST
    • 报表
      POST
    • 模型ocr
      POST
    • 批量运行模型ocr
      POST
    • 批改单个题目
      POST
    • 批改题库解析题
      POST
  • 小酱去重
    • 查询重复
      POST
  • ai工具
    • 查询agent列表
    • 本地-执行claude code服务
    • 线上-执行claude code服务
    • 运行远程agent
    • 本地-运行远程agent
  • 批阅机
  • 复述控制
    • 设置
    • 查询
  1. 批改

根据批次批量评估批改结果

开发中
POST
http://localhost:7005/correct-question/batch-ai-evaluation

请求参数

Query 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:7005/correct-question/batch-ai-evaluation?batch_id=200'

返回响应

🟢200成功
application/json
Body

示例
{
    "success": true,
    "status": "string",
    "message": "string",
    "results": [
        {
            "pigai_result_id": 0,
            "success": true,
            "ai_evaluation": {
                "total_questions": 0,
                "ocr_correct_count": 0,
                "model_solve_correct_count": 0,
                "grading_correct_count": 0,
                "detailed_analysis": [
                    {
                        "question_index": 0,
                        "ocr_correct": true,
                        "ocr_error_description": "string",
                        "model_solve_correct": true,
                        "model_solve_error_description": "string",
                        "grading_correct": true,
                        "grading_error_description": "string"
                    }
                ]
            }
        }
    ],
    "batch_id": 0
}
修改于 2025-08-12 08:56:31
上一页
批量运行批改
下一页
查询批改结果
Built with