coze智能体后端接入问题:

是否一定要按照coze官方API文档格式调用?

不一定:以下面代码为例(给了注释)

python 复制代码
@app.route('/compare_models', methods=['POST'])
def compare_models():

    print("收到 compare_models 请求!")
#begin-这一部分代码作用:从前端接收参数  也就是前端输入的数据通过按钮发送
    data = request.json
    model1 = data.get('model1', '')
    model2 = data.get('model2', '')
    scene = data.get('scene', '')
    budget = data.get('budget', '')
    requirement = data.get('requirement', '')
#end-
    user_message = (
        f"请帮我综合对比两个大模型,并结合参数给出推荐和详细分析:\n"
        f"模型一:{model1}\n"
        f"模型二:{model2}\n"
        f"应用场景:{scene}\n"
        f"预算:{budget}元\n"
        f"性能要求:{requirement}\n"
        "请说明理由,逐条对比优劣,最后推荐一个更合适的模型,并说明推荐理由。请用自然语言详细分点方式直接文本回复,不要以插件或JSON结构返回,不要只给出总结。"
    )
    #begin- 构造Coze官方API所需的请求体(官方API调用文档:https://www.coze.cn/open/docs/developer_guides/chat)
    headers = {
        'Authorization': f'Bearer {COZE_API_KEY}',
        'Content-Type': 'application/json'
    }
    payload = {
        'bot_id': COZE_BOT_ID,
        'user': 'user_001',
        'query': user_message
    }
    #end-

    #begin- 用 requests转发到 Coze官方API
    response = requests.post(COZE_API_URL, headers=headers, json=payload)
    data = response.json()
    #end-

    #begin- 解析官方API的返回结果
    messages = data.get("messages", [])
    #end-

    print("COZE messages:", messages)

    collected_chunks = []
    final_reply = ""
    for msg in messages:
        raw_content = msg.get("content", "")
        try:
            parsed_outer = json.loads(raw_content)
            msg_type = parsed_outer.get("msg_type", "")
            inner_data_str = parsed_outer.get("data", "")
            if msg_type != "knowledge_recall":
                final_reply = parsed_outer.get("content", raw_content)
                break
            else:
                if inner_data_str:
                    parsed_inner = json.loads(inner_data_str)
                    chunks = parsed_inner.get("chunks", [])
                    if isinstance(chunks, list) and len(chunks) > 0:
                        for chunk in chunks:
                            collected_chunks.append(chunk.get("content", ""))
        except (ValueError, json.JSONDecodeError):
            final_reply = raw_content
            break

    if not final_reply and collected_chunks:
        final_reply = "".join(collected_chunks)
    if not final_reply:
        final_reply = "对不起,暂时无法获取有效回复。"

    # 结构化内容处理
    try:
        parsed = json.loads(final_reply)
        if isinstance(parsed, dict):
            if 'arguments' in parsed and 'keyword' in parsed['arguments']:
                final_reply = parsed['arguments']['keyword']
            elif 'content' in parsed:
                final_reply = parsed['content']
            else:
                final_reply = json.dumps(parsed, ensure_ascii=False, indent=2)
    except Exception:
        pass

    # 统一做文本清理
    final_reply = re.sub(r'(\^*来源[::]?.*?\^*)', '', final_reply, flags=re.IGNORECASE)
    final_reply = final_reply.strip()
    return jsonify({'reply': final_reply})
相关推荐
BBB努力学习程序设计18 小时前
Python面向对象编程:从代码搬运工到架构师
python·pycharm
BBB努力学习程序设计18 小时前
Python错误处理艺术:从崩溃到优雅恢复的蜕变
python·pycharm
今天没有盐19 小时前
Python算法实战:从滑动窗口到数学可视化
python·pycharm·编程语言
ohyeah21 小时前
用 Coze 打造你的教育智能客服:从想法到前端集成的完整实践
前端·coze·trae
艾莉丝努力练剑1 天前
【Python基础:语法第一课】Python 基础语法详解:变量、类型、动态特性与运算符实战,构建完整的编程基础认知体系
大数据·人工智能·爬虫·python·pycharm·编辑器
2022.11.7始学前端1 天前
第十八课 小红书笔记 + 自动创建的飞书多维表
飞书·coze
c***87192 天前
Flask:后端框架使用
后端·python·flask
weixin_377634842 天前
【Git使用】PyCharm中的Git使用
ide·git·pycharm
Q_Q5110082852 天前
python+django/flask的情绪宣泄系统
spring boot·python·pycharm·django·flask·node.js·php
sniper_fandc2 天前
Coze智能体实现人生模拟器
python·ai·agent·coze