File size: 24,713 Bytes
00dd9de 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 c3395f1 5b349d3 f33cb93 5b349d3 f33cb93 c3395f1 8b8ac8e f33cb93 8b8ac8e f33cb93 c3395f1 f33cb93 5b349d3 f33cb93 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 c3395f1 644a519 5b349d3 f33cb93 b86b06a c3395f1 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 c3395f1 5b349d3 f33cb93 c3395f1 f33cb93 644a519 c3395f1 644a519 c3395f1 f33cb93 644a519 c3395f1 f33cb93 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 c3395f1 b2ce728 c3395f1 f33cb93 c3395f1 f33cb93 c3395f1 0d2a59a c3395f1 0d2a59a c3395f1 0d2a59a c3395f1 0d2a59a c3395f1 8b8ac8e c3395f1 5b349d3 b2ce728 5b349d3 b2ce728 c3395f1 5b349d3 c3395f1 5b349d3 b2ce728 5b349d3 b2ce728 c3395f1 5b349d3 f33cb93 5b349d3 f33cb93 5b349d3 c3395f1 5b349d3 f33cb93 644a519 |
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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
import os
import sys
import base64
import io
import logging
import tempfile
import traceback
import requests
from PIL import Image
import gradio as gr
from gradio_client import Client, handle_file
from dotenv import load_dotenv
# ํ๊ฒฝ๋ณ์ ๋ก๋
load_dotenv()
# ๋ก๊น
์ค์ (๋ฏผ๊ฐํ ์ ๋ณด ์ ์ธ)
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler("app.log"),
logging.StreamHandler(sys.stdout)
]
)
logger = logging.getLogger("image-enhancer-app")
# API ํด๋ผ์ด์ธํธ ์ด๊ธฐํ (ํ๊ฒฝ๋ณ์์์)
API_ENDPOINT = os.environ.get("API_ENDPOINT")
if not API_ENDPOINT:
logger.error("API_ENDPOINT environment variable is not set")
sys.exit(1)
try:
# ๋ก๊ทธ์ ์๋ํฌ์ธํธ ์ ๋ณด ์ถ๋ ฅํ์ง ์์
api_client = Client(API_ENDPOINT)
logger.info("API client initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize API client: {e}")
sys.exit(1)
# backgrounds.py ์ ์ฒด ๋ด์ฉ์ ํ๊ฒฝ๋ณ์์์ ๊ฐ์ ธ์ค๊ธฐ
def load_backgrounds_from_env():
"""ํ๊ฒฝ๋ณ์์์ backgrounds.py ์ ์ฒด ๋ด์ฉ ๋ก๋"""
backgrounds_code = os.environ.get("BACKGROUNDS_DATA", "")
if not backgrounds_code:
logger.warning("BACKGROUNDS_DATA environment variable is empty")
return {}, {}, {}, {}, {}, {}, {}
try:
# ํ๊ฒฝ๋ณ์์์ ๊ฐ์ ธ์จ ์ฝ๋ ์คํํ์ฌ ๋์
๋๋ฆฌ๋ค ์ถ์ถ
local_vars = {}
exec(backgrounds_code, {}, local_vars)
return (
local_vars.get("SIMPLE_BACKGROUNDS", {}),
local_vars.get("STUDIO_BACKGROUNDS", {}),
local_vars.get("NATURE_BACKGROUNDS", {}),
local_vars.get("INDOOR_BACKGROUNDS", {}),
local_vars.get("SPECIAL_BACKGROUNDS", {}),
local_vars.get("JEWELRY_BACKGROUNDS", {}),
local_vars.get("SPECIAL_EFFECTS_BACKGROUNDS", {})
)
except Exception as e:
logger.error(f"Failed to parse BACKGROUNDS_DATA: {e}")
return {}, {}, {}, {}, {}, {}, {}
# ํ๊ฒฝ๋ณ์์์ ๋ฐฐ๊ฒฝ ๋์
๋๋ฆฌ๋ค ๋ก๋
(SIMPLE_BACKGROUNDS, STUDIO_BACKGROUNDS, NATURE_BACKGROUNDS,
INDOOR_BACKGROUNDS, SPECIAL_BACKGROUNDS, JEWELRY_BACKGROUNDS,
SPECIAL_EFFECTS_BACKGROUNDS) = load_backgrounds_from_env()
# ๋ง์ฝ ํ๊ฒฝ๋ณ์๊ฐ ๋น์ด์๋ค๋ฉด ๊ธฐ๋ณธ๊ฐ ์ฌ์ฉ
if not SIMPLE_BACKGROUNDS:
SIMPLE_BACKGROUNDS = {
"ํ์ดํธ ๊ธฐ๋ณธ": "clean white background with soft lighting",
"ํ์ ํฌํค": "light gray background with minimal shadows",
"๋ผ์ดํธ ๊ทธ๋ ์ด": "soft light gray backdrop with even illumination",
"๊ทธ๋ ์ด ๊ทธ๋ผ๋ฐ์ด์
์คํฌํธ๋ผ์ดํธ": "gray gradient with spotlight",
"ํ๋ฆฌ๋ฏธ์ ๋๋ผ๋งํฑ ๋ธ๋": "premium dramatic black background",
"๋ฅ๋ธ๋ฃจ ์ ๋ฆฌ๋ฐ์ฌ": "deep blue glass reflection",
"ํ์คํ
๊ทธ๋ผ๋ฐ์ด์
": "pastel gradient background",
"์ค์นด์ด๋ธ๋ฃจ ํ์คํ
": "sky blue pastel",
"๋ฒํฐ์๋ก์ฐ ํ์คํ
": "butter yellow pastel",
"๋ธ๋ฃจ ์์": "pure blue background",
"๋ ๋ ์์": "pure red background"
}
if not STUDIO_BACKGROUNDS:
STUDIO_BACKGROUNDS = {
"์ฐ๋
น์ ์ฅ๋ฏธ ์ ์": "soft green rose garden",
"์ฐ๋ถํ ์ฅ๋ฏธ ๋๋ฆฌ์": "pink rose with marble",
"ํ์คํ
๋ธ๋ฃจ ์๊ตญ": "pastel blue hydrangea",
"์ํํธ ํํฌ ๋ฒ๊ฝ": "soft pink cherry blossom",
"ํ์คํ
์๋ก์ฐ ๊ฝ๋ด์ค๋ฆฌ": "pastel yellow buds",
"์์ด๋ณด๋ฆฌ ๋ก์ฆ ์ฌํ": "ivory rose simple",
"์ฌํ ํ์ดํธ ์์ ํ๋ถ": "simple white small pot",
"ํผํ ์ฅ๋์ค๋ฌ์ด ์ฌ๋น๋ก์ด ๋ถ์๊ธฐ": "purple playful mood",
"์ฝ์ง ๋ฐ์คํฌ ํ๋ํธ": "cozy desk plant",
"์ฐํํฌ ํค๋ฆฝ ์์ํ
์ด๋ธ": "light pink tulip small table",
"์คํฌ์ฐ๋ ํค๋ฆฝ ์ค์ ํธํ": "oak wood tulip shower puff",
"ํฌ๋ฆผ ์ฝํผ": "cream cotton",
"๋ธ๋ผ์ด ๊ฑฐ์น ํ์ดํผ": "brown rough paper"
}
if not NATURE_BACKGROUNDS:
NATURE_BACKGROUNDS = {
"์์ ํ๋๊ฐ ์๋ ํด๋ณ": "beach with small waves",
"ํญ๊ท์ด ์๋ ๋น์ฐ": "iceberg with penguin",
"๋๋ด๋ฆฌ๋ ์ฐ์
์ค์": "snowy mountain field",
"์ด๋ํด๋ณ": "tropical beach",
"์ผ์ถ ์ง์ ์ ๋ฐ์์ฐ": "rocky mountain before sunrise",
"์ด๊ทผ์ ๋ด๊ฝ ๋คํ": "close-up spring flower field",
"๋ฌผ๊ฐ ๋ฐ์": "waterside rocks",
"์์ ๋์ด ๊น๋ฆฐ ์์ ๋ฌผ๊ฐ": "shallow water with small stones",
"๋๋ฌด ํ
์ด๋ธ ์ฒ์ ๊ณ๊ณก": "wooden table forest valley",
"์๊ฐ ๋ ์ฒ": "foggy forest",
"์ผ๋ชฐ ๋ฐ๋ค": "sunset sea",
"๋ณ์ด ๋น๋๋ ์บ ํ": "starry camping"
}
if not INDOOR_BACKGROUNDS:
INDOOR_BACKGROUNDS = {
"๊ธฐ๋ณธ ์ฑ
์": "basic desk",
"๋น์ด ๋น์น๋ ์ฑ
์": "desk with light",
"๋น์ด ๋น์น๋ ๊ฑฐ์ค": "living room with light",
"์คํ๋์ด ๊ฑฐ์ค": "studio living room",
"ํ๋ถ์ด ์๋ ๊ฑฐ์ค": "living room with plants",
"์ ์ฒด์ ์ธ ๊ฑฐ์ค๋ชจ์ต": "overall living room view",
"ํฌ์ธํธ ๊ฑฐ์ค": "point living room",
"์ค์ ๊ฑฐ์ค": "central living room",
"์๋ํ
์ด๋ธ": "drawer table",
"์นจ์ค ํ์์": "bedroom table top",
"์๋ชฉ ํ
์ด๋ธ ๋ธ๋ก": "wood table block",
"ํ
์ด๋ธ ์ฌํ": "simple table",
"๋ถ์๊ธฐ ์๋ ์นจ์ค": "atmospheric bedroom",
"๋๋ฌดํ
์ด๋ธ์": "on wooden table",
"์ฑ
์ ๊ฑฐ์คํ
์ด๋ธ": "living room table with books",
"์ ๋ฆฌํ
์ด๋ธ์": "on glass table",
"์นจ์ค ์ ์์ํ์": "small bedside table",
"๋ถ์๊ธฐ ์๋ ์ํ ํ
์ด๋ธ": "atmospheric round table",
"ํฌ์ปค์ค ํ์": "focus table",
"ํฌํค ๋ฒฝ๋ฉด": "two-tone wall",
"์๋ํ ํ
์ด๋ธ์ ์ก์ธ์๋ฆฌ": "cozy table accessories",
"์๋ํ ํ
์ด๋ธ ๋ณด ์": "on cozy tablecloth",
"์ ๋ฆฌ ๋ฐ๋ฅ": "glass floor",
"๋น์น๋ ์ํ์": "dining table with light",
"๋๋ํ ์ํ์ ์์
๋": "cozy dining workspace"
}
if not SPECIAL_BACKGROUNDS:
SPECIAL_BACKGROUNDS = {
"๋ค์ด๋น ๋นํฐ์ง ํ๋ก๋ด ๋ฒฝ์ง": "navy vintage floral wallpaper",
"๋นํฐ์ง ๊ฝ๋ฌด๋ฌ ํจ๋ธ๋ฆญ ๋ฐฐ๊ฒฝ": "vintage floral fabric background",
"ํ ๋ํธ์ ๊ณผ์ผ": "pop dots and fruits",
"๋ธ๋ฃจ ๋ง๋ธ ์ํฌ ํ
์ค์ฒ ๋ฐฐ๊ฒฝ": "blue marble ink texture",
"์ค๋ ์ง๋ธ๋ฃจ ์ํฐ์ปฌ๋ฌ ๋ฐฐ๊ฒฝ": "orange blue watercolor",
"๋ ๋๋ธ๋ฌ์ ํ์ธํ
์ํธ ๋ฐฐ๊ฒฝ": "red brush painting art",
"๋ธ๋ฃจ์ค๋ ์ง ํ์ธํ
์ํธ": "blue orange painting art"
}
if not JEWELRY_BACKGROUNDS:
JEWELRY_BACKGROUNDS = {
"ํ์ดํธ ๋ฏธ๋ฌ ์คํ ๋ผ์ดํธ": "white mirror spotlight",
"๊ทธ๋ ์ด ๊ทธ๋ผ๋ฐ์ด์
๋ฏธ๋ฌ": "gray gradient mirror",
"๋ค์ด๋น ๋ฒจ๋ฒณ": "navy velvet",
"๋ธ๋ ๋ฏธ๋ฌ ์๋ค๋งํฑ": "black mirror cinematic",
"ํ์ดํธ ๋ง๋ธ ํ๋ฆฌ๋ฏธ์": "white marble premium",
"ํ์คํ
๋ธ๋ฃจ ํ๋ธ ํ๋ซํผ": "pastel blue cube platform",
"๋ด์ถ๋ด ๊ทธ๋ผ์ค": "natural grass",
"์ํํธ ๋ฒ ์ด์ง ํจ๋ธ๋ฆญ": "soft basic fabric",
"๋ง์ดํฌ๋กํ
์ค์ณ ํ๋ฆฌ๋ฏธ์": "micro texture premium"
}
if not SPECIAL_EFFECTS_BACKGROUNDS:
SPECIAL_EFFECTS_BACKGROUNDS = {
"๋ธ๋ฃจ๋ธ๋ ํฐ ๋ฌผ๋ฐฉ์ธ ํจ๊ณผ": "blue black water drop effect",
"ํฌ๋ฆฌ์คํ ๋ฒ๋ธ ๋ฌผ์ ์ฅ๋ฉด": "crystal bubble underwater scene",
"์ ๋ฌผ๊ฒฐ ์๋ฉด ์ ์ฅ๋ฉด": "gentle ripple water surface scene",
"์ปฌ๋ฌ ์ค๋ชจํฌ ํจ๊ณผ": "color smoke effect",
"์์ฅํ ์๊ฐ ํจ๊ณผ": "dense fog effect",
"๊ฐ์ต๊ธฐ ์์ค๊ธฐ ํจ๊ณผ": "humidifier mist effect"
}
# ์์ ํ์ผ ์ ์ฅ ํจ์ (์๋ณธ๊ณผ ๋์ผ)
def save_uploaded_file(uploaded_file, suffix='.png'):
try:
logger.info(f"Processing uploaded file: {type(uploaded_file)}")
if uploaded_file is None:
logger.warning("Uploaded file is None")
return None
with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as temp_file:
temp_filename = temp_file.name
logger.info(f"Created temporary file: {temp_filename}")
# Gradio ์
๋ก๋ ํ์ผ ์ฒ๋ฆฌ
if isinstance(uploaded_file, str): # ์ด๋ฏธ ํ์ผ ๊ฒฝ๋ก์ธ ๊ฒฝ์ฐ
logger.info(f"Uploaded file is already a path: {uploaded_file}")
return uploaded_file
# PIL Image ์ฒ๋ฆฌ
if isinstance(uploaded_file, Image.Image):
logger.info("Uploaded file is a PIL Image")
uploaded_file.save(temp_filename, format="PNG")
return temp_filename
# ๋ฐ์ด๋๋ฆฌ ๋ฐ์ดํฐ ์ฒ๋ฆฌ
with open(temp_filename, "wb") as f:
if hasattr(uploaded_file, "read"): # ํ์ผ ๊ฐ์ฒด์ธ ๊ฒฝ์ฐ
logger.info("Processing file object")
content = uploaded_file.read()
f.write(content)
logger.info(f"Wrote {len(content)} bytes to {temp_filename}")
else: # ๋ฐ์ด๋๋ฆฌ ๋ฐ์ดํฐ์ธ ๊ฒฝ์ฐ
logger.info("Processing binary data")
f.write(uploaded_file)
logger.info(f"Wrote data to {temp_filename}")
return temp_filename
except Exception as e:
logger.error(f"Error saving uploaded file: {e}")
logger.error(traceback.format_exc())
return None
# Gradio ์ธํฐํ์ด์ค ๊ตฌ์ฑ (์๋ณธ๊ณผ ์์ ๋์ผ)
def create_gradio_interface():
try:
logger.info("Creating Gradio interface")
with gr.Blocks(title="AI ์ด๋ฏธ์ง ํธ์ง ๋ฐ ํ์ง ๊ฐ์ ") as app:
gr.Markdown("# AI ์ด๋ฏธ์ง ํธ์ง ๋ฐ ํ์ง ๊ฐ์ ๋๊ตฌ")
# ๋น๋ฐ๋ฒํธ ์
๋ ฅ ํ๋
password_box = gr.Textbox(
label="๋น๋ฐ๋ฒํธ",
type="password",
placeholder="์ฌ์ฉํ๋ ค๋ฉด ๋น๋ฐ๋ฒํธ๋ฅผ ์
๋ ฅํ์ธ์",
interactive=True
)
# ์ด๋ฏธ์ง ํธ์ง ๋ฐ ํ์ง ๊ฐ์ ์ธํฐํ์ด์ค
with gr.Row():
with gr.Column():
# ์ํ ์ด๋ฏธ์ง ์
๋ก๋
image = gr.Image(label="์ํ ์ด๋ฏธ์ง ์
๋ก๋", type="pil")
with gr.Row():
with gr.Column():
background_type = gr.Radio(
choices=["์ฌํ ๋ฐฐ๊ฒฝ", "์คํ๋์ค ๋ฐฐ๊ฒฝ", "์์ฐ ํ๊ฒฝ", "์ค๋ด ํ๊ฒฝ", "ํน์๋ฐฐ๊ฒฝ", "์ฃผ์ผ๋ฆฌ", "ํน์ํจ๊ณผ"],
label="๋ฐฐ๊ฒฝ ์ ํ",
value="์ฌํ ๋ฐฐ๊ฒฝ"
)
# ๋๋กญ๋ค์ด ์ปดํฌ๋ํธ๋ค
simple_dropdown = gr.Dropdown(
choices=list(SIMPLE_BACKGROUNDS.keys()),
value=list(SIMPLE_BACKGROUNDS.keys())[0] if SIMPLE_BACKGROUNDS else None,
label="์ฌํ ๋ฐฐ๊ฒฝ ์ ํ",
visible=True,
interactive=True
)
studio_dropdown = gr.Dropdown(
choices=list(STUDIO_BACKGROUNDS.keys()),
value=list(STUDIO_BACKGROUNDS.keys())[0] if STUDIO_BACKGROUNDS else None,
label="์คํ๋์ค ๋ฐฐ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
nature_dropdown = gr.Dropdown(
choices=list(NATURE_BACKGROUNDS.keys()),
value=list(NATURE_BACKGROUNDS.keys())[0] if NATURE_BACKGROUNDS else None,
label="์์ฐ ํ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
indoor_dropdown = gr.Dropdown(
choices=list(INDOOR_BACKGROUNDS.keys()),
value=list(INDOOR_BACKGROUNDS.keys())[0] if INDOOR_BACKGROUNDS else None,
label="์ค๋ด ํ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
special_dropdown = gr.Dropdown(
choices=list(SPECIAL_BACKGROUNDS.keys()),
value=list(SPECIAL_BACKGROUNDS.keys())[0] if SPECIAL_BACKGROUNDS else None,
label="ํน์๋ฐฐ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
jewelry_dropdown = gr.Dropdown(
choices=list(JEWELRY_BACKGROUNDS.keys()),
value=list(JEWELRY_BACKGROUNDS.keys())[0] if JEWELRY_BACKGROUNDS else None,
label="์ฃผ์ผ๋ฆฌ ๋ฐฐ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
special_effects_dropdown = gr.Dropdown(
choices=list(SPECIAL_EFFECTS_BACKGROUNDS.keys()),
value=list(SPECIAL_EFFECTS_BACKGROUNDS.keys())[0] if SPECIAL_EFFECTS_BACKGROUNDS else None,
label="ํน์ํจ๊ณผ ๋ฐฐ๊ฒฝ ์ ํ",
visible=False,
interactive=True
)
# ๋๋กญ๋ค์ด ๋ณ๊ฒฝ ํจ์ (์๋ณธ๊ณผ ๋์ผ, API ์๋ํฌ์ธํธ ์์ฑ)
def update_dropdowns(bg_type):
try:
# API ํธ์ถ
result = api_client.predict(bg_type=bg_type, api_name="/update_dropdowns")
return result
except:
# ๋ฐฑ์
์ฉ ๋ก์ปฌ ๋ก์ง
return {
simple_dropdown: gr.update(visible=(bg_type == "์ฌํ ๋ฐฐ๊ฒฝ")),
studio_dropdown: gr.update(visible=(bg_type == "์คํ๋์ค ๋ฐฐ๊ฒฝ")),
nature_dropdown: gr.update(visible=(bg_type == "์์ฐ ํ๊ฒฝ")),
indoor_dropdown: gr.update(visible=(bg_type == "์ค๋ด ํ๊ฒฝ")),
special_dropdown: gr.update(visible=(bg_type == "ํน์๋ฐฐ๊ฒฝ")),
jewelry_dropdown: gr.update(visible=(bg_type == "์ฃผ์ผ๋ฆฌ")),
special_effects_dropdown: gr.update(visible=(bg_type == "ํน์ํจ๊ณผ"))
}
background_type.change(
fn=update_dropdowns,
inputs=[background_type],
outputs=[simple_dropdown, studio_dropdown, nature_dropdown, indoor_dropdown, special_dropdown, jewelry_dropdown, special_effects_dropdown],
api_name="update_dropdowns"
)
# ์์ฒญ์ฌํญ ์
๋ ฅ
request_text = gr.Textbox(
label="์์ฒญ์ฌํญ",
placeholder="์ํ ์ด๋ฏธ์ง์ ์ ์ฉํ ์คํ์ผ, ๋ถ์๊ธฐ, ํน๋ณ ์์ฒญ์ฌํญ ๋ฑ์ ์
๋ ฅํ์ธ์.",
lines=3
)
# ์๋ก์ด ์ต์
๋ค
quality_level = gr.Radio(
label="ํ์ง ๋ ๋ฒจ",
choices=["gpt", "flux"],
value="flux",
info="GPT: GPT ๋ชจ๋ธ (๊ณ ํ์ง), ์ผ๋ฐ: Flux ๋ชจ๋ธ (๋น ๋ฅธ ์ฒ๋ฆฌ + ๊ธฐ๋ณธ ํ์ง๊ฐ์ )"
)
aspect_ratio = gr.Dropdown(
label="์ข
ํก๋น",
choices=["1:1", "3:2", "2:3"],
value="1:1"
)
output_format = gr.Dropdown(
label="์ด๋ฏธ์ง ํ์",
choices=["jpg", "png"],
value="jpg"
)
# ํ์ง ๊ฐ์ ์ต์
enable_enhancement = gr.Checkbox(
label="์ถ๊ฐ ํ์ง ๊ฐ์ ",
value=False,
info="GPT: 1ํ ํ์ง๊ฐ์ , Flux: 2์ฐจ ํ์ง๊ฐ์ (๊ธฐ๋ณธ 1ํ + ์ถ๊ฐ 1ํ)"
)
enhancement_level = gr.Slider(label="ํ์ง ๊ฐ์ ๋ ๋ฒจ", minimum=1, maximum=4, value=2, step=1, visible=False)
# ํ๋กฌํํธ ์์ฑ ๋ฒํผ
generate_prompt_btn = gr.Button("ํ๋กฌํํธ๋ง ์์ฑ")
# ํธ์ง ๋ฒํผ
edit_btn = gr.Button("์ด๋ฏธ์ง ํธ์ง ๋ฐ ํ์ง ๊ฐ์ ")
with gr.Column():
with gr.Row():
with gr.Column():
gr.Markdown("## ํธ์ง๋ ์ด๋ฏธ์ง")
original_output = gr.Gallery(label="ํธ์ง ๊ฒฐ๊ณผ", preview=True)
original_download = gr.File(label="ํธ์ง ์ด๋ฏธ์ง ๋ค์ด๋ก๋", interactive=False)
with gr.Column():
gr.Markdown("## ํ์ง ๊ฐ์ ๋ ์ด๋ฏธ์ง")
enhanced_output = gr.Gallery(label="ํ์ง ๊ฐ์ ๊ฒฐ๊ณผ", preview=True)
enhanced_download = gr.File(label="๊ฐ์ ์ด๋ฏธ์ง ๋ค์ด๋ก๋", interactive=False)
# ํ๋กฌํํธ ์ถ๋ ฅ
prompt_output = gr.Textbox(label="์์ฑ๋ ํ๋กฌํํธ", lines=10, interactive=False)
info = gr.Textbox(label="์ฒ๋ฆฌ ์ ๋ณด", interactive=False)
error = gr.Textbox(label="์ค๋ฅ ๋ฉ์์ง", interactive=False, visible=True)
# ํ๋กฌํํธ๋ง ์์ฑํ๋ ํจ์ (์๋ณธ๊ณผ ๋์ผํ ์๋ํฌ์ธํธ, API ํธ์ถ)
def generate_prompt_with_password_check(password, bg_type, simple, studio, nature, indoor, special, jewelry, special_effects, request_text, aspect_ratio):
try:
return api_client.predict(
password=password,
bg_type=bg_type,
simple=simple,
studio=studio,
nature=nature,
indoor=indoor,
special=special,
jewelry=jewelry,
special_effects=special_effects,
request_text=request_text,
aspect_ratio=aspect_ratio,
api_name="/generate_prompt_with_password_check"
)
except Exception as e:
return f"API ํธ์ถ ์ค๋ฅ: {str(e)}"
# ๋น๋ฐ๋ฒํธ ํ์ธ ํจ์ (์๋ณธ๊ณผ ๋์ผํ ์๋ํฌ์ธํธ, API ํธ์ถ)
def check_password(password, *args):
try:
image, bg_type, simple, studio, nature, indoor, special, jewelry, special_effects, request_text, quality_level, aspect_ratio, output_format, enable_enhancement = args
if image is None:
return ([], None, [], None, "", "", "์ด๋ฏธ์ง๋ฅผ ์
๋ก๋ํด์ผ ํฉ๋๋ค.")
# ์ด๋ฏธ์ง๋ฅผ ์์ ํ์ผ๋ก ์ ์ฅ
temp_path = save_uploaded_file(image)
if temp_path is None:
return ([], None, [], None, "", "", "์ด๋ฏธ์ง ์ฒ๋ฆฌ์ ์คํจํ์ต๋๋ค.")
try:
# API ํธ์ถ (์๋ณธ๊ณผ ๋์ผํ ํ๋ผ๋ฏธํฐ)
result = api_client.predict(
password=password,
param_1=handle_file(temp_path),
param_2=bg_type,
param_3=simple,
param_4=studio,
param_5=nature,
param_6=indoor,
param_7=special,
param_8=jewelry,
param_9=special_effects,
param_10=request_text,
param_11=quality_level,
param_12=aspect_ratio,
param_13=output_format,
param_14=enable_enhancement,
api_name="/check_password"
)
return result
finally:
# ์์ ํ์ผ ์ ๋ฆฌ
if os.path.exists(temp_path):
try:
os.remove(temp_path)
except:
pass
except Exception as e:
logger.error(f"Error in check_password: {e}")
return ([], None, [], None, "", "", f"์ค๋ฅ ๋ฐ์: {str(e)}")
# ํ๋กฌํํธ ์์ฑ ๋ฒํผ ํด๋ฆญ ์ด๋ฒคํธ
generate_prompt_btn.click(
fn=generate_prompt_with_password_check,
inputs=[
password_box,
background_type,
simple_dropdown, studio_dropdown, nature_dropdown, indoor_dropdown, special_dropdown,
jewelry_dropdown, special_effects_dropdown,
request_text, aspect_ratio
],
outputs=[prompt_output],
api_name="generate_prompt_with_password_check"
)
# ํธ์ง ๋ฒํผ ํด๋ฆญ ์ด๋ฒคํธ
edit_btn.click(
fn=check_password,
inputs=[
password_box,
image, background_type,
simple_dropdown, studio_dropdown, nature_dropdown, indoor_dropdown, special_dropdown,
jewelry_dropdown, special_effects_dropdown,
request_text, quality_level, aspect_ratio, output_format, enable_enhancement
],
outputs=[
original_output, original_download,
enhanced_output, enhanced_download,
prompt_output, info, error
],
api_name="check_password"
)
logger.info("Gradio interface created successfully")
return app
except Exception as e:
logger.error(f"Error creating Gradio interface: {e}")
logger.error(traceback.format_exc())
raise
# ์ฑ ์คํ
if __name__ == "__main__":
try:
logger.info("Starting application")
# imgs ๋๋ ํ ๋ฆฌ ํ์ธ/์์ฑ
os.makedirs("imgs", exist_ok=True)
logger.info("์ด๋ฏธ์ง ๋๋ ํ ๋ฆฌ ์ค๋น ์๋ฃ")
app = create_gradio_interface()
logger.info("Launching Gradio app")
app.launch(share=True)
except Exception as e:
logger.error(f"Error running app: {e}")
logger.error(traceback.format_exc()) |