近来chatGPT挺火的,也试玩了一下,确实挺有意思。这里记录一下在Python中如何去使用chatGPT。

第一步:申请apikey
打开网址chat.openai.com注册、登录获取apikey,具体流程自行百度
第二步:新建chatGPT.py文件,并输入以下代码

import openai

# 填写你的apikey
openai.api_key = "YOUR_API_KEY"

completion = openai.Completion.create(
    engine="text-davinci-002",
    prompt="此处填写你想输入的内容",
    max_tokens=1024,
    temperature=0.5
)
# 输入返回结果
print(completion.choices[0].text)

第三步:安装openai

pip install openai

第四步:运行程序

python chatGPT.py

第五步:运行结果截图