from openai import OpenAIclient = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY")resp = client.images.generate( model="flux-1-schnell", prompt="A white siamese cat", size="1024x1024", n=1, response_format="url", # or "b64_json")print(resp.data) # array of images with url or b64_json