GPT-2 に基づいて Web アプリケーションをコーディングしていましたが、うまくいかなかったため、公式の 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"
}
しかし、テキストのみを印刷したいので、応答リストに「テキスト」値を印刷するにはどうすればよいですか。よろしくお願いします。良い一日を。