File size: 9,967 Bytes
e8bac0f
ff1697a
e8bac0f
04e9db1
1f5b975
d98e648
 
84ba97a
c4f57a0
04e9db1
5ab2ea5
 
8b62ce7
ff1697a
 
e8bac0f
b1c2a0f
 
633af1d
d98e648
b43300a
9211d08
6a468e1
d98e648
5ab2ea5
 
 
12bf62b
 
 
 
 
 
 
 
 
84ba97a
 
5ab2ea5
84ba97a
 
5ab2ea5
84ba97a
5ab2ea5
 
b43300a
84ba97a
 
 
5ab2ea5
 
b43300a
5ab2ea5
d98e648
 
b1c2a0f
 
 
d98e648
b1c2a0f
d8bbd3a
b1c2a0f
 
5ab2ea5
b1c2a0f
5ab2ea5
1f5b975
c4f57a0
5ab2ea5
c4f57a0
 
ff1697a
263e495
ff1697a
 
8b62ce7
c4f57a0
 
 
 
 
 
8b62ce7
 
5ab2ea5
ff1697a
c97f523
d98e648
 
3396e4e
6a468e1
 
 
 
d98e648
6a468e1
3396e4e
d98e648
 
 
6a468e1
d98e648
 
c97f523
 
263e495
5ab2ea5
f91a6a4
a6549b1
5ab2ea5
 
 
dcb78ae
 
 
 
 
682535d
b1c2a0f
 
 
5843541
b1c2a0f
1c96884
b1c2a0f
 
 
 
 
1c96884
 
 
 
dc3cdae
1c96884
 
 
 
 
 
 
 
5843541
 
b1c2a0f
 
 
7a1a45e
b1c2a0f
 
7a1a45e
 
 
 
c4f57a0
 
 
 
 
 
 
 
 
 
 
 
0dc0c33
 
 
 
 
91b37f6
 
 
 
 
780dba6
0dc0c33
91b37f6
0dc0c33
7a1a45e
c4f57a0
 
 
 
 
83746e4
5ab2ea5
83746e4
5ab2ea5
633af1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import gradio as gr
from gradio_client import Client
import os
import logging
import requests
from PIL import Image
import io
import base64

# ๋กœ๊น… ์„ค์ •
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)

# API ํด๋ผ์ด์–ธํŠธ ์„ค์ •
api_client = Client("http://211.233.58.202:7960/")

# Webhook URL
WEBHOOK_URL = "https://connect.pabbly.com/workflow/sendwebhookdata/IjU3NjUwNTY0MDYzMTA0MzE1MjZlNTUzYzUxM2Ei_pc"

# Imgur ํด๋ผ์ด์–ธํŠธ ID
IMGUR_CLIENT_ID = "์—ฌ๊ธฐ์—_๋‹น์‹ ์˜_IMGUR_CLIENT_ID๋ฅผ_์ž…๋ ฅํ•˜์„ธ์š”"

def upload_to_imgur(image_data):
    try:
        logger.debug(f"Image data type: {type(image_data)}")
        logger.debug(f"Image data length: {len(image_data)}")
        
        # ์ด๋ฏธ์ง€ ๋ฐ์ดํ„ฐ๋ฅผ PIL Image ๊ฐ์ฒด๋กœ ๋ณ€ํ™˜
        image = Image.open(io.BytesIO(image_data))
        
        # PNG ํ˜•์‹์œผ๋กœ ๋ณ€ํ™˜
        buffered = io.BytesIO()
        image.save(buffered, format="PNG")
        
        # Base64๋กœ ์ธ์ฝ”๋”ฉ
        im_b64 = base64.b64encode(buffered.getvalue()).decode("utf-8")
        
        url = "https://api.imgur.com/3/image"
        payload = {'image': im_b64, 'type': 'base64'}
        headers = {'Authorization': f'Client-ID {IMGUR_CLIENT_ID}'}
        
        logger.debug("Sending request to Imgur API")
        response = requests.post(url, headers=headers, data=payload)
        logger.debug(f"Imgur API response status: {response.status_code}")
        logger.debug(f"Imgur API response content: {response.text}")
        
        response.raise_for_status()
        
        return response.json()['data']['link']
    except Exception as e:
        logger.error(f"Failed to upload image to Imgur: {e}")
        if hasattr(e, 'response'):
            logger.error(f"Response content: {e.response.text}")
        return None

def send_to_webhook(prompt, image_url):
    payload = {
        "prompt": prompt,
        "image": image_url
    }
    try:
        response = requests.post(WEBHOOK_URL, json=payload)
        response.raise_for_status()
        logger.info(f"Successfully sent data to webhook. Status code: {response.status_code}")
    except requests.exceptions.RequestException as e:
        logger.error(f"Failed to send data to webhook: {e}")

def respond(message, seed, randomize_seed, width, height, guidance_scale, num_inference_steps):
    logger.info(f"Received message: {message}, seed: {seed}, randomize_seed: {randomize_seed}, "
                 f"width: {width}, height: {height}, guidance_scale: {guidance_scale}, "
                 f"num_inference_steps: {num_inference_steps}")
    
    try:
        # ์ด๋ฏธ์ง€ ์ƒ์„ฑ ์š”์ฒญ
        result = api_client.predict(
            prompt=message,
            seed=seed,
            randomize_seed=randomize_seed,
            width=width,
            height=height,
            guidance_scale=guidance_scale,
            num_inference_steps=num_inference_steps,
            api_name="/infer_t2i"
        )
        logger.info("API response received: %s", result)
        
        # ๊ฒฐ๊ณผ ํ™•์ธ ๋ฐ ์ฒ˜๋ฆฌ
        if isinstance(result, tuple) and len(result) >= 1:
            local_image_path = result[0]
            
            # ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ ๋ฉ”๋ชจ๋ฆฌ์— ๋กœ๋“œ
            with open(local_image_path, "rb") as f:
                image_data = f.read()
            
            # Imgur์— ์ด๋ฏธ์ง€ ์—…๋กœ๋“œ
            imgur_url = upload_to_imgur(image_data)
            
            if imgur_url:
                # Webhook์œผ๋กœ ๋ฐ์ดํ„ฐ ์ „์†ก
                send_to_webhook(message, imgur_url)
                return Image.open(io.BytesIO(image_data))
            else:
                raise ValueError("Failed to upload image to Imgur")
        else:
            raise ValueError("Unexpected API response format")
    except Exception as e:
        logger.error("Error during API request: %s", str(e))
        return "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"],
    ["๋กœ๋ด‡์ด ๊ณต์‚ฌ์žฅ์—์„œ ์ž‘์—…์ค‘์ด๋‹ค. ๋ฐฐ๊ฒฝ์— 'Coming soon~'๋ผ๋Š” ๊ธ€์ž๊ฐ€ ์“ฐ์—ฌ์žˆ๋‹ค.", "q20.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"]
]

def use_prompt(prompt):
    return prompt

with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:

    
    with gr.Row():
        input_text = gr.Textbox(label="Enter your prompt for image generation")
        output_image = gr.Image(label="Generated Image")
    
    with gr.Row():
        seed = gr.Slider(minimum=0, maximum=1000000, step=1, label="Seed", value=123)
        randomize_seed = gr.Checkbox(label="Randomize Seed", value=False)
    
    with gr.Row():
        width = gr.Slider(minimum=256, maximum=1024, step=64, label="Width", value=1024)
        height = gr.Slider(minimum=256, maximum=1024, step=64, label="Height", value=576)
    
    with gr.Row():
        guidance_scale = gr.Slider(minimum=1, maximum=20, step=0.1, label="Guidance Scale", value=5)
        num_inference_steps = gr.Slider(minimum=1, maximum=100, step=1, label="Number of Inference Steps", value=28)
    
    with gr.Row():
        for prompt, image_file in examples:
            with gr.Column():
                gr.Image(image_file, label=prompt[:50] + "...")  # ํ”„๋กฌํ”„ํŠธ์˜ ์ฒ˜์Œ 50์ž๋งŒ ํ‘œ์‹œ
                gr.Button("Use this prompt").click(
                    fn=use_prompt,
                    inputs=[],
                    outputs=input_text,
                    api_name=False
                ).then(
                    lambda x=prompt: x,
                    inputs=[],
                    outputs=input_text
                )
    
    input_text.submit(
        fn=respond, 
        inputs=[input_text, seed, randomize_seed, width, height, guidance_scale, num_inference_steps], 
        outputs=output_image
    )


if __name__ == "__main__":
    logger.info(f"Starting application with Imgur Client ID: {IMGUR_CLIENT_ID[:5]}...")
    demo.launch()