1 Star 0 Fork 2

Stephen Zhao/chatGPT-serveice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
chatGPT.py 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhaoqihui 提交于 2023-02-08 14:13 . initial commit
import os
import openai
# 需要输入一个openai官方提供的key秘钥
# 可以自行去官网生成这key
openai.api_key = "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"
def chatGPT(start_sequence: str) -> str:
prompt = start_sequence
try:
response = openai.Completion.create(
model = "text-davinci-003",
prompt = prompt,
temperature = 1,
# 回答的文字长度
max_tokens = 2000,
frequency_penalty = 0,
presence_penalty = 0
)
return response["choices"][0]["text"].strip()
except Exception as e:
return str(e)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhao-qihuihui/chat-gpt-serveice.git
git@gitee.com:zhao-qihuihui/chat-gpt-serveice.git
zhao-qihuihui
chat-gpt-serveice
chatGPT-serveice
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385