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)
