是什么ChatGPT?
ChatGPT 是由 OpenAI 开发的一个语言模型。OpenAI 是一家领先的人工智能研究机构。ChatGPT 基于变换器架构,使用深度学习生成会话风格的文本。该模型在大量文本数据上进行训练,并可以针对特定任务进行微调。例如,它可以用于生成问答对话、对话生成、文本摘要等等。 ------ 以上回答来自ChatGPT
如何调用ChatGPT接口
那要如何通过python来调用ChatGPT接口呢?
很简单,直接问ChatGPT就好了。
以下是ChatGPT的回答,还给出了示例代码。
在这里插入图片描述
使用python调用ChatGPT分为以下几个步骤:
- 1. 电脑要有访问国外网站的能力, 这是前提
- 2. 注册openai账户
- 3. 获取一个api key, 链接:https://platform.openai.com/account/api-keys
- 4. python 安装openai插件
pip install openai
- 5. 复制上述代码
import openai
# Apply the API key
openai.api_key = "YOUR_API_KEY_HERE"
# Define the text prompt
prompt = "In a shocking turn of events, scientists have discovered that "
# Generate completions using the API
completions = openai.Completion.create(
engine="text-davinci-002",
prompt=prompt,
max_tokens=100,
n=1,
stop=None,
temperature=0.5,
)
# Extract the message from the API response
message = completions.choices[0].text
print(message)
- 1. 通过python 运行上面代码。
- 2. 得到了ChatGPT的回答
the universe is expanding at an accelerating rate
这样就完成了通过python调用ChatGPT接口,是不是很简单。这只是最基本的接口调用, 大家也可以通过这个接口,将ChatGPT集成到你的上位机或者APP上面。也可以写一个简单的交互界面,进行封装一下,自己做一个聊天交互工具。