如何获取请求响应中的字符串内容?
How to get th content of a string inside a request response?
我正在编写一个基于 GPT-2 的网络应用程序,但它并不好,所以我决定切换到官方 OpenAI GPT-3。
所以我提出这个要求:
response = openai.Completion.create(
engine="davinci",
prompt="Hello",
temperature=0.7,
max_tokens=64,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)
当我打印响应时,我得到了这个:
{
"choices": [
{
"finish_reason": "length",
"index": 0,
"logprobs": null,
"text": ", everyone, and welcome to the first installment of the new opening"
}
],
"created": 1624033807,
"id": "cmpl-3CBfb8yZAFEUIVXfZO90m77dgd9V4",
"model": "davinci:2020-05-03",
"object": "text_completion"
}
但我只想打印文本,那么如何打印响应列表中的“文本”值。
提前谢谢你,祝你有美好的一天。
使用dict按键索引,list索引索引
x = {"choices": [{"finish_reason": "length",
"text": ", everyone, and welcome to the first installment of the new opening"}], }
text = x['choices'][0]['text']
print(text) # , everyone, and welcome to the first installment of the new opening
我正在编写一个基于 GPT-2 的网络应用程序,但它并不好,所以我决定切换到官方 OpenAI GPT-3。 所以我提出这个要求:
response = openai.Completion.create(
engine="davinci",
prompt="Hello",
temperature=0.7,
max_tokens=64,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)
当我打印响应时,我得到了这个:
{
"choices": [
{
"finish_reason": "length",
"index": 0,
"logprobs": null,
"text": ", everyone, and welcome to the first installment of the new opening"
}
],
"created": 1624033807,
"id": "cmpl-3CBfb8yZAFEUIVXfZO90m77dgd9V4",
"model": "davinci:2020-05-03",
"object": "text_completion"
}
但我只想打印文本,那么如何打印响应列表中的“文本”值。 提前谢谢你,祝你有美好的一天。
使用dict按键索引,list索引索引
x = {"choices": [{"finish_reason": "length",
"text": ", everyone, and welcome to the first installment of the new opening"}], }
text = x['choices'][0]['text']
print(text) # , everyone, and welcome to the first installment of the new opening