需要从文本键获取数据一直在尝试它不起作用并给出错误:list indices must be integers or slice, not strresp = json.loads(str(result)) resp['choices']['text] JSON:{ "choices": [ { "finason": "stop", "index": 0, "logprobs": null, "text": "hihihiii" } ], "created": 1595021770, "id": "cmp pvu4OUC5Qbh4C", "model": " 2020-05-03", "object": "tex tion"}
1 回答
DIEA
TA贡献1820条经验 获得超2个赞
resp['choices']是一个列表,所以你需要整数索引来访问它的元素:
resp = json.loads(str(result))
resp['choices'][0]['text']
添加回答
举报
0/150
提交
取消