import gradio as gr from gradio_client import Client import os import logging # 로깅 설정 logging.basicConfig(level=logging.INFO) # API 클라이언트 설정 api_client = Client("http://211.233.58.202:7960/") def respond(message): if message.endswith(('.png', '.jpg', '.jpeg', '.webp')): return message, message # 프롬프트와 이미지 파일명 반환 logging.info("Received message: %s", message) try: # 이미지 생성 요청 result = api_client.predict( prompt=message, seed=123, randomize_seed=False, width=1024, height=576, guidance_scale=5, num_inference_steps=28, api_name="/infer_t2i" ) logging.info("API response received: %s", result) # 결과 확인 및 처리 if isinstance(result, dict) and 'url' in result: return message, result['url'] elif isinstance(result, tuple): logging.error("Unexpected tuple response: %s", result) return message, result[0] else: raise ValueError("Unexpected API response format") except Exception as e: logging.error("Error during API request: %s", str(e)) return message, "Failed to generate image due to an error." css = """ footer { visibility: hidden; } """ # 이미지 생성을 위한 예제 프롬프트 examples = [ ["A glamorous young woman with long, wavy blonde hair and smokey eye makeup, posing in a luxury hotel room. She’s wearing a sparkly gold cocktail dress and holding up a white card with 'openfree.ai' written on it in elegant calligraphy. Soft, warm lighting creates a luxurious atmosphere. ", "q1.webp"], ["A fit male fitness influencer with short dark hair and stubble, standing shirtless in a modern gym. He has defined abs and arm muscles, and is holding a protein shake in one hand and a card that says 'openfree.ai' in the other. Bright, clean lighting highlights his physique.", "q2.webp"], ["A bohemian-style female travel blogger with sun-kissed skin and messy beach waves, sitting on a tropical beach at sunset. She’s wearing a flowy white sundress and holding up a weathered postcard with 'openfree.ai' scrawled on it. Golden hour lighting bathes the scene in warm tones. ", "q3.webp"], ["A trendy male fashion influencer with perfectly styled hair and designer stubble, posing on a city street. He’s wearing a tailored suit and holding up a sleek black business card with 'openfree.ai' printed in minimalist white font. The background shows blurred city lights, creating a chic urban atmosphere.", "q4.webp"], ["A fresh-faced young female beauty guru with freckles and natural makeup, sitting at a vanity covered in cosmetics. She’s wearing a pastel pink robe and holding up a makeup palette with 'openfree.ai' written on it in lipstick. Soft, flattering lighting enhances her radiant complexion. ", "q5.webp"], ["A stylish young woman with long, wavy ombre hair and winged eyeliner, posing in front of a neon-lit city skyline at night. She’s wearing a sleek black leather jacket over a sparkly crop top and holding up a holographic business card that says 'openfree.ai' in futuristic font. The card reflects the colorful neon lights, creating a cyberpunk aesthetic.", "q6.webp"], ["Create a surreal advertisement poster for a fictional time travel agency. The background should depict a swirling vortex of clock faces and historical landmarks from different eras. In the foreground, place large, bold text that reads “AI TOURS: YOUR PAST IS OUR FUTURE” in a retro-futuristic font. The text should appear to be partially disintegrating into particles that are being sucked into the time vortex. Include smaller text at the bottom with fictional pricing and the slogan “History is just a ticket away!”", "q7.webp"], ["Photo realistic scene inspired by LOTR: [A tiny red dragon sleeps curled up in a nest on a medieval wizard's table]. Shot with a macro lens (f/2.8, 50mm) and a Canon EOSR5, the soft focus captures [the cozy morning light filtering through a near by window]. The pastel colors and whimsical steam shapes enhance the serene atmosphere, evoking a DnD RPG setting. The image is rendered in 16K and 8K, highlighting [the intricate details and medieval charm].", "q8.webp"], ["썬글라스를 착용한 귀여운 강아지가 'Openfree.ai'라고 쓰여진 표지판을 들고있다.", "q9.webp"], ["미레적인 도시의 해지는 풍경", "q10.webp"], ["빨간색 박스에 'openfree.ai'라고 글씨가 쓰여있고, 그위에 강아지와 고양이가 앉아있다.", "q11.webp"], ["A serene landscape with mountains in the background and a clear lake in the foreground.", "q12.webp"], ["A street scene from Tokyo at night, vibrant and full of lights.", "q13.webp"], ["An astronaut riding a horse on Mars.", "q14.webp"], ["A surreal painting of a tree growing books.", "q15.webp"], ["A cottage in a snowy forest, lit by warm lights.", "q16.webp"], ["A still life of various fruits and a wine glass on a table.", "q17.webp"], ["A digital artwork of a neon-lit alley in a cyberpunk city.", "q18.webp"], ["A fantasy map of a fictional world, with detailed terrain and cities.", "q19.webp"] ] demo = gr.Interface( fn=respond, inputs=gr.Textbox(label="Enter your prompt for image generation"), outputs=[ gr.Textbox(label="Prompt"), gr.Image(label="Generated Image") ], examples=examples, theme="Nymbo/Nymbo_Theme", css=css, cache_examples=False # 예제 캐싱 비활성화 ) if __name__ == "__main__": demo.launch()