第一步:在官网申请api,针对已有openai账号,如果没有账号可自行搜索相关教程
https://platform.openai.com/
右边点“View API keys”
进入api页面,点击“Create new secret key”就能获取api key
第二步:编写调用api的程序
在主程序前,由于是在国内,可能需要设置代理
import os
os.environ["http_proxy"] = "http://127.0.0.1:7890"
os.environ["https_proxy"] = "http://127.0.0.1:7890"
然后是主程序:
先设置你的api-key
openai.api_key="your API-key"
然后创建想发送的message
messages = []
print("I am ready to be your friendly chatbot" + "\n" + "You can now type your messages.")
message = input("")
messages.append({"role":"user","content": message})
调用api发送message获取响应,这里调用gpt-3.5-turbo模型
response=openai.ChatCompletion.create(model="gpt-3.5-turbo",messages=messages
)
reply = response["choices"][0]["message"]["content"]
print(reply)
注意事项:
有可能会报ssl相关错误,这个时候可以将urllib回退版本到1.25.11
这样就完成了,看看运行结果: