File size: 8,564 Bytes
73abcdb
 
 
e70eebc
73abcdb
 
 
 
 
 
 
 
 
 
 
 
 
e70eebc
 
73abcdb
 
 
 
 
 
e70eebc
 
 
 
73abcdb
 
 
 
e70eebc
73abcdb
e70eebc
 
 
 
73abcdb
 
 
 
 
e70eebc
73abcdb
 
e70eebc
 
 
 
 
 
 
 
 
 
 
 
 
 
24656d8
 
 
 
 
 
 
e70eebc
 
24656d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e70eebc
24656d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e70eebc
24656d8
 
 
 
 
 
 
 
 
 
 
 
 
e70eebc
24656d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e70eebc
 
 
24656d8
 
 
 
e70eebc
 
 
24656d8
 
e70eebc
 
24656d8
 
73abcdb
 
e70eebc
 
73abcdb
e70eebc
 
 
 
 
 
 
 
 
 
 
24656d8
e70eebc
24656d8
e70eebc
 
 
 
 
 
 
73abcdb
 
 
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
import os
import requests
import gradio as gr
from datetime import datetime

# API Configuration
API_KEY = os.getenv('StableCogKey')
API_HOST = 'https://api.stablecog.com'

headers = {
    'Authorization': f'Bearer {API_KEY}',
    'Content-Type': 'application/json'
}

def get_models():
    """Fetch and display available models"""
    try:
        url = f'{API_HOST}/v1/image/generation/models'
        response = requests.get(url, headers=headers, timeout=10)
        
        if response.status_code == 200:
            data = response.json()
            models = data.get('models', [])
            
            # Format display
            display_text = f"📊 Found {len(models)} models\n"
            display_text += f"⏰ {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n"
            
            for i, model in enumerate(models, 1):
                name = model.get('name', 'Unknown')
                model_type = model.get('type', 'unknown')
                description = model.get('description', 'No description')
                
                display_text += f"{i}. 🔹 **{name}**\n"
                display_text += f"   📝 {description}\n"
                display_text += f"   🏷️ Type: {model_type}\n"
                display_text += f"   🌍 Public: {'✅' if model.get('is_public') else '❌'}\n"
                display_text += f"   ⭐ Default: {'✅' if model.get('is_default') else '❌'}\n"
                display_text += f"   👥 Community: {'✅' if model.get('is_community') else '❌'}\n"
                display_text += "─" * 40 + "\n"
            
            return display_text, str(data)
            
        else:
            return f"❌ Error {response.status_code}", f"Error: {response.text}"
            
    except Exception as e:
        return f"❌ Error: {str(e)}", "No data"

def get_outputs():
    """Fetch and display recent outputs with images"""
    try:
        url = f'{API_HOST}/v1/image/generation/outputs'
        response = requests.get(url, headers=headers, timeout=10)
        
        if response.status_code == 200:
            data = response.json()
            outputs = data.get('outputs', [])
            total = data.get('total_count', 0)
            next_cursor = data.get('next', 'None')
            
            # Prepare display
            display_text = f"📊 Total outputs: {total}\n"
            display_text += f"📋 Showing: {len(outputs)} outputs\n"
            display_text += f"⏭️ Next cursor: {next_cursor}\n"
            display_text += f"⏰ {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n"
            
            # Create gallery HTML
            gallery_html = "<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px;'>"
            
            for i, output in enumerate(outputs, 1):
                output_id = output.get('id', 'N/A')
                short_id = output_id[:8] + '...' if len(output_id) > 8 else output_id
                created_at = output.get('created_at', 'N/A')
                status = output.get('status', 'unknown')
                model_name = output.get('model_name', 'Unknown')
                
                # Gallery status with emojis
                gallery_status = output.get('gallery_status', 'not_submitted')
                gallery_emoji = {
                    'not_submitted': '🔒',
                    'submitted': '📤',
                    'approved': '✅',
                    'rejected': '❌'
                }.get(gallery_status, '❓')
                
                # Favorites
                is_favorited = output.get('is_favorited', False)
                favorite_emoji = '❤️' if is_favorited else '🤍'
                
                # Format timestamp
                if created_at != 'N/A':
                    try:
                        dt = datetime.fromisoformat(created_at.replace('Z', '+00:00'))
                        created_date = dt.strftime('%Y-%m-%d')
                        created_time = dt.strftime('%H:%M')
                    except:
                        created_date = created_at
                        created_time = ''
                else:
                    created_date = 'Unknown'
                    created_time = ''
                
                # Text display
                display_text += f"{i}. 🔹 **Output {short_id}**\n"
                display_text += f"   🕒 Created: {created_at}\n"
                display_text += f"   📊 Status: {status}\n"
                display_text += f"   🤖 Model: {model_name}\n"
                display_text += f"   🖼️ Gallery: {gallery_emoji} {gallery_status}\n"
                display_text += f"   {favorite_emoji} Favorite\n"
                
                # Get image URL
                image_url = output.get('image_url')
                if not image_url:
                    # Try to get from image_urls array
                    image_urls = output.get('image_urls', [])
                    if image_urls and isinstance(image_urls, list) and len(image_urls) > 0:
                        image_url = image_urls[0]
                
                if image_url:
                    # Add to gallery
                    gallery_html += f"""
                    <div style='border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.1); padding: 10px;'>
                        <img src='{image_url}' style='width: 100%; height: 200px; object-fit: cover; border-radius: 8px;'>
                        <div style='margin-top: 8px; font-size: 12px;'>
                            <div>📅 {created_date}</div>
                            <div>🤖 {model_name[:15]}{'...' if len(model_name) > 15 else ''}</div>
                            <div>{gallery_emoji} {gallery_status}</div>
                            <div>{favorite_emoji}</div>
                        </div>
                    </div>
                    """
                    display_text += f"   🖼️ Image URL: {image_url[:50]}...\n"
                else:
                    display_text += f"   🖼️ No image available\n"
                
                # Show generation details if available
                generation = output.get('generation', {})
                if generation:
                    prompt = generation.get('prompt', 'No prompt')
                    if len(prompt) > 50:
                        prompt = prompt[:50] + '...'
                    display_text += f"   📝 Prompt: {prompt}\n"
                
                display_text += "─" * 40 + "\n"
            
            gallery_html += "</div>"
            
            if not outputs:
                display_text = "📭 No outputs found. Generate some images first!"
                gallery_html = "<div style='text-align: center; padding: 40px; color: #888;'>No images found</div>"
            
            return display_text, gallery_html, str(data)
            
        else:
            error_msg = f"❌ Error {response.status_code}"
            return error_msg, f"<div style='color: red; padding: 20px;'>{error_msg}</div>", f"Error: {response.text}"
            
    except Exception as e:
        error_msg = f"❌ Error: {str(e)}"
        return error_msg, f"<div style='color: red; padding: 20px;'>{error_msg}</div>", "No data"

# Create Gradio interface
with gr.Blocks(title="StableCog Dashboard") as demo:
    gr.Markdown("# 🎯 StableCog Dashboard")
    
    with gr.Tabs():
        with gr.Tab("🤖 Models"):
            with gr.Row():
                models_display = gr.Textbox(label="Available Models", lines=25)
                models_raw = gr.Code(label="Raw JSON", language="json", lines=25)
            
            check_models_btn = gr.Button("🔄 Refresh Models", variant="primary")
            check_models_btn.click(get_models, outputs=[models_display, models_raw])
        
        with gr.Tab("🖼️ Outputs"):
            with gr.Row():
                with gr.Column(scale=1):
                    outputs_display = gr.Textbox(label="Output Details", lines=25)
                with gr.Column(scale=2):
                    outputs_gallery = gr.HTML(label="Image Gallery")
            
            with gr.Row():
                outputs_raw = gr.Code(label="Raw JSON", language="json", lines=15)
            
            check_outputs_btn = gr.Button("🔄 Refresh Outputs", variant="primary")
            check_outputs_btn.click(get_outputs, outputs=[outputs_display, outputs_gallery, outputs_raw])

if __name__ == "__main__":
    demo.launch()