Open Kugaaa opened 5 months ago
Describe the bug 描述bug streaming 下 function call tool_calls index 为 null
To Reproduce 复现方法
Screenshots 截图 返回结构
{ "id": "chatcmpl-9bs8FJY0e9Jfp8gRPNQqHps9AG8Dn", "object": "chat.completion.chunk", "created": 1718813247, "model": "gpt-3.5-turbo-0613", "choices": [ { "index": 0, "delta": { "role": "assistant", "tool_calls": [ { // no index "id": "call_UnVtKL0WOa8iFRgWgrvdf4JY", "type": "function", "function": { "name": "squareRoot", "arguments": "" } } ] }, "logprobs": null, "finish_reason": null } ], "system_fingerprint": null }
Tools or Programming Language 使用的工具或编程语言 Java 17
以上官方文档截图中,tool_calls对象下并没有index字段
猜测您需要的index字段应该在choices字段下,如下图
好的,我再看一下 方便把文档链接发我吗,感谢
https://platform.openai.com/docs/api-reference/chat/object
我是使用的流式
麻烦提高下优先级
抱歉上周比较忙没有时间维护
排查发现确实缺失了Stream下的index参数,我们将在6月26日8:00前通过热补丁修复该问题
Describe the bug 描述bug streaming 下 function call tool_calls index 为 null
To Reproduce 复现方法
Screenshots 截图 返回结构
Tools or Programming Language 使用的工具或编程语言 Java 17