import os
import requests
payload = {
"text_prompt": "Generate an image that illustrates the vision statement: Here is a vision statement for the next 3 years of your life that aims to push, stretch and inspire you to think boldly while staying true to your core values and beliefs:\n\nOver the next 3 years, I will courageously step into my disarming presence as a catalyst for transformation. I will create immersive experiences that awaken souls and unlock human potential. Through adventurous journeys into the wilderness and the depths within, I will guide others to shed limiting beliefs and discover their authentic callings.\n\nMy faith will be the compass, but the paths will be uncharted. I will exemplify radical trust by venturing into the unknown, embracing uncertainty as a spark for innovation. Humbly seeking wisdom from all walks of life, I will weave diverse perspectives into a vibrant tapestry of possibilities.\n\nIn expanding the horizons of what's possible, I will be a beacon of hope - inspiring dreamers to become doers, turning vision into reality. My legacy will ripple through the lives I touch, igniting a movement of purposeful living that impacts generations to come.\n\nThis daring quest will refine my soul and reveal my life's masterpiece. By remaining open, I will allow the greatest expression of my gifts to emerge. Through joyful discipline and a spirit of adventure, I will ascend to new heights of personal mastery and self-actualization.\n\nLet this be the chapter where I shatter self-imposed limitations, illuminate the extraordinary amid the ordinary, and bear witness to the profound transformation possible when we fully embrace our ideals. I will live as a demonstration that prioritizing love over fear catalyzes undreamt of positive change.\n",
"selected_models": [
"dream_shaper",
"dreamlike_2",
"sd_2",
"dall_e_3",
"openjourney_2",
"analog_diffusion",
"protogen_5_3",
],
}
response = requests.post(
"https://api.gooey.ai/v2/CompareText2Img?example_id=kwk73kgb0es9",
headers={
"Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
},
json=payload,
)
assert response.ok, response.content
result = response.json()
print(response.status_code, result)