OPENAI 聊天機器人

2022/12/10閱讀時間約 2 分鐘

安裝Python

安裝Open Ai

pip install openai
註冊申請 Open AI API
官方網站申請為會員,接著選 View API Key
進入後 選擇 Create
CHAT 範例
import os
import openai

openai.api_key = os.getenv("OPENAI_API_KEY")

response = openai.Completion.create(
model="text-davinci-003",
prompt="The following is a conversation with an AI assistant. The assistant is helpful, creative, clever, and very friendly.\n\nHuman: Hello, who are you?\nAI: I am an AI created by OpenAI. How can I help you today?\nHuman: I'd like to cancel my subscription.\nAI:",
temperature=0.9,
max_tokens=150,
top_p=1,
frequency_penalty=0.0,
presence_penalty=0.6,
stop=[" Human:", " AI:"]
)

中文CHAT

import openai
openai.api_key = "OPENAI_API_KEY"
response = openai.Completion.create(
  model="text-davinci-003",
  prompt="\nHuman: 寫一篇小說\nAI:",
  temperature=0.9,
  max_tokens=150,
  top_p=1,
  frequency_penalty=0.0,
  presence_penalty=0.6,
  stop=[" Human:", " AI:"]
)
print(response["choices"][0]["text"])
為什麼會看到廣告
38會員
129內容數
獨立遊戲開發紀錄
留言0
查看全部
發表第一個留言支持創作者!