pip install openai
import openai
api_key = "你的 API 金鑰"
openai.api_key = api_key
response = openai.Completion.create(
model="text-davinci-003", #要使用的模型
prompt="hi chatgpt", #要輸入的對話
temperature=0.9, #多樣性,0-1
max_tokens=150, #最大單字數,主要跟費用有關
)
print(response.choices[0].text)