戳戳猫的小窝
更新日志
关于
## 1 创建OpenAI客户端 ```python client = OpenAI( api_key=os.getenv("OPENAI_API_KEY"), base_url="https://api.siliconflow.cn/v1", ) ``` ## 2 开启流式传输 ```python stream = client.chat.completions.create( model="Qwen/Qwen2.5-7B-Instruct", messages=[ {"role": "system", "content": "你是一个优秀的助手。"}, {"role": "user", "content": "你好,我叫李雷,1+1等于多少?"} ], temperature=0.3, stream=True, ) ``` 在创建对话时,我们添加了一个属性: ```python stream=True ``` 这个属性表示开启流式传输。 ## 3 循环访问块 ```python # 当启用流式输出模式(stream=True),SDK 返回的内容也发生了变化,我们不再直接访问返回值中的 choice # 而是通过 for 循环逐个访问返回值中每个单独的块(chunk) for chunk in stream: # 在这里,每个 chunk 的结构都与之前的 completion 相似,但 message 字段被替换成了 delta 字段 delta = chunk.choices[0].delta # <-- message 字段被替换成了 delta 字段 if delta.content: # 我们在打印内容时,由于是流式输出,为了保证句子的连贯性,我们不人为地添加 # 换行符,因此通过设置 end="" 来取消 print 自带的换行符。 print(delta.content, end="") ``` 结果如下: ``` 地球的自转周期是24小时,也就是我们通常所说的一天。这是地球完成一次自转所需的时间。 ``` 结果的内容不重要,重要的是结果的显示方式,它不是一次性将所有内容显示出来,而是一个字或多个字蹦出来。这就是流式输出。 ### 4 使用Apifox访问 代码如下: ```json { "model": "Qwen/Qwen2.5-7B-Instruct", "messages": [ { "role": "system", "content": "你是一个优秀的助手" }, { "role": "user", "content": "地球的自转周期是多少?" } ], "stream": true } ``` 结果如下: ```json data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"","reasoning_content":null,"role":"assistant"},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":0,"total_tokens":24}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"地球","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":1,"total_tokens":25}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"的","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":2,"total_tokens":26}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"自","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":3,"total_tokens":27}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"转","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":4,"total_tokens":28}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"周期","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":5,"total_tokens":29}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"大约","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":6,"total_tokens":30}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"是","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":7,"total_tokens":31}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"2","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":8,"total_tokens":32}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"4","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":9,"total_tokens":33}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"小时","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":10,"total_tokens":34}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":11,"total_tokens":35}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"这","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":12,"total_tokens":36}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"也就是","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":13,"total_tokens":37}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"我们","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":14,"total_tokens":38}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"通常","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":15,"total_tokens":39}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"所说","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":16,"total_tokens":40}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"的一","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":17,"total_tokens":41}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"天","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":18,"total_tokens":42}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"。","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":19,"total_tokens":43}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"更","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":20,"total_tokens":44}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"精确","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":21,"total_tokens":45}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"地","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":22,"total_tokens":46}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":23,"total_tokens":47}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"地球","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":24,"total_tokens":48}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"完成","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":25,"total_tokens":49}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"一次","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":26,"total_tokens":50}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"自","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":27,"total_tokens":51}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"转","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":28,"total_tokens":52}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"的","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":29,"total_tokens":53}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"周期","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":30,"total_tokens":54}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"大约","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":31,"total_tokens":55}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"是","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":32,"total_tokens":56}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"2","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":33,"total_tokens":57}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"3","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":34,"total_tokens":58}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"小时","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":35,"total_tokens":59}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"5","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":36,"total_tokens":60}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"6","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":37,"total_tokens":61}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"分钟","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":38,"total_tokens":62}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"4","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":39,"total_tokens":63}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"秒","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":40,"total_tokens":64}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":41,"total_tokens":65}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"这","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":42,"total_tokens":66}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"被称为","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":43,"total_tokens":67}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"一个","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":44,"total_tokens":68}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"恒","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":45,"total_tokens":69}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"星","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":46,"total_tokens":70}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"日","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":47,"total_tokens":71}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"。","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":48,"total_tokens":72}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"而","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":49,"total_tokens":73}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"我们","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":50,"total_tokens":74}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"日常","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":51,"total_tokens":75}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"生活中","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":52,"total_tokens":76}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"使用","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":53,"total_tokens":77}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"的时间","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":54,"total_tokens":78}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"单位","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":55,"total_tokens":79}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":56,"total_tokens":80}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"即","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":57,"total_tokens":81}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"一个","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":58,"total_tokens":82}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"太阳","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":59,"total_tokens":83}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"日","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":60,"total_tokens":84}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":61,"total_tokens":85}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"大约","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":62,"total_tokens":86}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"是","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":63,"total_tokens":87}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"2","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":64,"total_tokens":88}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"4","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":65,"total_tokens":89}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"小时","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":66,"total_tokens":90}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":",","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":67,"total_tokens":91}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"这个","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":68,"total_tokens":92}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"时间","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":69,"total_tokens":93}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"周期","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":70,"total_tokens":94}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"是","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":71,"total_tokens":95}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"地球","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":72,"total_tokens":96}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"相对于","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":73,"total_tokens":97}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"太阳","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":74,"total_tokens":98}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"的位置","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":75,"total_tokens":99}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"周期","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":76,"total_tokens":100}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"。","reasoning_content":null},"finish_reason":null}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":77,"total_tokens":101}} data: {"id":"0195c3235bd31a3db0d61247f27d1b8d","object":"chat.completion.chunk","created":1742735629,"model":"Qwen/Qwen2.5-7B-Instruct","choices":[{"index":0,"delta":{"content":"","reasoning_content":null},"finish_reason":"stop"}],"system_fingerprint":"","usage":{"prompt_tokens":24,"completion_tokens":77,"total_tokens":101}} data: [DONE] ``` 从结果可以看出,返回的结果分成一份一份的返回给客户端。
使用 Stream 流式输出