IniziaInizia gratis

Your first OpenAI API request!

To preview what’s ahead, the Python code for sending a request to the OpenAI API is ready for you.

Pass any question or instruction to the content argument and see how OpenAI's model responds!


Here are a few prompts to try if you're struggling for ideas:

  • Why is learning the OpenAI API valuable for developers?
  • Suggest three tasks I could automate with the OpenAI API in my job.
  • In two sentences, how can the OpenAI API be used to upskill myself?

Questo esercizio fa parte del corso

Working with the OpenAI API

Visualizza il corso

Istruzioni dell'esercizio

  • Enter your prompt replacing INSERT YOUR PROMPT HERE, experiment, and submit your answer when ready!

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

response = client.chat.completions.create(
    model="gpt-4o-mini",
    max_completion_tokens=100,
  
    # Enter your prompt
    messages=[{"role": "user", "content": "INSERT YOUR PROMPT HERE"}]
)

print(response.choices[0].message.content)
Modifica ed esegui il codice