个人项目
  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
https://faas.gankao.com/paper-info/extract/chat

请求参数

Header 参数

Body 参数application/json

示例
{
    "list": [
        {
            "from_user": "A",
            "to_user": "B",
            "content": "你好啊",
            "contentType": "text"
        },
        {
            "from_user": "B",
            "to_user": "A",
            "content": "你好",
            "contentType": "text"
        },
        {
            "from_user": "A",
            "to_user": "B",
            "content": "你今天去哪里玩了呢",
            "contentType": "text"
        }
    ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://faas.gankao.com/paper-info/extract/chat' \
--header 'secret-key: 593E88E9-A643-40F5-ABBD-28B9DF2643E9' \
--header 'Content-Type: application/json' \
--data-raw '{
    "list": [
        {
            "from_user": "A",
            "to_user": "B",
            "content": "你好啊",
            "contentType": "text"
        },
        {
            "from_user": "B",
            "to_user": "A",
            "content": "你好",
            "contentType": "text"
        },
        {
            "from_user": "A",
            "to_user": "B",
            "content": "你今天去哪里玩了呢",
            "contentType": "text"
        }
    ]
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "result": {
        "data": "string",
        "success": true
    },
    "err": null
}
修改于 2024-09-19 09:33:50
上一页
文档内容提取
下一页
运行工作流
Built with