Skip to content
Snippets Groups Projects
Commit c859a611 authored by Noah Heuser's avatar Noah Heuser
Browse files

updated grammarParser.py and .gitignore

parent faac264a
No related branches found
No related tags found
No related merge requests found
.env
envGPT/
\ No newline at end of file
import openai
client = openai.OpenAI()
completion = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
]
)
print(completion.choices[0].message.content)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment