Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| # 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() | |