zzz
Results
2
issues of
zzz
运行代码之后报了下面的错误 `TypeError: openai.types.completion_usage.CompletionUsage() argument after ** must be a mapping, not NoneType` 我从代码中定位到这部分 ```python async for chunk in response: chunk_message = chunk.choices[0].delta.content or "" if chunk.choices else "" # extract...
我在使用示例demo生成代码的时候遇到了`AttributeError: 'NoneType' object has no attribute 'name'`这个报错,查看代码后发现name是self.rc上面的一个属性,请问该属性有什么作用,我该如何修复这个bug