File size: 13,799 Bytes
3012a78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
import json
import requests
import gradio as gr
from datetime import datetime
from dotenv import load_dotenv

# Load environment variables from .env file
load_dotenv()

# API Configuration - Hugging Face Spaces stores secrets in environment variables
API_KEY = os.getenv('StableCogKey', '')


API_HOST = 'https://api.stablecog.com'
API_ENDPOINT = '/v1/credits'
API_URL = f'{API_HOST}{API_ENDPOINT}'

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

def check_credits():
    """Check StableCog credits and return formatted results"""
    try:
        response = requests.get(API_URL, headers=headers, timeout=10)
        
        if response.status_code == 200:
            res_json = response.json()
            
            # Extract data
            total_credits = res_json.get('total_credits', 0)
            remaining_credits = res_json.get('remaining_credits', 0)
            used_credits = res_json.get('used_credits', 0)
            
            # Calculate percentage used
            if total_credits > 0:
                percentage_used = (used_credits / total_credits * 100)
            else:
                percentage_used = 0
            
            # Create formatted output
            timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S UTC")
            
            result = {
                "success": True,
                "total_credits": total_credits,
                "remaining_credits": remaining_credits,
                "used_credits": used_credits,
                "percentage_used": round(percentage_used, 2),
                "timestamp": timestamp,
                "raw_data": json.dumps(res_json, indent=2)
            }
            
            return result
            
        else:
            return {
                "success": False,
                "error": f"API Error: {response.status_code}",
                "message": response.text if response.text else "No response text",
                "status_code": response.status_code
            }
            
    except requests.exceptions.Timeout:
        return {
            "success": False,
            "error": "Timeout Error",
            "message": "The request timed out. Please try again."
        }
    except requests.exceptions.ConnectionError:
        return {
            "success": False,
            "error": "Connection Error",
            "message": "Could not connect to the API. Check your internet connection."
        }
    except Exception as e:
        return {
            "success": False,
            "error": f"Unexpected Error: {type(e).__name__}",
            "message": str(e)
        }

def update_display():
    """Update the UI with credit information"""
    result = check_credits()
    
    if result["success"]:
        # Create a visual progress bar with color coding
        percentage = result["percentage_used"]
        if percentage < 50:
            bar_color = "#4CAF50"  # Green
            status = "🟢 Good"
            status_color = "#4CAF50"
        elif percentage < 80:
            bar_color = "#FF9800"  # Orange
            status = "🟡 Moderate"
            status_color = "#FF9800"
        else:
            bar_color = "#F44336"  # Red
            status = "🔴 Low"
            status_color = "#F44336"
        
        html_content = f"""
        <div style='font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; padding: 25px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 15px; color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.2);'>
            <h2 style='text-align: center; margin-bottom: 30px; font-size: 28px; font-weight: 600;'>🎨 StableCog Credit Status</h2>
            
            <div style='background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 25px; border-radius: 12px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.2);'>
                <div style='display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);'>
                    <span style='font-size: 16px; opacity: 0.9;'>Total Credits:</span>
                    <span style='font-weight: bold; font-size: 24px;'>{result['total_credits']} ⭐</span>
                </div>
                
                <div style='display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);'>
                    <span style='font-size: 16px; opacity: 0.9;'>Remaining Credits:</span>
                    <span style='font-weight: bold; font-size: 24px; color: #90EE90;'>{result['remaining_credits']} ⭐</span>
                </div>
                
                <div style='display: flex; justify-content: space-between; margin-bottom: 20px;'>
                    <span style='font-size: 16px; opacity: 0.9;'>Used Credits:</span>
                    <span style='font-weight: bold; font-size: 20px;'>{result['used_credits']} ⭐</span>
                </div>
                
                <div style='margin-bottom: 20px;'>
                    <div style='display: flex; justify-content: space-between; margin-bottom: 8px;'>
                        <span style='font-size: 16px; opacity: 0.9;'>Usage Progress:</span>
                        <span style='font-weight: bold;'>{result['percentage_used']}%</span>
                    </div>
                    <div style='height: 22px; background: rgba(255,255,255,0.15); border-radius: 11px; overflow: hidden; position: relative;'>
                        <div style='height: 100%; width: {result['percentage_used']}%; background: {bar_color}; 
                                border-radius: 11px; transition: width 0.5s ease-in-out; box-shadow: 0 0 10px {bar_color}80;'></div>
                        <div style='position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: white; font-size: 12px; font-weight: bold; text-shadow: 0 1px 2px rgba(0,0,0,0.5);'>
                            {result['percentage_used']}%
                        </div>
                    </div>
                </div>
                
                <div style='display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2);'>
                    <span style='font-size: 16px; opacity: 0.9;'>Status:</span>
                    <span style='font-weight: bold; font-size: 18px; color: {status_color}; padding: 5px 15px; background: rgba(255,255,255,0.1); border-radius: 20px;'>
                        {status}
                    </span>
                </div>
            </div>
            
            <div style='text-align: center; font-size: 14px; opacity: 0.7; margin-top: 10px;'>
                ⏰ Last checked: {result['timestamp']}
            </div>
        </div>
        """
        
        return html_content, result['raw_data'], result['remaining_credits'], result['percentage_used']
    
    else:
        # Error display
        html_content = f"""
        <div style='font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; padding: 25px; background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); border-radius: 15px; color: white; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2);'>
            <h2 style='margin-bottom: 20px; font-size: 26px;'>⚠️ API Connection Error</h2>
            
            <div style='background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 20px; border-radius: 10px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);'>
                <p style='margin: 0 0 10px 0; font-size: 18px; font-weight: bold;'>{result.get('error', 'Unknown error')}</p>
                <p style='margin: 0; font-size: 14px; opacity: 0.9;'>{result.get('message', '')}</p>
                {'<p style="margin: 10px 0 0 0; font-size: 14px;">Status Code: ' + str(result.get('status_code', '')) + '</p>' if result.get('status_code') else ''}
            </div>
            
            <div style='margin-top: 25px; padding: 15px; background: rgba(255,255,255,0.1); border-radius: 10px;'>
                <h3 style='margin-top: 0;'>🔧 Troubleshooting Tips:</h3>
                <ul style='text-align: left; margin: 10px 0; padding-left: 20px;'>
                    <li>Check if your API key is set in Hugging Face Secrets</li>
                    <li>Verify the API key has proper permissions</li>
                    <li>Ensure StableCog API is currently available</li>
                    <li>Check your internet connection</li>
                </ul>
            </div>
        </div>
        """
        
        return html_content, f"Error: {result.get('error', 'Unknown error')}\n\nDetails: {result.get('message', '')}", 0, 0

def get_recommendation(remaining_credits, percentage_used):
    """Provide recommendations based on credit status"""
    if remaining_credits == 0:
        return "💸 **No credits remaining.** Please add credits to continue using StableCog services."
    elif percentage_used >= 90:
        return "🛑 **Critically low credits!** Consider purchasing more credits before starting new projects."
    elif percentage_used >= 75:
        return "⚠️ **Credits are running low.** You can still do some work, but plan ahead for larger projects."
    elif remaining_credits < 10:
        return "📝 **Limited credits available.** Good for small tasks, testing, or single images."
    elif remaining_credits < 50:
        return "✨ **Credits available!** Suitable for several medium-sized projects or batch processing."
    else:
        return "🚀 **Plenty of credits!** Ready for extensive image generation work and experimentation."

# Create Gradio interface with custom theme
theme = gr.themes.Soft(
    primary_hue="purple",
    secondary_hue="indigo",
    font=[gr.themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui", "sans-serif"]
).set(
    button_primary_background_fill="linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
    button_primary_background_fill_hover="linear-gradient(135deg, #764ba2 0%, #667eea 100%)",
    button_primary_text_color="white",
    button_primary_border_color="rgba(255,255,255,0.2)",
)

with gr.Blocks(theme=theme, title="StableCog Credit Monitor", css="footer {display: none !important;}") as demo:
    gr.Markdown("""
    # 🎯 StableCog Credit Dashboard
    
    *Monitor your API credits and plan your image generation projects efficiently.*
    """)
    
    # Status row
    with gr.Row():
        with gr.Column(scale=2):
            html_output = gr.HTML(label="Credit Status")
        with gr.Column(scale=1):
            raw_output = gr.Code(
                label="📋 Raw API Response", 
                language="json", 
                interactive=False,
                lines=15
            )
    
    # Stats row
    with gr.Row():
        with gr.Column():
            credits_display = gr.Number(
                label="Remaining Credits", 
                interactive=False,
                elem_classes="stat-box"
            )
        with gr.Column():
            usage_display = gr.Number(
                label="Usage Percentage", 
                interactive=False,
                elem_classes="stat-box"
            )
    
    # Recommendation row
    with gr.Row():
        recommendation_box = gr.Textbox(
            label="🎯 AI Recommendation", 
            interactive=False,
            lines=3,
            elem_classes="recommendation-box"
        )
    
    # Control row
    with gr.Row():
        check_btn = gr.Button(
            "🔄 Check Credits Now", 
            variant="primary", 
            size="lg",
            elem_classes="refresh-btn"
        )
    
    # Auto-check on load
    demo.load(fn=update_display, inputs=None, outputs=[html_output, raw_output, credits_display, usage_display])
    
    # Connect button and update recommendation
    def update_all():
        html, raw, credits, usage = update_display()
        recommendation = get_recommendation(credits, usage)
        return html, raw, credits, usage, recommendation
    
    check_btn.click(
        fn=update_all, 
        inputs=None, 
        outputs=[html_output, raw_output, credits_display, usage_display, recommendation_box]
    )
    
    # Instructions and info
    with gr.Accordion("📚 How to Use & Setup", open=False):
        gr.Markdown("""
        ### Setting Up on Hugging Face Spaces:
        
        1. **Add your API key as a Secret:**
           - Go to your Space's Settings → Secrets
           - Add a new secret with:
             - Key: `STABLECOG_API_KEY`
             - Value: `your_actual_api_key_here`
        
        2. **API Key Safety:**
           - Never hardcode your API key in the app
           - Hugging Face Secrets encrypt your key
           - The app will only work with a valid key
        
        3. **Understanding Credits:**
           - **Total Credits**: Lifetime credits purchased
           - **Remaining Credits**: Currently available for use
           - **Used Credits**: Credits spent on generations
           - **Usage %**: Percentage of total credits used
        
        4. **Recommendations are based on:**
           - Remaining credit count
           - Usage percentage
           - Common workload patterns
        """)
    
    gr.Markdown("""
    ---
    *Built with ❤️ for StableCog users | [Report Issues](https://github.com/stability-ai/stablecog/issues)*
    """)

if __name__ == "__main__":
    # For Hugging Face Spaces
    demo.launch(
        server_name="0.0.0.0",
        server_port=7860,
        share=False,
        show_error=True
    )