Spaces:
Sleeping
Sleeping
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> | |
""" | |
theme = gr.themes.Soft() | |
def load_json_data(): | |
# Return hardcoded data | |
return [ | |
{ | |
"name": "[Game] Jewel Pop Game", | |
"image_url": "data:image/gif;base64," + get_image_base64('jewel.gif'), | |
"prompt": "Refer to the prompt composition for this game at https://huggingface.co/spaces/openfree/ifbhdc" | |
}, | |
{ | |
"name": "[Homepage] AI Startup", | |
"image_url": "data:image/png;base64," + get_image_base64('home.png'), | |
"prompt": "Create a landing page with a professional and visually stunning design. Use appropriate emojis and reflect the following information: Mouse-I is a tool that automatically generates fully functional web services within 60 seconds based on user prompts. Mouse-I's main features include โฒOne-click real-time deployment โฒReal-time preview โฒOver 40 instant templates โฒReal-time editing. It offers various templates such as MBTI tests, investment management tools, and Tetris games, making it immediately accessible even for non-developers." | |
}, | |
{ | |
"name": "[Psychology] MBTI Diagnostic Service", | |
"image_url": "data:image/png;base64," + get_image_base64('mbti.png'), | |
"prompt": "Create 15 questions with multiple-choice answers to diagnose MBTI and display detailed results about the respective personality type." | |
}, | |
{ | |
"name": "[Dashboard] Investment Portfolio Dashboard", | |
"image_url": "data:image/png;base64," + get_image_base64('dash.png'), | |
"prompt": "Create an interactive dashboard with Chart.js showing different types of charts (line, bar, pie) with smooth animations. Include buttons to switch between different data views. Build an investment management tool to analyze portfolios, visualizing risk, return, and asset allocation." | |
}, | |
{ | |
"name": "[Multimodal] Audio Visualizer", | |
"image_url": "data:image/png;base64," + get_image_base64('audio.png'), | |
"prompt": "Use the Web Audio API and Canvas to create an audio visualizer. Implement dynamic bars that react to music frequency data with smooth animations. Include play/pause controls and a color theme selection feature." | |
}, | |
{ | |
"name": "[Game] Chess Game", | |
"image_url": "data:image/png;base64," + get_image_base64('chess.png'), | |
"prompt": "Chess Game: Identify and apply the rules of chess correctly. The opponent should play automatically." | |
}, | |
{ | |
"name": "[Game] Brick Breaker Game", | |
"image_url": "data:image/png;base64," + get_image_base64('alcaroid.png'), | |
"prompt": "Create a brick-breaking game." | |
}, | |
{ | |
"name": "[Fun] Tarot Card Fortune", | |
"image_url": "data:image/png;base64," + get_image_base64('tarot.png'), | |
"prompt": "Generate a tarot card fortune-telling experience. Make it detailed, professional, and easy to understand, with long responses. Provide all explanations in Korean." | |
}, | |
{ | |
"name": "[Fun] AI Chef", | |
"image_url": "data:image/png;base64," + get_image_base64('cook.png'), | |
"prompt": "Present 10 diverse ingredients, and when selected and placed in the 'cooking pot,' output a dish and recipe that can be made with the chosen ingredients. Use web crawling or search to enhance recipes." | |
}, | |
{ | |
"name": "[Multimodal] Text-to-Speech Generator with Adjustments", | |
"image_url": "data:image/png;base64," + get_image_base64('tts.png'), | |
"prompt": "Create an interface to convert text into speech and adjust voice parameters in real time." | |
}, | |
{ | |
"name": "[Learning] 3D Molecular Simulation", | |
"image_url": "data:image/png;base64," + get_image_base64('3ds.png'), | |
"prompt": "Visualize 3D molecular structures with Three.js. Allow rotation, zoom, display of atomic information, and animation effects." | |
}, | |
{ | |
"name": "[Component] Email Sign-Up and Login", | |
"image_url": "data:image/png;base64," + get_image_base64('login.png'), | |
"prompt": "Create an email sign-up and login webpage. Include the following: 1. Design - Modern and minimalist UI/UX - Responsive layout - Smooth animation effects - Proper form validation feedback 2. Sign-Up functionality 3. Login functionality - Email/password input - Auto-login option - Password recovery link - Error message on failed login - Welcome message on successful login." | |
}, | |
{ | |
"name": "[Psychology] My Psychological State Quiz", | |
"image_url": "data:image/png;base64," + get_image_base64('simri.png'), | |
"prompt": "Create multiple-choice questions to assess various psychological states. Provide psychological interpretations for selected answers. Example: You encounter an animal on your walk. 1) Dog 2) Lion 3) Bear 4) Cat." | |
}, | |
{ | |
"name": "[Fun] Lucky Roulette", | |
"image_url": "data:image/png;base64," + get_image_base64('roolet.png'), | |
"prompt": "Create a spinning lucky roulette where clicking a button launches an arrow. The arrow lands randomly on a number, each associated with a prize ranging from 'None' to '1 Million Won.' Display the prize amount for the selected number." | |
}, | |
{ | |
"name": "[Game] Tetris Game", | |
"image_url": "data:image/png;base64," + get_image_base64('127.png'), | |
"prompt": "Build a classic Tetris game. Include start and restart buttons and follow Tetris rules accurately." | |
}, | |
{ | |
"name": "[Game] Memory Matching Card Game", | |
"image_url": "data:image/png;base64," + get_image_base64('112.png'), | |
"prompt": "Create a classic memory-matching card game with flip animations. Include a scoring system, timer, and difficulty levels. Add satisfying match/mismatch animations and sound effects using the Web Audio API." | |
}, | |
{ | |
"name": "[Tool] Interactive Scheduler", | |
"image_url": "data:image/png;base64," + get_image_base64('122.png'), | |
"prompt": "Build a calendar for managing schedules with drag-and-drop functionality. Add animations and schedule filtering features." | |
}, | |
{ | |
"name": "[Game] Typing Game", | |
"image_url": "data:image/png;base64," + get_image_base64('123.png'), | |
"prompt": "Create a game where players type falling words to score points. Include difficulty adjustments and sound effects." | |
}, | |
{ | |
"name": "[Animation] Interactive Stars", | |
"image_url": "data:image/png;base64," + get_image_base64('135.png'), | |
"prompt": "Create an interactive starry sky. As the user moves their mouse, stars and constellations appear." | |
}, | |
{ | |
"name": "[3D] Terrain Generator", | |
"image_url": "data:image/png;base64," + get_image_base64('131.png'), | |
"prompt": "Use Three.js to generate procedural terrain. Allow real-time adjustments for height, texture, and water effects." | |
}, | |
{ | |
"name": "[3D] Text Animator", | |
"image_url": "data:image/png;base64," + get_image_base64('132.png'), | |
"prompt": "Create 3D text animations with Three.js. Implement various transformation effects and physics-based particle effects." | |
}, | |
{ | |
"name": "[Widget] Weather Animation", | |
"image_url": "data:image/png;base64," + get_image_base64('114.png'), | |
"prompt": "Develop a weather animation widget that displays current weather conditions. Use Canvas to implement effects for rain, snow, clouds, and lightning with smooth transitions." | |
}, | |
{ | |
"name": "[Simulation] Physics Engine", | |
"image_url": "data:image/png;base64," + get_image_base64('125.png'), | |
"prompt": "Create a basic physics simulation using Canvas. Include gravity, collision, and elasticity effects for a ball-bouncing simulation." | |
}, | |
{ | |
"name": "[Audio] Sound Mixer", | |
"image_url": "data:image/png;base64," + get_image_base64('126.png'), | |
"prompt": "Develop an interface using the Web Audio API for mixing multiple sound sources. Include controls for volume, panning, and effects." | |
}, | |
{ | |
"name": "[Effect] Particle Text", | |
"image_url": "data:image/png;base64," + get_image_base64('116.png'), | |
"prompt": "Create a particle text effect where the text scatters into particles and reassembles on mouse hover using Canvas." | |
}, | |
{ | |
"name": "[3D] Bookshelf Gallery", | |
"image_url": "data:image/png;base64," + get_image_base64('115.png'), | |
"prompt": "Use CSS 3D transforms to create a rotating bookshelf gallery. Display detailed information when a book is clicked." | |
}, | |
{ | |
"name": "[Game] Rhythm Game", | |
"image_url": "data:image/png;base64," + get_image_base64('117.png'), | |
"prompt": "Create a simple rhythm game using the Web Audio API. Implement falling notes, timing judgments, and a scoring system." | |
}, | |
{ | |
"name": "[Animation] SVG Path", | |
"image_url": "data:image/png;base64," + get_image_base64('118.png'), | |
"prompt": "Create animations that follow SVG paths. Show the process of drawing various shapes and add interactive controls." | |
}, | |
{ | |
"name": "[Tool] Drawing Board", | |
"image_url": "data:image/png;base64," + get_image_base64('119.png'), | |
"prompt": "Develop a drawing tool using Canvas. Include brush size, color changes, eraser functionality, and the ability to save drawing history." | |
}, | |
{ | |
"name": "[Game] Puzzle Slide", | |
"image_url": "data:image/png;base64," + get_image_base64('120.png'), | |
"prompt": "Create a slide puzzle game using numbers or images. Add move animations and a completion check feature." | |
}, | |
{ | |
"name": "[Component] Interactive Timeline", | |
"image_url": "data:image/png;base64," + get_image_base64('111.png'), | |
"prompt": "Create a vertical timeline with animated entry points. When clicking on timeline items, show detailed information with smooth transitions. Include filtering options and scroll animations." | |
}, | |
{ | |
"name": "[Tool] Survey Creator", | |
"image_url": "data:image/png;base64," + get_image_base64('survay.png'), | |
"prompt": "Develop a survey tool to collect data about perceptions of marriage. Include 10 survey questions (e.g., email address, birth year). Save collected information as a log file in local storage." | |
}, | |
{ | |
"name": "[Visualization] Data Animation", | |
"image_url": "data:image/png;base64," + get_image_base64('124.png'), | |
"prompt": "Use D3.js to create animated charts showing data changes. Add various transition effects." | |
}, | |
{ | |
"name": "[Tool] YouTube Video Playback/Analysis/Summary", | |
"image_url": "data:image/png;base64," + get_image_base64('yout.png'), | |
"prompt": "Allow users to input a YouTube URL to play the video. Include additional features for video analysis or summary." | |
}, | |
{ | |
"name": "[Tool] World/ Country Map", | |
"image_url": "data:image/png;base64," + get_image_base64('map.png'), | |
"prompt": "Create a dashboard displaying country maps based on a world map. Show population data in charts." | |
}, | |
{ | |
"name": "[Component] Bulletin Board", | |
"image_url": "data:image/png;base64," + get_image_base64('128.png'), | |
"prompt": "Create an internet bulletin board. Users should be able to save and read text." | |
}, | |
{ | |
"name": "[Tool] Photo Editor", | |
"image_url": "data:image/png;base64," + get_image_base64('129.png'), | |
"prompt": "Develop a basic image editing tool using Canvas. Include features for applying filters, cropping, and rotation." | |
}, | |
{ | |
"name": "[Visualization] Mind Map", | |
"image_url": "data:image/png;base64," + get_image_base64('130.png'), | |
"prompt": "Use D3.js to create a dynamic mind map. Implement features for adding/removing nodes, drag-and-drop, and expand/collapse animations." | |
}, | |
{ | |
"name": "[Tool] Pattern Designer", | |
"image_url": "data:image/png;base64," + get_image_base64('133.png'), | |
"prompt": "Develop a tool to design repeating patterns using SVG. Include symmetry options, color scheme management, and real-time preview." | |
}, | |
{ | |
"name": "[Multimedia] Real-Time Filter Camera", | |
"image_url": "data:image/png;base64," + get_image_base64('134.png'), | |
"prompt": "Use WebRTC and Canvas to create a real-time video filter app. Implement various image processing effects." | |
}, | |
{ | |
"name": "[Visualization] Real-Time Data Flow", | |
"image_url": "data:image/png;base64," + get_image_base64('136.png'), | |
"prompt": "Visualize real-time data flow using D3.js. Implement node-based data processing and animation effects." | |
}, | |
{ | |
"name": "[Interactive] Color Palette", | |
"image_url": "data:image/png;base64," + get_image_base64('113.png'), | |
"prompt": "Create a dynamic color palette that changes based on mouse movement. Include color selection, saving, and blending features with smooth gradient effects." | |
}, | |
{ | |
"name": "[Effect] Particle Cursor", | |
"image_url": "data:image/png;base64," + get_image_base64('121.png'), | |
"prompt": "Create a particle effect that follows the mouse cursor. Include various particle patterns and color transitions." | |
} | |
] | |
def load_best_templates(): | |
json_data = load_json_data()[:12] # ๋ฒ ์คํธ ํ ํ๋ฆฟ | |
return create_template_html("๐Best Template", json_data) | |
def load_trending_templates(): | |
json_data = load_json_data()[12:24] # ํธ๋ ๋ฉ ํ ํ๋ฆฟ | |
return create_template_html("๐ฅTrend Template", json_data) | |
def load_new_templates(): | |
json_data = load_json_data()[24:44] # NEW ํ ํ๋ฆฟ | |
return create_template_html("โจNEW Template", 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 | |
def load_session_history(template_type="best"): | |
global TEMPLATE_CACHE | |
try: | |
json_data = load_json_data() | |
# ๋ฐ์ดํฐ๋ฅผ ์ธ ์น์ ์ผ๋ก ๋๋๊ธฐ | |
templates = { | |
"best": json_data[:12], # ๋ฒ ์คํธ ํ ํ๋ฆฟ | |
"trending": json_data[12:24], # ํธ๋ ๋ฉ ํ ํ๋ฆฟ | |
"new": json_data[24:44] # NEW ํ ํ๋ฆฟ | |
} | |
titles = { | |
"best": "๐Best Template", | |
"trending": "๐ฅTrend Template", | |
"new": "โจNEW Template" | |
} | |
html_content = """ | |
<style> | |
.template-nav { | |
display: flex; | |
gap: 10px; | |
margin: 20px; | |
position: sticky; | |
top: 0; | |
background: white; | |
z-index: 100; | |
padding: 10px 0; | |
border-bottom: 1px solid #eee; | |
} | |
.template-btn { | |
padding: 8px 16px; | |
border: 1px solid #1890ff; | |
border-radius: 4px; | |
cursor: pointer; | |
background: white; | |
color: #1890ff; | |
font-weight: bold; | |
transition: all 0.3s; | |
} | |
.template-btn:hover { | |
background: #1890ff; | |
color: white; | |
} | |
.template-btn.active { | |
background: #1890ff; | |
color: white; | |
} | |
.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; | |
} | |
.template-section { | |
display: none; | |
} | |
.template-section.active { | |
display: block; | |
} | |
</style> | |
<div class="template-nav"> | |
<button class="template-btn" onclick="showTemplate('best')">๐Best Template</button> | |
<button class="template-btn" onclick="showTemplate('trending')">๐ฅTrend Template</button> | |
<button class="template-btn" onclick="showTemplate('new')">โจNEW Template</button> | |
</div> | |
""" | |
# ๊ฐ ์น์ ์ ํ ํ๋ฆฟ ์์ฑ | |
for section, items in templates.items(): | |
html_content += f""" | |
<div class="template-section" id="{section}-templates"> | |
<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 += "</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(); | |
} | |
} | |
function showTemplate(type) { | |
// ๋ชจ๋ ์น์ ์จ๊ธฐ๊ธฐ | |
document.querySelectorAll('.template-section').forEach(section => { | |
section.style.display = 'none'; | |
}); | |
// ๋ชจ๋ ๋ฒํผ ๋นํ์ฑํ | |
document.querySelectorAll('.template-btn').forEach(btn => { | |
btn.classList.remove('active'); | |
}); | |
// ์ ํ๋ ์น์ ๋ณด์ด๊ธฐ | |
document.getElementById(type + '-templates').style.display = 'block'; | |
// ์ ํ๋ ๋ฒํผ ํ์ฑํ | |
event.target.classList.add('active'); | |
} | |
// ์ด๊ธฐ ๋ก๋์ ๋ฒ ์คํธ ํ ํ๋ฆฟ ํ์ | |
document.addEventListener('DOMContentLoaded', function() { | |
showTemplate('best'); | |
document.querySelector('.template-btn').classList.add('active'); | |
}); | |
</script> | |
""" | |
return gr.HTML(value=html_content) | |
except Exception as e: | |
print(f"Error in load_session_history: {str(e)}") | |
return gr.HTML("Error loading templates") | |
# ๋ฐฐํฌ ๊ด๋ จ ํจ์ ์ถ๊ฐ | |
def generate_space_name(): | |
"""6์๋ฆฌ ๋๋ค ์๋ฌธ ์ด๋ฆ ์์ฑ""" | |
letters = string.ascii_lowercase | |
return ''.join(random.choice(letters) for i in range(6)) | |
def deploy_to_vercel(code: str): | |
try: | |
token = "A8IFZmgW2cqA4yUNlLPnci0N" | |
if not token: | |
return "Vercel ํ ํฐ์ด ์ค์ ๋์ง ์์์ต๋๋ค." | |
# 6์๋ฆฌ ์๋ฌธ ํ๋ก์ ํธ ์ด๋ฆ ์์ฑ | |
project_name = ''.join(random.choice(string.ascii_lowercase) for i in range(6)) | |
# Vercel API ์๋ํฌ์ธํธ | |
deploy_url = "https://api.vercel.com/v13/deployments" | |
# ํค๋ ์ค์ | |
headers = { | |
"Authorization": f"Bearer {token}", | |
"Content-Type": "application/json" | |
} | |
# package.json ํ์ผ ์์ฑ | |
package_json = { | |
"name": project_name, | |
"version": "1.0.0", | |
"private": True, # true -> True๋ก ์์ | |
"dependencies": { | |
"vite": "^5.0.0" | |
}, | |
"scripts": { | |
"dev": "vite", | |
"build": "echo 'No build needed' && mkdir -p dist && cp index.html dist/", | |
"preview": "vite preview" | |
} | |
} | |
# ๋ฐฐํฌํ ํ์ผ ๋ฐ์ดํฐ ๊ตฌ์กฐ | |
files = [ | |
{ | |
"file": "index.html", | |
"data": code | |
}, | |
{ | |
"file": "package.json", | |
"data": json.dumps(package_json, indent=2) # indent ์ถ๊ฐ๋ก ๊ฐ๋ ์ฑ ํฅ์ | |
} | |
] | |
# ํ๋ก์ ํธ ์ค์ | |
project_settings = { | |
"buildCommand": "npm run build", | |
"outputDirectory": "dist", | |
"installCommand": "npm install", | |
"framework": None | |
} | |
# ๋ฐฐํฌ ์์ฒญ ๋ฐ์ดํฐ | |
deploy_data = { | |
"name": project_name, | |
"files": files, | |
"target": "production", | |
"projectSettings": project_settings | |
} | |
deploy_response = requests.post(deploy_url, headers=headers, json=deploy_data) | |
if deploy_response.status_code != 200: | |
return f"๋ฐฐํฌ ์คํจ: {deploy_response.text}" | |
# URL ํ์ ์์ - 6์๋ฆฌ.vercel.app ํํ๋ก ๋ฐํ | |
deployment_url = f"{project_name}.vercel.app" | |
time.sleep(5) | |
return f"""๋ฐฐํฌ ์๋ฃ! <a href="https://{deployment_url}" target="_blank" style="color: #1890ff; text-decoration: underline; cursor: pointer;">https://{deployment_url}</a>""" | |
except Exception as e: | |
return f"๋ฐฐํฌ ์ค ์ค๋ฅ ๋ฐ์: {str(e)}" | |
# ํ๋กฌํํธ ์ฆ๊ฐ ํจ์ ์์ | |
def boost_prompt(prompt: str) -> str: | |
if not prompt: | |
return "" | |
# ์ฆ๊ฐ์ ์ํ ์์คํ ํ๋กฌํํธ | |
boost_system_prompt = """ | |
You are a web development prompt expert. | |
Analyze the given prompts and expand them into more detailed and professional requirements while maintaining their original intent and purpose. Enhance them based on the following aspects: | |
1. Technical implementation details | |
2. UI/UX design elements | |
3. Optimization for user experience | |
4. Performance and security | |
5. Accessibility and compatibility | |
Generate enhanced prompts that adhere to all the rules of the existing SystemPrompt. | |
""" | |
try: | |
# Claude API ์๋ | |
try: | |
response = claude_client.messages.create( | |
model="claude-3-5-sonnet-20241022", | |
max_tokens=2000, | |
messages=[{ | |
"role": "user", | |
"content": f"๋ค์ ํ๋กฌํํธ๋ฅผ ๋ถ์ํ๊ณ ์ฆ๊ฐํ์์ค: {prompt}" | |
}] | |
) | |
if hasattr(response, 'content') and len(response.content) > 0: | |
return response.content[0].text | |
raise Exception("Claude API ์๋ต ํ์ ์ค๋ฅ") | |
except Exception as claude_error: | |
print(f"Claude API ์๋ฌ, OpenAI๋ก ์ ํ: {str(claude_error)}") | |
# OpenAI API ์๋ | |
completion = openai_client.chat.completions.create( | |
model="gpt-4", | |
messages=[ | |
{"role": "system", "content": boost_system_prompt}, | |
{"role": "user", "content": f"๋ค์ ํ๋กฌํํธ๋ฅผ ๋ถ์ํ๊ณ ์ฆ๊ฐํ์์ค: {prompt}"} | |
], | |
max_tokens=2000, | |
temperature=0.7 | |
) | |
if completion.choices and len(completion.choices) > 0: | |
return completion.choices[0].message.content | |
raise Exception("OpenAI API ์๋ต ํ์ ์ค๋ฅ") | |
except Exception as e: | |
print(f"ํ๋กฌํํธ ์ฆ๊ฐ ์ค ์ค๋ฅ ๋ฐ์: {str(e)}") | |
return prompt # ์ค๋ฅ ๋ฐ์์ ์๋ณธ ํ๋กฌํํธ ๋ฐํ | |
# Boost ๋ฒํผ ์ด๋ฒคํธ ํธ๋ค๋ฌ | |
def handle_boost(prompt: str): | |
try: | |
boosted_prompt = boost_prompt(prompt) | |
return boosted_prompt, gr.update(active_key="empty") | |
except Exception as e: | |
print(f"Boost ์ฒ๋ฆฌ ์ค ์ค๋ฅ: {str(e)}") | |
return prompt, gr.update(active_key="empty") | |
# 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 should_exclude_space(space_name): | |
"""ํน์ ์คํ์ด์ค๋ฅผ ์ ์ธํ๋ ํํฐ ํจ์""" | |
exclude_keywords = [ | |
'mixgen3', 'ginid', 'mouse', 'flxtrainlora', | |
'vidslicegpu', 'stickimg', 'ultpixgen', 'SORA', | |
'badassgi', 'newsplus', 'chargen', 'news', | |
'testhtml' | |
] | |
return any(keyword.lower() in space_name.lower() for keyword in exclude_keywords) | |
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> | |
""" | |
def get_vercel_deployments(): | |
"""Vercel API๋ฅผ ํตํด ๋ชจ๋ ๋ฐฐํฌ๋ ์๋น์ค ์ ๋ณด ๊ฐ์ ธ์ค๊ธฐ (ํ์ด์ง๋ค์ด์ ์ ์ฉ)""" | |
token = "A8IFZmgW2cqA4yUNlLPnci0N" | |
base_url = "https://api.vercel.com/v6/deployments" | |
all_deployments = [] | |
has_next = True | |
page = 1 | |
until = None # ์ฒซ ์์ฒญ์์๋ until ํ๋ผ๋ฏธํฐ ์์ | |
headers = { | |
"Authorization": f"Bearer {token}", | |
"Content-Type": "application/json" | |
} | |
try: | |
while has_next: | |
# URL ๊ตฌ์ฑ (ํ์ด์ง๋ค์ด์ ํ๋ผ๋ฏธํฐ ํฌํจ) | |
url = f"{base_url}?limit=100" | |
if until: | |
url += f"&until={until}" | |
print(f"Fetching page {page}... URL: {url}") # ๋๋ฒ๊น ์ฉ | |
response = requests.get(url, headers=headers) | |
if response.status_code != 200: | |
print(f"Vercel API Error: {response.text}") | |
break | |
data = response.json() | |
current_deployments = data.get('deployments', []) | |
if not current_deployments: # ๋ ์ด์ ๋ฐ์ดํฐ๊ฐ ์์ผ๋ฉด ์ข ๋ฃ | |
break | |
all_deployments.extend(current_deployments) | |
# ๋ค์ ํ์ด์ง๋ฅผ ์ํ until ๊ฐ ์ค์ | |
pagination = data.get('pagination', {}) | |
until = pagination.get('next') | |
has_next = bool(until) # until ๊ฐ์ด ์์ผ๋ฉด ๋ค์ ํ์ด์ง ์กด์ฌ | |
print(f"Page {page} fetched. Got {len(current_deployments)} deployments") # ๋๋ฒ๊น ์ฉ | |
page += 1 | |
print(f"Total deployments fetched: {len(all_deployments)}") # ๋๋ฒ๊น ์ฉ | |
# ์ํ๊ฐ 'READY'์ด๊ณ 'url'์ด ์๋ ๋ฐฐํฌ๋ง ํํฐ๋งํ๊ณ 'javis1' ์ ์ธ | |
active_deployments = [ | |
dep for dep in all_deployments | |
if dep.get('state') == 'READY' and | |
dep.get('url') and | |
'javis1' not in dep.get('name', '').lower() | |
] | |
print(f"Active deployments after filtering: {len(active_deployments)}") # ๋๋ฒ๊น ์ฉ | |
return active_deployments | |
except Exception as e: | |
print(f"Error fetching Vercel deployments: {str(e)}") | |
return [] | |
def get_vercel_card(deployment, index, is_top_best=False): | |
"""Vercel ๋ฐฐํฌ ์นด๋ HTML ์์ฑ ํจ์""" | |
raw_url = deployment.get('url', '') | |
# URL ์ฒ๋ฆฌ | |
if raw_url.startswith('http'): | |
url = raw_url | |
else: | |
url = f"https://{raw_url}" | |
name = deployment.get('name', '์ด๋ฆ ์๋ ํ๋ก์ ํธ') | |
# ์นด๋ ID ์์ฑ | |
card_id = f"vercel-card-{url.replace('.', '-').replace('/', '-')}" | |
# Top Best ํญ๋ชฉ์ผ ๊ฒฝ์ฐ์ ์คํฌ๋ฆฐ์ท ์ฒ๋ฆฌ | |
screenshot_html = "" | |
if is_top_best: | |
try: | |
print(f"์คํฌ๋ฆฐ์ท ์บก์ฒ ์๋: {url}") # ๋๋ฒ๊น ์ฉ ๋ก๊ทธ | |
screenshot_base64 = take_screenshot(raw_url) | |
if screenshot_base64: | |
screenshot_html = f""" | |
<div style="width: 100%; height: 200px; overflow: hidden; border-radius: 10px; margin-bottom: 15px;"> | |
<img src="data:image/png;base64,{screenshot_base64}" | |
style="width: 100%; height: 100%; object-fit: cover;" | |
alt="{name} ์คํฌ๋ฆฐ์ท"/> | |
</div> | |
""" | |
else: | |
print(f"์คํฌ๋ฆฐ์ท ์บก์ฒ ์คํจ: {url}") # ๋๋ฒ๊น ์ฉ ๋ก๊ทธ | |
except Exception as e: | |
print(f"์คํฌ๋ฆฐ์ท ์ฒ๋ฆฌ ์ค๋ฅ: {str(e)} for URL: {url}") # ๋๋ฒ๊น ์ฉ ๋ก๊ทธ | |
bg_color = get_pastel_color(index + (20 if not is_top_best else 0)) | |
tech_emojis = ['โก', '๐', '๐', 'โจ', '๐ซ', '๐ฅ', '๐', '๐ฏ', '๐จ', '๐ฎ'] | |
random_emojis = random.sample(tech_emojis, 3) | |
# Top Best ์นด๋์ ๊ฐ์ํ๋ ์ ๋ณด ์น์ | |
if is_top_best: | |
info_section = f""" | |
<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>URL:</strong> ๐ {url} | |
</p> | |
</div> | |
""" | |
else: | |
info_section = f""" | |
<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>Status:</strong> โ {deployment.get('state', 'N/A')} | |
</p> | |
<p style='margin: 8px 0;'> | |
<strong>Created:</strong> ๐ {format_timestamp(deployment.get('created'))} | |
</p> | |
<p style='margin: 8px 0;'> | |
<strong>URL:</strong> ๐ {url} | |
</p> | |
</div> | |
""" | |
return f""" | |
<div id="{card_id}" class="vercel-card" | |
data-likes="0" | |
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)"'> | |
{screenshot_html} | |
<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='{url}' target='_blank' | |
style='text-decoration: none; color: #2d2d2d;'> | |
{name} | |
</a> | |
<span style='font-size: 1.3em'>{random_emojis[1]}</span> | |
</h3> | |
{info_section} | |
<div style='margin-top: 20px; display: flex; justify-content: space-between; align-items: center;'> | |
<div class="like-section" style="display: flex; align-items: center; gap: 10px;"> | |
<button onclick="toggleLike('{card_id}')" class="like-button" | |
style="background: none; border: none; cursor: pointer; font-size: 1.5em; padding: 5px 10px;"> | |
๐ค | |
</button> | |
<span class="like-count" style="font-size: 1.2em; color: #666;">0</span> | |
</div> | |
<a href='{url}' 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> | |
</div> | |
</div> | |
""" | |
# Top Best URLs ์ ์ | |
TOP_BEST_URLS = [ | |
{ | |
"url": "https://huggingface.co/spaces/openfree/ifbhdc", | |
"name": "[Game] Jewel Pang Pang", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://mrtzut.vercel.app", | |
"name": "Free Stock Finder", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://exwafe.vercel.app", | |
"name": "LLM Race Visualization", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "ssksqr.vercel.app", | |
"name": "[Game]Advanced Chess", | |
"created": "2024-11-20 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "fhtlww.vercel.app", | |
"name": "Prime Number find", | |
"created": "2024-11-20 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "dekvxz.vercel.app", | |
"name": "[Game] Diet Hunter", | |
"created": "2024-11-20 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "czbipi.vercel.app", | |
"name": "Travel Itinerary Management", | |
"created": "2024-11-20 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://huggingface.co/spaces/openfree/ggumim", | |
"name": "[MOUSE-II] Output Korean on Images", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "xabtnc.vercel.app", | |
"name": "[Chatbot] My Own LLM", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "nxhquk.vercel.app", | |
"name": "[Game] Tetris", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "bydcnd.vercel.app", | |
"name": "[Model] 3D Molecule Model", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "ijhama.vercel.app", | |
"name": "Investment Portfolio Analysis", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "oschnl.vercel.app", | |
"name": "Lotto Number Analysis/Recommendation", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "rzwzrq.vercel.app", | |
"name": "Excel/CSV Data Analysis", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "twkqre.vercel.app", | |
"name": "[Fortune] Tarot Cards", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "htwymz.vercel.app", | |
"name": "[Game] Firefighting Helicopter", | |
"created": "2024-11-20 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "mktmbn.vercel.app", | |
"name": "[Game] Space War", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "euguwt.vercel.app", | |
"name": "[Game] Poseidon", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "qmdzoh.vercel.app", | |
"name": "[Game] Protect the Sky", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "kofaqo.vercel.app", | |
"name": "[Game] Meteor Collision!", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "qoqqkq.vercel.app", | |
"name": "[Game] Mole Catching", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "nmznel.vercel.app", | |
"name": "[Game] Catch the Mouse", | |
"created": "2024-11-19 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "psrrtp.vercel.app", | |
"name": "[Dashboard] World Population", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "xxloav.vercel.app", | |
"name": "[Game] Brick Breaker", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://huggingface.co/spaces/openfree/edpaje", | |
"name": "[Game] Memory Card", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://huggingface.co/spaces/openfree/ixtidb", | |
"name": "AI Chef", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "cnlzji.vercel.app", | |
"name": "Country Information Comparison", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "fazely.vercel.app", | |
"name": "Wikipedia Knowledge Analysis", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "pkzhbo.vercel.app", | |
"name": "World Time Zones by Country", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "pammgl.vercel.app", | |
"name": "Press Release Distribution Service", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "https://ktduhm.vercel.app/", | |
"name": "Understand Mathematics through Graphs", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "vjmfoy.vercel.app", | |
"name": "[Game] 3D Brick Stacking", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "aodakf.vercel.app", | |
"name": "[Virtual] 3D Virtual Reality", | |
"created": "2024-11-18 00:00", | |
"state": "READY" | |
}, | |
{ | |
"url": "mxoeue.vercel.app", | |
"name": "Voice Generation (TTS), Adjustment", | |
"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("Gallery >", elem_id="gallery-tab"): | |
gr.HTML(value=get_user_spaces()) | |
# MOUSE ํญ | |
with gr.Tab("MOUSE > ", elem_id="mouse-tab", elem_classes="mouse-tab"): | |
history = gr.State([]) | |
setting = gr.State({ | |
"system": SystemPrompt, | |
}) | |
with ms.Application() as app: | |
with antd.ConfigProvider(): | |
# Drawer ์ปดํฌ๋ํธ๋ค | |
with antd.Drawer(open=False, title="code", placement="left", width="750px") as code_drawer: | |
code_output = legacy.Markdown() | |
with antd.Drawer(open=False, title="history", placement="left", width="900px") as history_drawer: | |
history_output = legacy.Chatbot(show_label=False, flushing=False, height=960, elem_classes="history_chatbot") | |
with antd.Drawer( | |
open=False, | |
title="Templates", | |
placement="right", | |
width="900px", | |
elem_classes="session-drawer" | |
) as session_drawer: | |
with antd.Flex(vertical=True, gap="middle"): | |
gr.Markdown("### Available Templates") | |
session_history = gr.HTML( | |
elem_classes="session-history" | |
) | |
close_btn = antd.Button( | |
"Close", | |
type="default", | |
elem_classes="close-btn" | |
) | |
# ๋ฉ์ธ ์ปจํ ์ธ ๋ฅผ ์ํ Row | |
with antd.Row(gutter=[32, 12]) as layout: | |
# ์ข์ธก ํจ๋ | |
with antd.Col(span=24, md=8): | |
with antd.Flex(vertical=True, gap="middle", wrap=True): | |
# ํค๋ ๋ถ๋ถ | |
header = gr.HTML(f""" | |
<div class="left_header"> | |
<img src="data:image/gif;base64,{get_image_base64('mouse.gif')}" width="360px" /> | |
<h1 style="font-size: 18px;">'MOUSE-I' > cursor</h2> | |
<h1 style="font-size: 10px;">Copy and paste the prompt from the template, and when you click Send, the code will be automatically generated. When you click Check Result and Deploy, the web service will be deployed globally through Vercel's crowd platform. Paste only the generated code into the prompt and click the 'Run Code' button to instantly run the service on the screen. Inquiries: arxivgpt@gmail.com</h1> | |
<h1 style="font-size: 12px; margin-top: 10px;"> | |
<a href="https://VIDraft-mouse1.hf.space" target="_blank" style="color: #0084ff; text-decoration: none; transition: color 0.3s;"> | |
๐จ [HOME] MOUSE | |
</a> | |
</h1> | |
</div> | |
""") | |
# ์ ๋ ฅ ์์ญ | |
input = antd.InputTextarea( | |
size="large", | |
allow_clear=True, | |
placeholder=random.choice(DEMO_LIST)['description'] | |
) | |
# ๋ฒํผ ๊ทธ๋ฃน | |
with antd.Flex(gap="small", justify="space-between"): | |
btn = antd.Button("Send", type="primary", size="large") | |
boost_btn = antd.Button("Boost", type="default", size="large") | |
execute_btn = antd.Button("CodeRun", type="default", size="large") | |
deploy_btn = antd.Button("Deploy", type="default", size="large") | |
clear_btn = antd.Button("Clear", type="default", size="large") | |
deploy_result = gr.HTML(label="Deployment") | |
# ์ฐ์ธก ํจ๋ | |
with antd.Col(span=24, md=16): | |
with ms.Div(elem_classes="right_panel"): | |
# ์๋จ ๋ฒํผ๋ค | |
with antd.Flex(gap="small", elem_classes="setting-buttons"): | |
codeBtn = antd.Button("๐งโ๐ปCode View", type="default") | |
historyBtn = antd.Button("๐History", type="default") | |
best_btn = antd.Button("๐Best Template", type="default") | |
trending_btn = antd.Button("๐ฅTrend Template", type="default") | |
new_btn = antd.Button("โจNEW Template", type="default") | |
gr.HTML('<div class="render_header"><span class="header_btn"></span><span class="header_btn"></span><span class="header_btn"></span></div>') | |
# ํญ ์ปจํ ์ธ | |
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab: | |
with antd.Tabs.Item(key="empty"): | |
empty = antd.Empty(description="empty input", elem_classes="right_content") | |
with antd.Tabs.Item(key="loading"): | |
loading = antd.Spin(True, tip="coding...", size="large", elem_classes="right_content") | |
with antd.Tabs.Item(key="render"): | |
sandbox = gr.HTML(elem_classes="html_content") | |
# ์ด๋ฒคํธ ํธ๋ค๋ฌ ์ฐ๊ฒฐ | |
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 |