File size: 4,172 Bytes
e0193fa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr
import torch
import os
import sys
from huggingface_hub import login

# Force CPU usage if needed
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"Using device: {device}")

# More details about the environment
print(f"Gradio version: {gr.__version__}")
print(f"Python version: {sys.version}")

# Hugging Face API token'ı - önce environment variable olarak ara, 
# sonra Hugging Face Secrets sisteminde ara
hf_token = os.environ.get("HUGGINGFACE_TOKEN")
if hf_token:
    print("Found HUGGINGFACE_TOKEN in environment variables")
    # Token ile giriş yap
    login(token=hf_token)
    print("Logged in with Hugging Face token")
else:
    print("HUGGINGFACE_TOKEN not found in environment variables")

def generate_3d_icon(prompt, seed=0, guidance_scale=7.5, num_inference_steps=20):
    try:
        print(f"Generating 3D icon with prompt: {prompt}")
        
        # Use the original goofyai/3d_render_style_xl model via gr.load
        try:
            # Try loading the model directly
            model = gr.load("goofyai/3d_render_style_xl", src="models")
            result = model(prompt)
            return result
        except Exception as e:
            print(f"Error with gr.load: {str(e)}")
            
            # Fallback: Create a simple colored rectangle as placeholder
            from PIL import Image, ImageDraw, ImageFont
            import random
            
            # Create a 512x512 image with random color
            colors = [(255, 87, 51), (255, 165, 0), (50, 205, 50), (30, 144, 255), (138, 43, 226)]
            bg_color = random.choice(colors)
            
            image = Image.new('RGB', (512, 512), color=bg_color)
            draw = ImageDraw.Draw(image)
            
            # Add text
            try:
                # Try to use a font
                font = ImageFont.truetype("/System/Library/Fonts/Arial.ttf", 36)
            except:
                font = ImageFont.load_default()
            
            # Draw prompt text in center
            bbox = draw.textbbox((0, 0), prompt, font=font)
            text_width = bbox[2] - bbox[0]
            text_height = bbox[3] - bbox[1]
            x = (512 - text_width) // 2
            y = (512 - text_height) // 2
            
            draw.text((x, y), prompt, fill=(255, 255, 255), font=font)
            
            # Add "3D Game Icon" label
            label = "3D Game Icon"
            try:
                label_font = ImageFont.truetype("/System/Library/Fonts/Arial.ttf", 24)
            except:
                label_font = ImageFont.load_default()
                
            draw.text((20, 20), label, fill=(255, 255, 255), font=label_font)
            
            return image
            
    except Exception as e:
        print(f"Error generating icon: {str(e)}")
        # Return a simple error image
        from PIL import Image, ImageDraw
        
        image = Image.new('RGB', (512, 512), color='lightgray')
        draw = ImageDraw.Draw(image)
        draw.text((200, 250), "Error", fill=(255, 0, 0))
        return image

# Create Gradio interface
def create_interface():
    interface = gr.Interface(
        fn=generate_3d_icon,
        inputs=[
            gr.Textbox(label="Prompt", placeholder="Describe your game icon", value="galatasaray"),
            gr.Slider(minimum=0, maximum=1000, value=0, step=1, label="Seed"),
            gr.Slider(minimum=1.0, maximum=20.0, value=7.5, step=0.5, label="Guidance Scale"),
            gr.Slider(minimum=10, maximum=50, value=20, step=1, label="Inference Steps")
        ],
        outputs=gr.Image(type="pil", label="Generated Game Icon"),
        title="3D Game Icon Generator",
        description="Generate 3D-style game icons using AI"
    )
    
    return interface

# Launch the interface
if __name__ == "__main__":
    try:
        interface = create_interface()
        print("Launching interface...")
        interface.launch(
            share=False,
            server_name="0.0.0.0",
            server_port=7860,
            show_error=True
        )
    except Exception as e:
        print(f"Error launching interface: {str(e)}")