首页 > 其他分享 >OpenAI Function Call大模型调用单个多个agent案例

OpenAI Function Call大模型调用单个多个agent案例

时间:2024-08-04 15:58:35浏览次数:14  
标签:Function chat deepseek messages agent blog Call https

参考:
https://platform.deepseek.com/api-docs/zh-cn/function_calling
https://blog.csdn.net/qq_31095905/article/details/139143778
https://blog.csdn.net/jacbo/article/details/136278619
##官方案例
https://cookbook.openai.com/examples/how_to_call_functions_with_chat_models

1、单agent

代码:

这里大模型用的deepseek测试

from openai import OpenAI
import json


def send_messages(messages):
    response = client.chat.completions.create(
        model="deepseek-coder",
        messages

标签:Function,chat,deepseek,messages,agent,blog,Call,https
From: https://blog.csdn.net/weixin_42357472/article/details/140891660

相关文章

  • TypeError: ‘dict’ object is not callable 深度解析
    TypeError:‘dict’objectisnotcallable深度解析在Python编程中,TypeError:'dict'objectisnotcallable是一个常见的错误,通常发生在尝试调用一个字典对象时。这个错误表明代码中存在逻辑错误,可能是将字典误用为函数或方法。本文将深入探讨这一错误的常见原因,并提......
  • AI科普:探索人工智能体(Agent)的世界
    前言近来,人工智能(AI)正在逐渐融入我们生活的各个角落。而在AI领域中,一个核心概念就是“人工智能体”(Agent)。那么,究竟什么是人工智能体?它们如何工作?又将在未来扮演怎样的角色呢?接下来,让我们一起探索这个神奇的世界!人工智能体简介智能体(Agent):它是一种能够自主行动、与......
  • SDN(Software-Defined Networking,软件定义网络),NFV(Network Functions Virtualization,网
    目录SDN(Software-DefinedNetworking,软件定义网络)NFV(NetworkFunctionsVirtualization,网络功能虚拟化)SDN(软件定义网络)NFV(网络功能虚拟化)SDN的优势NFV的优势DC(数据中心)网关与MEC(移动边缘计算)节点DC网关MEC节点DC网关与MEC节点的协同作用SDN(Software-DefinedNet......
  • WPF C# implement scaletransform and translatetransfrom programmatically
    privatevoidInitRenderTransfrom(){TransformGrouptg=newTransformGroup();ScaleTransformst=newScaleTransform();if(!tg.Children.Contains(st)){tg.Children.Add(st);scaler=st;}TranslateTransformtt=n......
  • 函数function2、栈
    目录设计函数函数调用的关系递归栈内存的5个区域数组作为函数参数设计函数能拆成函数的尽量拆成函数函数设计时尽可能考虑健壮性和拓展性,代码鲁棒性(健壮性)最强越好函数调用的关系调用者        被调用者intmain(void){printf("%d",getMonthdays(......
  • 让C++通过JNI来callback回调kotlin侧代码
    kotlin一次通过jni调用C++侧,然后C++侧多次回传数据让C++通过JNI来callback回调kotlin侧代码1.定义Kotlin接口在Kotlin中定义一个用于接收C++回调的接口:interfaceDataCallback{funonDataReceived(data:String)}2.定义C++侧的JNI方法在C++侧,实现接收指令和......
  • [Typescript] Excess Properties in Functions
    interfaceUser{id:number;name:string;}constusers=[{name:'Waqas',},{name:'Zain',},];constusersWithIds:User[]=users.map((user,index)=>({...user,id:index,//@ts-expect-error......
  • c++function bind包装器详解
    包装器function包装器function包装器也叫适配器,c++中的function本质是一个类模板,也是一个包装器,那么为什么需要包装器呢。template<classF,classT>TuseF(Ff,Tx){staticintcount=0;cout<<"count:"<<++count<<endl;cout<<"count:&q......
  • 生成式 AI 的发展方向:Chat 还是 Agent?
    ......
  • Python - Functional programming
    Functionalprogrammingisaprogrammingparadigminwhichmostoftheworkinaprogramisdoneusingpurefunctions.Apurefunctionisafunctionwithoutanysideeffects;itsreturnvalueisalwaysdeterminedbyitsinputarguments,soitalwaysreturn......