Optiman / 01 chatgpt simple.py
Angel1000's picture
Upload folder using huggingface_hub
d3ebef2
raw
history blame contribute delete
296 Bytes
import openai
openai.api_key = "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"
completion = openai.ChatCompletion.create(model="gpt-3.5-turbo", messages=[{"role": "user", "content": "Give me 3 ideas for apps I could build with openai apis "}])
print(completion.choices[0].message.content)