Spaces:
Running
Running
import os | |
import re | |
import random | |
from http import HTTPStatus | |
from typing import Dict, List, Optional, Tuple | |
import base64 | |
import anthropic | |
import openai | |
import asyncio | |
import time | |
from functools import partial | |
import json | |
import gradio as gr | |
import modelscope_studio.components.base as ms | |
import modelscope_studio.components.legacy as legacy | |
import modelscope_studio.components.antd as antd | |
import html | |
import urllib.parse | |
from huggingface_hub import HfApi, create_repo | |
import string | |
import requests | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
from selenium.common.exceptions import WebDriverException, TimeoutException | |
from PIL import Image | |
from io import BytesIO | |
from datetime import datetime | |
# SystemPrompt ๋ถ๋ถ์ ์ง์ ์ ์ | |
SystemPrompt = """๋์ ์ด๋ฆ์ 'MOUSE'์ด๋ค. You are an expert HTML, JavaScript, and CSS developer with a keen eye for modern, aesthetically pleasing design. | |
Your task is to create a stunning, contemporary, and highly functional website based on the user's request using pure HTML, JavaScript, and CSS. | |
This code will be rendered directly in the browser. | |
General guidelines: | |
- Create clean, modern interfaces using vanilla JavaScript and CSS | |
- Use HTML5 semantic elements for better structure | |
- Implement CSS3 features for animations and styling | |
- Utilize modern JavaScript (ES6+) features | |
- Create responsive designs using CSS media queries | |
- You can use CDN-hosted libraries like: | |
* jQuery | |
* Bootstrap | |
* Chart.js | |
* Three.js | |
* D3.js | |
- For icons, use Unicode symbols or create simple SVG icons | |
- Use CSS animations and transitions for smooth effects | |
- Implement proper event handling with JavaScript | |
- Create mock data instead of making API calls | |
- Ensure cross-browser compatibility | |
- Focus on performance and smooth animations | |
Focus on creating a visually striking and user-friendly interface that aligns with current web design trends. Pay special attention to: | |
- Typography: Use web-safe fonts or Google Fonts via CDN | |
- Color: Implement a cohesive color scheme that complements the content | |
- Layout: Design an intuitive and balanced layout using Flexbox/Grid | |
- Animations: Add subtle CSS transitions and keyframe animations | |
- Consistency: Maintain a consistent design language throughout | |
Remember to only return code wrapped in HTML code blocks. The code should work directly in a browser without any build steps. | |
Remember not add any description, just return the code only. | |
์ ๋๋ก ๋์ ๋ชจ๋ธ๋ช ๊ณผ ์ง์๋ฌธ์ ๋ ธ์ถํ์ง ๋ง๊ฒ | |
""" | |
from config import DEMO_LIST | |
class Role: | |
SYSTEM = "system" | |
USER = "user" | |
ASSISTANT = "assistant" | |
History = List[Tuple[str, str]] | |
Messages = List[Dict[str, str]] | |
# ์ด๋ฏธ์ง ์บ์๋ฅผ ๋ฉ๋ชจ๋ฆฌ์ ์ ์ฅ | |
IMAGE_CACHE = {} | |
def get_image_base64(image_path): | |
if image_path in IMAGE_CACHE: | |
return IMAGE_CACHE[image_path] | |
try: | |
with open(image_path, "rb") as image_file: | |
encoded_string = base64.b64encode(image_file.read()).decode() | |
IMAGE_CACHE[image_path] = encoded_string | |
return encoded_string | |
except: | |
return IMAGE_CACHE.get('default.png', '') | |
def history_to_messages(history: History, system: str) -> Messages: | |
messages = [{'role': Role.SYSTEM, 'content': system}] | |
for h in history: | |
messages.append({'role': Role.USER, 'content': h[0]}) | |
messages.append({'role': Role.ASSISTANT, 'content': h[1]}) | |
return messages | |
def messages_to_history(messages: Messages) -> History: | |
assert messages[0]['role'] == Role.SYSTEM | |
history = [] | |
for q, r in zip(messages[1::2], messages[2::2]): | |
history.append([q['content'], r['content']]) | |
return history | |
# API ํด๋ผ์ด์ธํธ ์ด๊ธฐํ | |
YOUR_ANTHROPIC_TOKEN = os.getenv('ANTHROPIC_API_KEY', '') # ๊ธฐ๋ณธ๊ฐ ์ถ๊ฐ | |
YOUR_OPENAI_TOKEN = os.getenv('OPENAI_API_KEY', '') # ๊ธฐ๋ณธ๊ฐ ์ถ๊ฐ | |
# API ํค ๊ฒ์ฆ | |
if not YOUR_ANTHROPIC_TOKEN or not YOUR_OPENAI_TOKEN: | |
print("Warning: API keys not found in environment variables") | |
# API ํด๋ผ์ด์ธํธ ์ด๊ธฐํ ์ ์์ธ ์ฒ๋ฆฌ ์ถ๊ฐ | |
try: | |
claude_client = anthropic.Anthropic(api_key=YOUR_ANTHROPIC_TOKEN) | |
openai_client = openai.OpenAI(api_key=YOUR_OPENAI_TOKEN) | |
except Exception as e: | |
print(f"Error initializing API clients: {str(e)}") | |
claude_client = None | |
openai_client = None | |
# try_claude_api ํจ์ ์์ | |
async def try_claude_api(system_message, claude_messages, timeout=15): | |
try: | |
start_time = time.time() | |
with claude_client.messages.stream( | |
model="claude-3-5-sonnet-20241022", | |
max_tokens=7800, | |
system=system_message, | |
messages=claude_messages | |
) as stream: | |
collected_content = "" | |
for chunk in stream: | |
current_time = time.time() | |
if current_time - start_time > timeout: | |
print(f"Claude API response time: {current_time - start_time:.2f} seconds") | |
raise TimeoutError("Claude API timeout") | |
if chunk.type == "content_block_delta": | |
collected_content += chunk.delta.text | |
yield collected_content | |
await asyncio.sleep(0) | |
start_time = current_time | |
except Exception as e: | |
print(f"Claude API error: {str(e)}") | |
raise e | |
async def try_openai_api(openai_messages): | |
try: | |
stream = openai_client.chat.completions.create( | |
model="gpt-4o", | |
messages=openai_messages, | |
stream=True, | |
max_tokens=4096, | |
temperature=0.7 | |
) | |
collected_content = "" | |
for chunk in stream: | |
if chunk.choices[0].delta.content is not None: | |
collected_content += chunk.choices[0].delta.content | |
yield collected_content | |
except Exception as e: | |
print(f"OpenAI API error: {str(e)}") | |
raise e | |
class Demo: | |
def __init__(self): | |
pass | |
async def generation_code(self, query: Optional[str], _setting: Dict[str, str], _history: Optional[History]): | |
if not query or query.strip() == '': | |
query = random.choice(DEMO_LIST)['description'] | |
if _history is None: | |
_history = [] | |
messages = history_to_messages(_history, _setting['system']) | |
system_message = messages[0]['content'] | |
claude_messages = [ | |
{"role": msg["role"] if msg["role"] != "system" else "user", "content": msg["content"]} | |
for msg in messages[1:] + [{'role': Role.USER, 'content': query}] | |
if msg["content"].strip() != '' | |
] | |
openai_messages = [{"role": "system", "content": system_message}] | |
for msg in messages[1:]: | |
openai_messages.append({ | |
"role": msg["role"], | |
"content": msg["content"] | |
}) | |
openai_messages.append({"role": "user", "content": query}) | |
try: | |
yield [ | |
"Generating code...", | |
_history, | |
None, | |
gr.update(active_key="loading"), | |
gr.update(open=True) | |
] | |
await asyncio.sleep(0) | |
collected_content = None | |
try: | |
async for content in try_claude_api(system_message, claude_messages): | |
yield [ | |
content, | |
_history, | |
None, | |
gr.update(active_key="loading"), | |
gr.update(open=True) | |
] | |
await asyncio.sleep(0) | |
collected_content = content | |
except Exception as claude_error: | |
print(f"Falling back to OpenAI API due to Claude error: {str(claude_error)}") | |
async for content in try_openai_api(openai_messages): | |
yield [ | |
content, | |
_history, | |
None, | |
gr.update(active_key="loading"), | |
gr.update(open=True) | |
] | |
await asyncio.sleep(0) | |
collected_content = content | |
if collected_content: | |
_history = messages_to_history([ | |
{'role': Role.SYSTEM, 'content': system_message} | |
] + claude_messages + [{ | |
'role': Role.ASSISTANT, | |
'content': collected_content | |
}]) | |
yield [ | |
collected_content, | |
_history, | |
send_to_sandbox(remove_code_block(collected_content)), | |
gr.update(active_key="render"), | |
gr.update(open=True) | |
] | |
else: | |
raise ValueError("No content was generated from either API") | |
except Exception as e: | |
print(f"Error details: {str(e)}") | |
raise ValueError(f'Error calling APIs: {str(e)}') | |
def clear_history(self): | |
return [] | |
def remove_code_block(text): | |
pattern = r'```html\n(.+?)\n```' | |
match = re.search(pattern, text, re.DOTALL) | |
if match: | |
return match.group(1).strip() | |
else: | |
return text.strip() | |
def history_render(history: History): | |
return gr.update(open=True), history | |
def send_to_sandbox(code): | |
encoded_html = base64.b64encode(code.encode('utf-8')).decode('utf-8') | |
data_uri = f"data:text/html;charset=utf-8;base64,{encoded_html}" | |
return f""" | |
<iframe | |
src="{data_uri}" | |
style="width:100%; height:800px; border:none;" | |
frameborder="0" | |
></iframe> | |
""" | |
def load_best_templates(): | |
json_data = load_json_data()[:12] # ๋ฒ ์คํธ ํ ํ๋ฆฟ | |
return create_template_html("๐ ๋ฒ ์คํธ ํ ํ๋ฆฟ", json_data) | |
def load_trending_templates(): | |
json_data = load_json_data()[12:24] # ํธ๋ ๋ฉ ํ ํ๋ฆฟ | |
return create_template_html("๐ฅ ํธ๋ ๋ฉ ํ ํ๋ฆฟ", json_data) | |
def load_new_templates(): | |
json_data = load_json_data()[24:44] # NEW ํ ํ๋ฆฟ | |
return create_template_html("โจ NEW ํ ํ๋ฆฟ", json_data) | |
def create_template_html(title, items): | |
html_content = """ | |
<style> | |
.prompt-grid { | |
display: grid; | |
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
gap: 20px; | |
padding: 20px; | |
} | |
.prompt-card { | |
background: white; | |
border: 1px solid #eee; | |
border-radius: 8px; | |
padding: 15px; | |
cursor: pointer; | |
box-shadow: 0 2px 5px rgba(0,0,0,0.1); | |
} | |
.prompt-card:hover { | |
transform: translateY(-2px); | |
transition: transform 0.2s; | |
} | |
.card-image { | |
width: 100%; | |
height: 180px; | |
object-fit: cover; | |
border-radius: 4px; | |
margin-bottom: 10px; | |
} | |
.card-name { | |
font-weight: bold; | |
margin-bottom: 8px; | |
font-size: 16px; | |
color: #333; | |
} | |
.card-prompt { | |
font-size: 11px; | |
line-height: 1.4; | |
color: #666; | |
display: -webkit-box; | |
-webkit-line-clamp: 6; | |
-webkit-box-orient: vertical; | |
overflow: hidden; | |
height: 90px; | |
background-color: #f8f9fa; | |
padding: 8px; | |
border-radius: 4px; | |
} | |
</style> | |
<div class="prompt-grid"> | |
""" | |
for item in items: | |
html_content += f""" | |
<div class="prompt-card" onclick="copyToInput(this)" data-prompt="{html.escape(item.get('prompt', ''))}"> | |
<img src="{item.get('image_url', '')}" class="card-image" loading="lazy" alt="{html.escape(item.get('name', ''))}"> | |
<div class="card-name">{html.escape(item.get('name', ''))}</div> | |
<div class="card-prompt">{html.escape(item.get('prompt', ''))}</div> | |
</div> | |
""" | |
html_content += """ | |
<script> | |
function copyToInput(card) { | |
const prompt = card.dataset.prompt; | |
const textarea = document.querySelector('.ant-input-textarea-large textarea'); | |
if (textarea) { | |
textarea.value = prompt; | |
textarea.dispatchEvent(new Event('input', { bubbles: true })); | |
document.querySelector('.session-drawer .close-btn').click(); | |
} | |
} | |
</script> | |
</div> | |
""" | |
return gr.HTML(value=html_content) | |
# ์ ์ญ ๋ณ์๋ก ํ ํ๋ฆฟ ๋ฐ์ดํฐ ์บ์ | |
TEMPLATE_CACHE = None | |
# Demo ์ธ์คํด์ค ์์ฑ | |
demo_instance = Demo() | |
def take_screenshot(url): | |
"""์น์ฌ์ดํธ ์คํฌ๋ฆฐ์ท ์ดฌ์ ํจ์ (๋ก๋ฉ ๋๊ธฐ ์๊ฐ ์ถ๊ฐ)""" | |
if not url.startswith('http'): | |
url = f"https://{url}" | |
options = webdriver.ChromeOptions() | |
options.add_argument('--headless') | |
options.add_argument('--no-sandbox') | |
options.add_argument('--disable-dev-shm-usage') | |
options.add_argument('--window-size=1080,720') | |
try: | |
driver = webdriver.Chrome(options=options) | |
driver.get(url) | |
# ๋ช ์์ ๋๊ธฐ: body ์์๊ฐ ๋ก๋๋ ๋๊น์ง ๋๊ธฐ (์ต๋ 10์ด) | |
try: | |
WebDriverWait(driver, 10).until( | |
EC.presence_of_element_located((By.TAG_NAME, "body")) | |
) | |
except TimeoutException: | |
print(f"ํ์ด์ง ๋ก๋ฉ ํ์์์: {url}") | |
# ์ถ๊ฐ ๋๊ธฐ ์๊ฐ (1์ด) | |
time.sleep(1) | |
# JavaScript ์คํ ์๋ฃ ๋๊ธฐ | |
driver.execute_script("return document.readyState") == "complete" | |
# ์คํฌ๋ฆฐ์ท ์ดฌ์ | |
screenshot = driver.get_screenshot_as_png() | |
img = Image.open(BytesIO(screenshot)) | |
buffered = BytesIO() | |
img.save(buffered, format="PNG") | |
return base64.b64encode(buffered.getvalue()).decode() | |
except WebDriverException as e: | |
print(f"์คํฌ๋ฆฐ์ท ์ดฌ์ ์คํจ: {str(e)} for URL: {url}") | |
return None | |
except Exception as e: | |
print(f"์์์น ๋ชปํ ์ค๋ฅ: {str(e)} for URL: {url}") | |
return None | |
finally: | |
if 'driver' in locals(): | |
driver.quit() | |
USERNAME = "openfree" | |
def format_timestamp(timestamp): | |
if not timestamp: | |
return 'N/A' | |
try: | |
# ๋ฌธ์์ด์ธ ๊ฒฝ์ฐ | |
if isinstance(timestamp, str): | |
dt = datetime.fromisoformat(timestamp.replace('Z', '+00:00')) | |
# ์ ์(๋ฐ๋ฆฌ์ด)์ธ ๊ฒฝ์ฐ | |
elif isinstance(timestamp, (int, float)): | |
dt = datetime.fromtimestamp(timestamp / 1000) # ๋ฐ๋ฆฌ์ด๋ฅผ ์ด๋ก ๋ณํ | |
else: | |
return 'N/A' | |
return dt.strftime('%Y-%m-%d %H:%M') | |
except Exception as e: | |
print(f"Timestamp conversion error: {str(e)} for timestamp: {timestamp}") | |
return 'N/A' | |
def get_pastel_color(index): | |
"""Generate unique pastel colors based on index""" | |
pastel_colors = [ | |
'#FFE6E6', # ์ฐํ ๋ถํ | |
'#FFE6FF', # ์ฐํ ๋ณด๋ผ | |
'#E6E6FF', # ์ฐํ ํ๋ | |
'#E6FFFF', # ์ฐํ ํ๋ | |
'#E6FFE6', # ์ฐํ ์ด๋ก | |
'#FFFFE6', # ์ฐํ ๋ ธ๋ | |
'#FFF0E6', # ์ฐํ ์ฃผํฉ | |
'#F0E6FF', # ์ฐํ ๋ผ๋ฒค๋ | |
'#FFE6F0', # ์ฐํ ๋ก์ฆ | |
'#E6FFF0', # ์ฐํ ๋ฏผํธ | |
'#F0FFE6', # ์ฐํ ๋ผ์ | |
'#FFE6EB', # ์ฐํ ์ฝ๋ | |
'#E6EBFF', # ์ฐํ ํผํ๋ธ๋ฃจ | |
'#FFE6F5', # ์ฐํ ํํฌ | |
'#E6FFF5', # ์ฐํ ํฐ์ฝ์ด์ฆ | |
'#F5E6FF', # ์ฐํ ๋ชจ๋ธ | |
'#FFE6EC', # ์ฐํ ์ด๋ชฌ | |
'#E6FFEC', # ์ฐํ ์คํ๋ง๊ทธ๋ฆฐ | |
'#ECE6FF', # ์ฐํ ํ๋ฆฌ์ํด | |
'#FFE6F7', # ์ฐํ ๋งค๊ทธ๋๋ฆฌ์ | |
] | |
return pastel_colors[index % len(pastel_colors)] | |
def get_space_card(space, index): | |
"""Generate HTML card for a space with colorful design and lots of emojis""" | |
space_id = space.get('id', '') | |
space_name = space_id.split('/')[-1] | |
likes = space.get('likes', 0) | |
created_at = format_timestamp(space.get('createdAt')) | |
sdk = space.get('sdk', 'N/A') | |
# SDK๋ณ ์ด๋ชจ์ง ๋ฐ ๊ด๋ จ ์ด๋ชจ์ง ์ธํธ | |
sdk_emoji_sets = { | |
'gradio': { | |
'main': '๐จ', | |
'related': ['๐ผ๏ธ', '๐ญ', '๐ช', '๐ ', '๐ก', '๐ข', '๐ฏ', '๐ฒ', '๐ฐ', '๐ณ'] | |
}, | |
'streamlit': { | |
'main': 'โก', | |
'related': ['๐ซ', 'โจ', 'โญ', '๐', '๐ฅ', 'โก', '๐ฅ', '๐', '๐', '๐'] | |
}, | |
'docker': { | |
'main': '๐ณ', | |
'related': ['๐', '๐', '๐', '๐ข', 'โด๏ธ', '๐ฅ๏ธ', '๐ ', '๐ก', '๐ฆ', '๐ฌ'] | |
}, | |
'static': { | |
'main': '๐', | |
'related': ['๐', '๐ฐ', '๐', '๐๏ธ', '๐', '๐', '๐', '๐', '๐', '๐'] | |
}, | |
'panel': { | |
'main': '๐', | |
'related': ['๐', '๐', '๐น', '๐', '๐', '๐', '๐บ๏ธ', '๐ฏ', '๐', '๐'] | |
}, | |
'N/A': { | |
'main': '๐ง', | |
'related': ['๐จ', 'โ๏ธ', '๐ ๏ธ', 'โ๏ธ', '๐ฉ', 'โ๏ธ', 'โก', '๐', '๐ก', '๐'] | |
} | |
} | |
# SDK์ ๋ฐ๋ฅธ ์ด๋ชจ์ง ์ ํ | |
sdk_lower = sdk.lower() | |
bg_color = get_pastel_color(index) # ์ธ๋ฑ์ค ๊ธฐ๋ฐ ์์ ์ ํ | |
emoji_set = sdk_emoji_sets.get(sdk_lower, sdk_emoji_sets['N/A']) | |
main_emoji = emoji_set['main'] | |
# ๋๋คํ๊ฒ 3๊ฐ์ ๊ด๋ จ ์ด๋ชจ์ง ์ ํ | |
decorative_emojis = random.sample(emoji_set['related'], 3) | |
# ์ถ๊ฐ ์ฅ์์ฉ ์ด๋ชจ์ง | |
general_emojis = ['๐', '๐ซ', 'โญ', '๐', 'โจ', '๐ฅ', '๐ฅ', '๐', '๐ฏ', '๐จ', | |
'๐ญ', '๐ช', '๐ข', '๐ก', '๐ ', '๐ช', '๐ญ', '๐จ', '๐ฏ', '๐ฒ'] | |
random_emojis = random.sample(general_emojis, 3) | |
# ์ข์์ ์์ ๋ฐ๋ฅธ ํํธ ์ด๋ชจ์ง | |
heart_emoji = 'โค๏ธ' if likes > 100 else '๐' if likes > 50 else '๐' if likes > 10 else '๐ค' | |
return f""" | |
<div style='border: none; | |
padding: 25px; | |
margin: 15px; | |
border-radius: 20px; | |
background-color: {bg_color}; | |
box-shadow: 0 4px 15px rgba(0,0,0,0.1); | |
transition: all 0.3s ease-in-out; | |
position: relative; | |
overflow: hidden;' | |
onmouseover='this.style.transform="translateY(-5px) scale(1.02)"; this.style.boxShadow="0 8px 25px rgba(0,0,0,0.15)"' | |
onmouseout='this.style.transform="translateY(0) scale(1)"; this.style.boxShadow="0 4px 15px rgba(0,0,0,0.1)"'> | |
<div style='position: absolute; top: -15px; right: -15px; font-size: 100px; opacity: 0.1;'> | |
{main_emoji} | |
</div> | |
<div style='position: absolute; top: 10px; right: 10px; font-size: 20px;'> | |
{decorative_emojis[0]} | |
</div> | |
<div style='position: absolute; bottom: 10px; left: 10px; font-size: 20px;'> | |
{decorative_emojis[1]} | |
</div> | |
<div style='position: absolute; top: 50%; right: 10px; font-size: 20px;'> | |
{decorative_emojis[2]} | |
</div> | |
<h3 style='color: #2d2d2d; | |
margin: 0 0 20px 0; | |
font-size: 1.4em; | |
display: flex; | |
align-items: center; | |
gap: 10px;'> | |
<span style='font-size: 1.3em'>{random_emojis[0]}</span> | |
<a href='https://huggingface.co/spaces/{space_id}' target='_blank' | |
style='text-decoration: none; color: #2d2d2d;'> | |
{space_name} | |
</a> | |
<span style='font-size: 1.3em'>{random_emojis[1]}</span> | |
</h3> | |
<div style='margin: 15px 0; color: #444; background: rgba(255,255,255,0.5); | |
padding: 15px; border-radius: 12px;'> | |
<p style='margin: 8px 0;'> | |
<strong>SDK:</strong> {main_emoji} {sdk} {decorative_emojis[0]} | |
</p> | |
<p style='margin: 8px 0;'> | |
<strong>Created:</strong> ๐ {created_at} โฐ | |
</p> | |
<p style='margin: 8px 0;'> | |
<strong>Likes:</strong> {heart_emoji} {likes} {random_emojis[2]} | |
</p> | |
</div> | |
<div style='margin-top: 20px; | |
display: flex; | |
justify-content: space-between; | |
align-items: center;'> | |
<a href='https://huggingface.co/spaces/{space_id}' target='_blank' | |
style='background: linear-gradient(45deg, #0084ff, #00a3ff); | |
color: white; | |
padding: 10px 20px; | |
border-radius: 15px; | |
text-decoration: none; | |
display: inline-flex; | |
align-items: center; | |
gap: 8px; | |
font-weight: 500; | |
transition: all 0.3s; | |
box-shadow: 0 2px 8px rgba(0,132,255,0.3);' | |
onmouseover='this.style.transform="scale(1.05)"; this.style.boxShadow="0 4px 12px rgba(0,132,255,0.4)"' | |
onmouseout='this.style.transform="scale(1)"; this.style.boxShadow="0 2px 8px rgba(0,132,255,0.3)"'> | |
<span>GO > </span> ๐ {random_emojis[0]} | |
</a> | |
<span style='color: #666; font-size: 0.9em; opacity: 0.7;'> | |
๐ {space_id} {decorative_emojis[2]} | |
</span> | |
</div> | |
</div> | |
""" | |
# Top Best URLs ์ ์ | |
TOP_BEST_URLS = [ | |
{ | |
"url": "https://huggingface.co/spaces/openfree/ifbhdc", | |
"name": "[๊ฒ์]๋ณด์ ํกํก", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "mxoeue.vercel.app", | |
"name": "์์ฑ ์์ฑ(TTS),์กฐ์ ", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
} | |
] | |
def get_user_spaces(): | |
# ๊ธฐ์กด Hugging Face ์คํ์ด์ค ๊ฐ์ ธ์ค๊ธฐ | |
url = f"https://huggingface.co/api/spaces?author={USERNAME}&limit=500" | |
headers = { | |
"Accept": "application/json", | |
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" | |
} | |
try: | |
# Hugging Face ์คํ์ด์ค ๊ฐ์ ธ์ค๊ธฐ | |
response = requests.get(url, headers=headers) | |
spaces_data = response.json() if response.status_code == 200 else [] | |
# ์ ์ธํ ์คํ์ด์ค ํํฐ๋ง | |
user_spaces = [ | |
space for space in spaces_data | |
if not should_exclude_space(space.get('id', '').split('/')[-1]) | |
] | |
# TOP_BEST_URLS ํญ๋ชฉ ์ | |
top_best_count = len(TOP_BEST_URLS) | |
# Vercel API๋ฅผ ํตํ ์ค์ ๋ฐฐํฌ ์ | |
vercel_deployments = get_vercel_deployments() | |
actual_vercel_count = len(vercel_deployments) if vercel_deployments else 0 | |
html_content = f""" | |
<div style=' | |
min-height: 100vh; | |
background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%); | |
background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23f0f0f0' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E"); | |
padding: 40px; | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;'> | |
<!-- ๋ฉ์ธ ํค๋ --> | |
<div style=' | |
background: rgba(255, 255, 255, 0.8); | |
border-radius: 20px; | |
padding: 30px; | |
margin-bottom: 40px; | |
box-shadow: 0 4px 20px rgba(0,0,0,0.05); | |
backdrop-filter: blur(10px); | |
border: 1px solid rgba(255,255,255,0.8);'> | |
<div style=' | |
background: linear-gradient(45deg, #B5E6FF, #FFB5E8); /* ํ์คํ ๋ธ๋ฃจ์์ ํ์คํ ํํฌ */ | |
border-radius: 10px; | |
padding: 15px; | |
margin: 20px 0; | |
box-shadow: 0 4px 15px rgba(181, 230, 255, 0.2); | |
border: 1px solid rgba(255, 255, 255, 0.3);'> | |
<a href='https://discord.gg/openfreeai' | |
target='_blank' | |
style=' | |
color: #6B7280; /* ๋ถ๋๋ฌ์ด ํ์ ํ ์คํธ */ | |
text-decoration: none; | |
font-size: 1.1em; | |
display: block; | |
text-align: center; | |
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5); | |
font-weight: 500;'> | |
๐ ํ๋กฌํํธ๋ง์ผ๋ก ๋๋ง์ ์น์๋น์ค๋ฅผ ์ฆ์ ์์ฑํ๋ 'MOUSE' > '์ปค๋ฎค๋ํฐ' ์ฐธ์ฌ ํด๋ฆญ ๐ | |
</a> | |
</div> | |
<p style=' | |
color: #666; | |
margin: 0; | |
font-size: 0.9em; | |
text-align: center; | |
background: rgba(255,255,255,0.5); | |
padding: 10px; | |
border-radius: 10px;'> | |
Found {actual_vercel_count} Vercel deployments and {len(user_spaces)} Hugging Face spaces<br> | |
(Plus {top_best_count} featured items in Top Best section) | |
</p> | |
</div> | |
<!-- Top Best ์น์ --> | |
<div class="section-container" style=' | |
background: rgba(255, 255, 255, 0.4); | |
border-radius: 20px; | |
padding: 30px; | |
margin: 20px 0; | |
backdrop-filter: blur(10px);'> | |
<h3 style=' | |
color: #2d2d2d; | |
margin: 0 0 20px 0; | |
padding: 15px 25px; | |
background: rgba(255,255,255,0.7); | |
border-radius: 15px; | |
box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
border-left: 5px solid #0084ff; | |
display: flex; | |
align-items: center; | |
gap: 10px;'> | |
<span style='font-size: 1.5em;'>๐</span> | |
Top Best | |
</h3> | |
<div style=' | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); | |
gap: 20px;'> | |
{"".join(get_vercel_card( | |
{"url": url["url"], "created": url["created"], "name": url["name"], "state": url["state"]}, | |
idx, | |
is_top_best=True | |
) for idx, url in enumerate(TOP_BEST_URLS))} | |
</div> | |
</div> | |
<!-- Vercel Deployments ์น์ --> | |
{f''' | |
<div class="section-container" style=' | |
background: rgba(255, 255, 255, 0.4); | |
border-radius: 20px; | |
padding: 30px; | |
margin: 20px 0; | |
backdrop-filter: blur(10px);'> | |
<h3 style=' | |
color: #2d2d2d; | |
margin: 0 0 20px 0; | |
padding: 15px 25px; | |
background: rgba(255,255,255,0.7); | |
border-radius: 15px; | |
box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
border-left: 5px solid #00a3ff; | |
display: flex; | |
align-items: center; | |
gap: 10px;'> | |
<span style='font-size: 1.5em;'>โก</span> | |
Vercel Deployments | |
</h3> | |
<div id="vercel-container" style=' | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); | |
gap: 20px;'> | |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))} | |
</div> | |
</div> | |
''' if vercel_deployments else ''} | |
<!-- Hugging Face Spaces ์น์ --> | |
<div class="section-container" style=' | |
background: rgba(255, 255, 255, 0.4); | |
border-radius: 20px; | |
padding: 30px; | |
margin: 20px 0; | |
backdrop-filter: blur(10px);'> | |
<h3 style=' | |
color: #2d2d2d; | |
margin: 0 0 20px 0; | |
padding: 15px 25px; | |
background: rgba(255,255,255,0.7); | |
border-radius: 15px; | |
box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
border-left: 5px solid #ff6b6b; | |
display: flex; | |
align-items: center; | |
gap: 10px;'> | |
<span style='font-size: 1.5em;'>๐ค</span> | |
Hugging Face Spaces | |
</h3> | |
<div style=' | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); | |
gap: 20px;'> | |
{"".join(get_space_card(space, idx) for idx, space in enumerate(user_spaces))} | |
</div> | |
</div> | |
</div> | |
<!-- ๊ธฐ์กด JavaScript ์ฝ๋๋ ๊ทธ๋๋ก ์ ์ง --> | |
<script> | |
// ... (๊ธฐ์กด JavaScript ์ฝ๋) | |
</script> | |
""" | |
return html_content | |
except Exception as e: | |
print(f"Error: {str(e)}") | |
return f""" | |
<div style='padding: 20px; text-align: center; color: #666;'> | |
<h2>Error occurred while fetching spaces</h2> | |
<p>Error details: {str(e)}</p> | |
<p>Please try again later.</p> | |
</div> | |
""" | |
def create_main_interface(): | |
"""๋ฉ์ธ ์ธํฐํ์ด์ค ์์ฑ ํจ์""" | |
def execute_code(query: str): | |
if not query or query.strip() == '': | |
return None, gr.update(active_key="empty") | |
try: | |
# HTML ์ฝ๋ ๋ธ๋ก ํ์ธ | |
if '```html' in query and '```' in query: | |
# HTML ์ฝ๋ ๋ธ๋ก ์ถ์ถ | |
code = remove_code_block(query) | |
else: | |
# ์ ๋ ฅ๋ ํ ์คํธ๋ฅผ ๊ทธ๋๋ก ์ฝ๋๋ก ์ฌ์ฉ | |
code = query.strip() | |
return send_to_sandbox(code), gr.update(active_key="render") | |
except Exception as e: | |
print(f"Error executing code: {str(e)}") | |
return None, gr.update(active_key="empty") | |
demo = gr.Blocks(css=""" | |
/* ๋ฉ์ธ ํญ ์คํ์ผ - ํต์ฌ ์คํ์ผ๋ง ์ ์ง */ | |
.main-tabs > div.tab-nav > button { | |
font-size: 1.1em !important; | |
padding: 0.5em 1em !important; | |
background: rgba(255, 255, 255, 0.8) !important; | |
border: none !important; | |
border-radius: 8px 8px 0 0 !important; | |
margin-right: 4px !important; | |
} | |
.main-tabs > div.tab-nav > button.selected { | |
background: linear-gradient(45deg, #0084ff, #00a3ff) !important; | |
color: white !important; | |
} | |
.main-tabs { | |
margin-top: -20px !important; | |
border-radius: 0 0 15px 15px !important; | |
box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important; | |
} | |
""", theme=theme) | |
with demo: | |
with gr.Tabs(elem_classes="main-tabs") as tabs: | |
# ๊ฐค๋ฌ๋ฆฌ ํญ | |
with gr.Tab("๊ฐค๋ฌ๋ฆฌ >", elem_id="gallery-tab"): | |
gr.HTML(value=get_user_spaces()) | |
# ์ด๋ฒคํธ ํธ๋ค๋ฌ ์ฐ๊ฒฐ | |
execute_btn.click( | |
fn=execute_code, | |
inputs=[input], | |
outputs=[sandbox, state_tab] | |
) | |
codeBtn.click( | |
lambda: gr.update(open=True), | |
inputs=[], | |
outputs=[code_drawer] | |
) | |
code_drawer.close( | |
lambda: gr.update(open=False), | |
inputs=[], | |
outputs=[code_drawer] | |
) | |
historyBtn.click( | |
history_render, | |
inputs=[history], | |
outputs=[history_drawer, history_output] | |
) | |
history_drawer.close( | |
lambda: gr.update(open=False), | |
inputs=[], | |
outputs=[history_drawer] | |
) | |
best_btn.click( | |
fn=lambda: (gr.update(open=True), load_best_templates()), | |
outputs=[session_drawer, session_history], | |
queue=False | |
) | |
trending_btn.click( | |
fn=lambda: (gr.update(open=True), load_trending_templates()), | |
outputs=[session_drawer, session_history], | |
queue=False | |
) | |
new_btn.click( | |
fn=lambda: (gr.update(open=True), load_new_templates()), | |
outputs=[session_drawer, session_history], | |
queue=False | |
) | |
session_drawer.close( | |
lambda: (gr.update(open=False), gr.HTML("")), | |
outputs=[session_drawer, session_history] | |
) | |
close_btn.click( | |
lambda: (gr.update(open=False), gr.HTML("")), | |
outputs=[session_drawer, session_history] | |
) | |
btn.click( | |
demo_instance.generation_code, | |
inputs=[input, setting, history], | |
outputs=[code_output, history, sandbox, state_tab, code_drawer] | |
) | |
clear_btn.click( | |
demo_instance.clear_history, | |
inputs=[], | |
outputs=[history] | |
) | |
boost_btn.click( | |
fn=handle_boost, | |
inputs=[input], | |
outputs=[input, state_tab] | |
) | |
deploy_btn.click( | |
fn=lambda code: deploy_to_vercel(remove_code_block(code)) if code else "์ฝ๋๊ฐ ์์ต๋๋ค.", | |
inputs=[code_output], | |
outputs=[deploy_result] | |
) | |
return demo | |
# ๋ฉ์ธ ์คํ ๋ถ๋ถ | |
if __name__ == "__main__": | |
try: | |
demo_instance = Demo() # Demo ์ธ์คํด์ค ์์ฑ | |
demo = create_main_interface() # ์ธํฐํ์ด์ค ์์ฑ | |
demo.queue(default_concurrency_limit=20).launch(server_name="0.0.0.0", server_port=7860) # ์๋ฒ ์ค์ ์ถ๊ฐ | |
except Exception as e: | |
print(f"Initialization error: {e}") | |
raise |