coze如何对文档智能总结 coze创建知识库 上传文件到知识库 通过对话总结知识库文档 详细接口

1.首先创建一个智能体,发布,勾选api;获取智能体id;获取授权信息

参考文档:https://docs.coze.cn/developer_guides/preparation

2.接口

说明:所有接口请求头都需要传授权信息

2.1.创建知识库

接口:https://api.coze.cn/v1/datasets

请求参数示例:

复制代码
{
    "name": "产品文档",
    "description": "产品文档",
    "space_id": "7524871304085356583",
    "format_type": 2

}

2.2创建知识库文件

接口:https://api.coze.cn/open_api/knowledge/document/create

请求头必须传:Agw-Js-Conv:str

请求参数示例:

复制代码
{
    "dataset_id": "7617756792320131107",
    "format_type": 0,
    "document_bases": [
        {
            "name": "测试担保有限公司.docx",
            "source_info": {
                "file_base64": "xxx",
                "file_type": "docx"
            }
        }
    ],
    "chunk_strategy": {
        "separator": "\n\n",
        "max_tokens": 800,
        "remove_extra_spaces": false,
        "remove_urls_emails": false,
        "chunk_type": 1
    }
}

响应示例:

复制代码
{
    "code": 0,
    "detail": {
        "logid": "20260316194941189A72C5ABD4DBC2BAC2"
    },
    "document_infos": [
        {
            "char_count": 0,
            "chunk_strategy": {},
            "create_time": 0,
            "document_id": "xxx",
            "document_id_new": "xxx",
            "format_type": 0,
            "hit_count": 0,
            "name": "测试担xxx.docx",
            "size": 0,
            "slice_count": 0,
            "source_type": 0,
            "status": 0,
            "type": "",
            "update_interval": 0,
            "update_time": 0,
            "update_type": 0
        }
    ],
    "msg": ""
}

2.3发起对话

接口路径:https://api.coze.cn/v3/chat

请求参数示例:

复制代码
{
    "bot_id": "7617473388323356698", 
    "user_id": "1", 
    "stream": false,
    "auto_save_history": true, 
    "additional_messages": [ 
        {
            "role": "user",
            "content": "总结知识库中《xxx.docx》的核心内容,结构为:文档主题+核心要点3点+关键结论,分点清晰", 
            "content_type": "text",
            "type": "question" 
        }
    ]
}

响应示例:

复制代码
{
    "data": {
        "id": "7617814329392857114",
        "conversation_id": "7617814329392807962",
        "bot_id": "7617473388323356698",
        "created_at": 1773660614,
        "last_error": {
            "code": 0,
            "msg": ""
        },
        "status": "in_progress"
    },
    "code": 0,
    "msg": ""
}

2.4查看对话消息详情

接口路径:https://api.coze.cn/v3/chat/message/list?conversation_id=7xxx&chat_id=xxx

响应结果示例:

复制代码
{
    "code": 0,
    "data": [
        {
            "bot_id": "7617473388323356698",
            "chat_id": "7617813593530138662",
            "content": "xxx",
            "content_type": "text",
            "conversation_id": "7617813593530105894",
            "created_at": 1773660443,
            "id": "7617813594654244910",
            "reasoning_content": "用户让我总结《测试x.docx》的核心内容,x",
            "role": "assistant",
            "type": "answer",
            "updated_at": 1773660461
        },
        {
            "bot_id": "7617473388323356698",
            "chat_id": "7617813593530138662",
            "content": "{\"msg_type\":\"generate_answer_finish\",\"data\":\"{\\\"finish_reason\\\":0,\\\"FinData\\\":\\\"\\\"}\",\"from_module\":null,\"from_unit\":null}",
            "content_type": "text",
            "conversation_id": "7617813593530105894",
            "created_at": 1773660464,
            "id": "7617813684799078446",
            "role": "assistant",
            "type": "verbose",
            "updated_at": 1773660463
        },
        {
            "bot_id": "7617473388323356698",
            "chat_id": "7617813593530138662",
            "content": "文档中提到的"xxx体是怎样运作的?",
            "content_type": "text",
            "conversation_id": "7617813593530105894",
            "created_at": 1773660464,
            "id": "7617813684799143982",
            "role": "assistant",
            "type": "follow_up",
            "updated_at": 1773660463
        },
        {
            "bot_id": "7617473388323356698",
            "chat_id": "7617813593530138662",
            "content": "xxx对行业有何影响?",
            "content_type": "text",
            "conversation_id": "7617813593530105894",
            "created_at": 1773660464,
            "id": "7617813684799160366",
            "role": "assistant",
            "type": "follow_up",
            "updated_at": 1773660463
        },
        {
            "bot_id": "7617473388323356698",
            "chat_id": "7617813593530138662",
            "content": "休闲鞋体系?",
            "content_type": "text",
            "conversation_id": "7617813593530105894",
            "created_at": 1773660464,
            "id": "7617813684799176750",
            "role": "assistant",
            "type": "follow_up",
            "updated_at": 1773660463
        }
    ],
    "detail": {
        "logid": "20260316192801EBDBDE5E6EA875F0BB6E"
    },
    "msg": ""
}
相关推荐
带娃的IT创业者11 小时前
Kimi-K3 开源背后:2.8 万亿参数的“暴力美学”与智能体的新拐点
人工智能·开源·大模型·智能体·开源模型·kimi-k3·moonshot ai
阿图灵20 小时前
Agentic AI 架构入门(三):Agent 的七大组件与 PRAL 循环
人工智能·架构·llm·rag·ai agent·智能体·agentic ai
落子AI1 天前
智谱GLM-4.5编程智能体深度实测:355B MoE架构如何重塑AI编程体验
大模型·ai编程·智能体·glm-4.5·ai工具推荐
安逸sgr2 天前
AI 编程工具在真实项目中适合做什么?不适合做什么?
人工智能·ai·大模型·agent·智能体
吾AI科技2 天前
Agent的诞生(三):Skill —— 让模型掌握处理复杂流程的能力
ai·agent·智能体
FIT2CLOUD飞致云2 天前
修复安全漏洞及相关问题,MaxKB开源企业级智能体平台v2.10.5 LTS版本发布
人工智能·ai·开源·智能体·maxkb
中间件XL2 天前
ai-agent框架spring ai/alibaba 原理源码分析(十)沙箱
沙箱·ai agent·智能体·spring ai·spring ai graph
数据分析小兵3 天前
金融数据分类分级实战系列一:行业标准JR/T 0197深度解读
数据治理·数据安全·数据分类分级·ai大模型·数据质量·数据中台·智能体
thesky1234563 天前
智能体面试准备(十八):Function Calling 全链路——Agent 真正动手的最后一公里
函数调用·智能体·工具调用·functioncalling·面试准备
cxr8283 天前
第四章 查询与推理能力
人工智能·架构·知识图谱·智能体