2 Star 0 Fork 2

刘煜/办公脚本

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
chatgpt.py 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘煜 提交于 2023-03-02 22:31 +08:00 . 更新chatgpt api
#API: https://platform.openai.com/docs/api-reference/chat
import requests
apikey = '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'
url = 'https://api.openai.com/v1/chat/completions'
headers = {
'Authorization': 'Bearer ' + apikey,
'Content-Type': 'application/json',
}
while True:
user_input = input('User: ')
data = {
'model': 'gpt-3.5-turbo',
'messages': [{'role': 'user', 'content': user_input}],
}
response = requests.post(url, headers=headers, json=data).json()
print("ChatGPT: " + response["choices"][0]["message"]["content"])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tinytaro/office-script.git
git@gitee.com:tinytaro/office-script.git
tinytaro
office-script
办公脚本
master

搜索帮助