zh-211
Results
1
comments of
zh-211
> 现在部分解决了问题,在使用openai库调用时, response = await self.client.chat.completions.create( model="gpt-3.5-turbo", messages=messages, tool_choice="required", tools=available_tools, temperature=0 ) 添加了tool_choice="required",这是必须要选择最少一个tools。这样tool_calls就有值了。 你好,这样确实tool_calls有值了,但是finish_reason仍然是stop,请问你有关注到这一点吗