</>
Skip to content
AI lessons (36/37)

AI — OpenAI

Setup

pip install openai

Chat Completion

from openai import OpenAI

client = OpenAI(api_key="your-key")
response = client.chat.completions.create(
    model="gpt-3.5-turbo",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)

Embeddings

response = client.embeddings.create(
    model="text-embedding-ada-002",
    input="Hello world"
)

Image Generation

response = client.images.generate(
    model="dall-e-3",
    prompt="A sunset over mountains"
)

Mini Practice

  1. Set up OpenAI API
  2. Try chat completion
  3. Generate embeddings
  4. Create images

Up Next

Continue with Hugging Face — Hugging Face platform.

Related Topics

Frequently Asked Questions about OpenAI

What is OpenAI in AI?

OpenAI is a fundamental concept in AI. This lesson explains it step by step with clear examples, making it easy for beginners to understand.

How do I learn OpenAI?

Start by reading the explanation above, then try the code examples. Practice by modifying the examples and experimenting with different values. Hands-on practice is the best way to learn OpenAI.

Why is OpenAI important in AI?

OpenAI is essential for AI development. Understanding this concept will help you write better code and solve real-world problems more effectively.