ResumePAL / simplEapp.py
Alexander Hux
Rename simple.txt to simplEapp.py
7624756
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)