Qwen3-235B-A22B / app.py
Felguk's picture
Update app.py
135c183 verified
raw
history blame contribute delete
759 Bytes
import gradio as gr
# Custom theme as before...
purple_theme = gr.themes.Default(
primary_hue="purple",
secondary_hue="purple",
neutral_hue="purple",
font=[gr.themes.GoogleFont("Montserrat"), "sans-serif"]
).set(
body_text_color="#673AB7",
button_primary_background_fill="#673AB7",
button_primary_background_fill_dark="#7E57C2",
button_primary_text_color="#FFFFFF",
button_primary_background_fill_hover="#5E35B1",
slider_color="#7E57C2",
block_title_text_color="#673AB7",
block_label_text_color="#673AB7",
)
# Create the interface with the theme
interface = gr.load(
"models/Qwen/Qwen3-235B-A22B",
provider="nebius"
)
# Set the theme before launching
interface.theme = purple_theme
interface.launch()