Flying Parrot Over a Pond while Sun is in the sky - AI

Using gpt-5 model , Open AI share this wonderful image....Lovethis one :) from openai import OpenAI import base64 from dotenv import load_dotenv load_dotenv() client = OpenAI() response = client.responses.create( model= "gpt-5" , input= "Generate an image of white parrot flying over a pond while sun is in the sky" , tools=[{ "type" : "image_generation" }], ) # Save the image to a file image_data = [ output.result for output in response.output if output.type == "image_generation_call" ] if image_data: image_base64 = image_data[ 0 ] with open( "fyingparrot.png" , "wb" ) as f: f.write(base64.b64decode(image_base64))