Spaces:
Runtime error
Runtime error
File size: 1,811 Bytes
e547b24 e11a667 e547b24 d0338ea adb8560 8a2ecd4 adb8560 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import gradio as gr
import spaces
# Define Gradio theme
theme = gr.themes.Soft(
primary_hue="indigo",
secondary_hue="emerald",
neutral_hue="gray",
font="Rubik" # Make sure "Rubik" is a valid font
)
# Create Gradio blocks with custom CSS for enhanced UI
with gr.Blocks(theme=theme, title="RocketGPT - AI-Powered Chatbot") as demo:
# Define individual tabs
with gr.Blocks() as chat:
gr.Markdown("### 💬 SuperChat")
gr.HTML("<iframe src='https://Qwen-QwQ-32B-preview.hf.space' width='100%' height='800px' style='border-radius: 8px;'></iframe>")
with gr.Blocks() as voice:
gr.Markdown("### 🎙️ Speech Generator")
gr.HTML("<iframe src='https://wifix199-Text-to-speech-LuminaIQ.hf.space' width='100%' height='800px' style='border-radius: 8px;'></iframe>")
with gr.Blocks() as image:
gr.Markdown("### 🖼️ Image Generator")
gr.HTML("<iframe src='https://wifix199-Text-to-image-LuminaIQ.hf.space' width='100%' height='800px' style='border-radius: 8px;'></iframe>")
with gr.Blocks() as video:
gr.Markdown("### 📹 Video Engine")
gr.HTML("<iframe src='https://kingnish-instant-video.hf.space' width='100%' height='800px' style='border-radius: 8px;'></iframe>")
with gr.Blocks() as tryon:
gr.Markdown("### 🖼️ Finegrain")
gr.HTML("<iframe src='https://finegrain-finegrain-object-cutter.hf.space' width='100%' height='800px' style='border-radius: 8px;'></iframe>")
# Create a tabbed interface
gr.TabbedInterface(
interface_list=[chat, voice, image, video, tryon],
tab_names=["💬 SuperChat", "🗣️ Speech Generator", "🖼️ Image Generator", "🎥 Video Generator", "🖼️ Finegrain"]
)
# Launch the app
demo.queue(max_size=300)
demo.launch()
|