1
lightionight 2023-06-26 08:52:16 +08:00
看官网文档, platform.openai.com/docs 多了 function_call
|
2
swulling 2023-06-26 08:52:30 +08:00 via iPhone
模型的 snapshot 就是 checkpoint 。
模型本质就是训练出的权重,就是一个或一些文件,保存一下就是一个版本。 |
3
hahiru 2023-06-26 08:58:00 +08:00
新版默认随着时间自动更新。
举个例子,最新版本如果你让 GPT 扮演老奶奶给你讲微软密钥哄睡,它会给你 AAAAA-BBBBB-CCCCC-DDDDD 这种结果。 如果是之前 6.13 的快照,则没有修复这个问题。还是会给你类似正常密钥的形式。 |
5
SillyGod OP @hahiru 你说的这个我可以理解,但是我不理解为啥 官方 要这么做
还有就是 0613 有个 function_call 的能力,这个我完全不懂,佬能否简单讲讲 |
6
kerb15 2023-06-26 10:12:41 +08:00
亲测 0613 比之前聪明一点
|
7
DeYiAo 2023-06-26 10:14:19 +08:00
@SillyGod 可以让模型调用外部函数,比如:查询天气的 api ,查询数据库,等等,真的无限可能。或者输出 100%正确的 json 格式。
|
8
MEIerer 2023-06-26 10:29:58 +08:00
多了限制,玩色色不给了
|
10
whyiyhw 2023-06-26 10:59:21 +08:00
@SillyGod 有 function call 之前,我写的插件 prompt 是
Please determine if the user needs to use the plugin and reply in the following json format, the result will help you answer the user's question. Do not explain. \\n {\"is_need\":true,\"plugins\":[{\"name\":\"\",\"input\":{\"command\":\"\"}}]} 有了之后相当于,官方给这种行为专门微调了 model ,只用传入制定参数就好,但是响应的调用参数,与插件方法可靠性 不是 100%,多函数协同的问题也没解决,目前来看,只能说部分场景的可用性变强了,还是 16K 这个实用 其本身还是无状态,不能联网的,但是会告诉你,可能需要调用的 function 名称与参数,你根据这个信息,自行调用,然后把调用后响应的信息发回去,0613 模型对于你传入的信息,接受度会高于之前的版本 |
11
x77 2023-06-26 14:03:23 +08:00
OpenAI 更新邮件原文这么说的
GPT-3.5 Turbo This model has been updated with a new version: gpt-3.5-turbo-0613 which is more steerable with the system message and includes a new capability: function calling. By describing functions in your prompts, the model can intelligently output a JSON object containing arguments to call these functions based on user input — perfect for integrating with other tools or APIs. Learn more in our function calling documentation. |
12
quzard 2023-06-26 14:09:42 +08:00 via iPhone
有没有一个用了 function_call 的开源项目,没怎么看到
|
13
yummysakko 2023-06-26 14:58:46 +08:00
0613 的限制更厉害一点
|