当前位置:首页 > 编程 > 正文

python chatgpt 模板

import openai

# 设置 API Key
openai.api_key = "xxL"

# 设置请求参数
model_engine = "text-davinci-003"
prompt = "熊姓有哪些好听的名字"

completions = openai.Completion.create(
    engine=model_engine,
    prompt=prompt,
    max_tokens=1024,
    n=1,
    stop=None,
    temperature=0.5,
)

# 获取 ChatGPT 的回复
message = completions.choices[0].text
print(message)


发表评论