近来
chatGPT
挺火的,也试玩了一下,确实挺有意思。这里记录一下在Python
中如何去使用chatGPT
。
本篇文章的实现100%基于 chatGPT
,我是搬运工无疑了!!!
本片文章比较简单,下一篇基于本文章来写一个可以回复微信消息的操作!尽请期待。
pip install openai
看看 chatGPT
的表现:
使用python编写一段发送网络请求的代码
也有抽风的表现:
首先注册一个openai
的账号,网上教程多的很,这里不做赘述。
然后来到 chatGPT:https://chat.openai.com/chat 对 chatGPT
进行提问。
问: 如何在python中使用chatGPT?
回答的非常清晰,告诉我们先安装 openai
模块,然后在代码中替换自己账号申请的密钥。
问:如何获取 OpenAI网上的API密钥?
至此,再去申请一个自己账号的API密钥即可。
在这份代码中,我们只需要将前面申请的密钥填写进去就可以在Python
中使用 chatGPT
了。
import openai
# Set your API key
openai.api_key = "YOUR_API_KEY"
# Use the GPT-3 model
completion = openai.Completion.create(
engine="text-davinci-002",
prompt="Once upon a time, in a land far, far away, there was a princess who...",
max_tokens=1024,
temperature=0.5
)
# Print the generated text
print(completion.choices[0].text)
本次分享到此结束~
see you