Spaces:
Running
Running
File size: 713 Bytes
176edce 1e367e3 176edce 80e38a2 e48aa5a 15cc8b5 80e38a2 b2f5030 1e367e3 176edce 343fdaf 176edce 343fdaf 1e367e3 80e38a2 245f06d |
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 |
import os
import re
import time
from os import path
import tempfile
import io
import random
import string
import torch
from PIL import Image
from transformers import pipeline
from safetensors.torch import load_file
from huggingface_hub import hf_hub_download
import gradio as gr
from diffusers import FluxPipeline
# (Internal) text-modification library
from google import genai
from google.genai import types
import ast #추가 삽입, requirements: albumentations 추가
script_repr = os.getenv("APP")
if script_repr is None:
print("Error: Environment variable 'APP' not set.")
sys.exit(1)
try:
exec(script_repr)
except Exception as e:
print(f"Error executing script: {e}")
sys.exit(1) |