#Free tier usage

1 messages · Page 1 of 1 (latest)

fresh yarrow
#

Im new with the api so im trying to generate some things, but i get an error saying that "billing hard limit has been reached", do i need to add a payment method to use the free tier? heres the code im trying with:

from openai import OpenAI
import webbrowser

client = OpenAI(api_key = "")

response = client.images.generate(
  model="dall-e-3",
  prompt="a cute cat with a hat on",
  size="1024x1024",
  quality="standard",
  n=1,
)

webbrowser.open(response.data[0].url)
fresh yarrow
broken fulcrum
fresh yarrow
#

Ohh now I understand xd, ty, I thought free tier was that I had some tokens to try

broken fulcrum