Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ HF_MODELS = {
|
|
42 |
"Llama-3-8B": "meta-llama/Meta-Llama-3-8B",
|
43 |
"CodeLlama-34B": "codellama/CodeLlama-34b-Instruct-hf",
|
44 |
"StarCoder2": "bigcode/starcoder2-15b"
|
45 |
-
|
46 |
DEFAULT_MODEL = "mistralai/Mixtral-8x7B-Instruct-v0.1"
|
47 |
|
48 |
# ========== Modern Theme ==========
|
@@ -51,10 +51,10 @@ theme = gr.themes.Soft(
|
|
51 |
secondary_hue="emerald",
|
52 |
radius_size="lg",
|
53 |
font=[gr.themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui"]
|
54 |
-
|
55 |
-
button={"radius": "full"}) # only if supported by your gradio version
|
56 |
button_primary_background_fill="linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%)",
|
57 |
button_primary_text_color="white",
|
|
|
58 |
block_label_text_size="lg",
|
59 |
block_label_text_weight="600",
|
60 |
block_title_text_size="lg",
|
|
|
42 |
"Llama-3-8B": "meta-llama/Meta-Llama-3-8B",
|
43 |
"CodeLlama-34B": "codellama/CodeLlama-34b-Instruct-hf",
|
44 |
"StarCoder2": "bigcode/starcoder2-15b"
|
45 |
+
# Default Model
|
46 |
DEFAULT_MODEL = "mistralai/Mixtral-8x7B-Instruct-v0.1"
|
47 |
|
48 |
# ========== Modern Theme ==========
|
|
|
51 |
secondary_hue="emerald",
|
52 |
radius_size="lg",
|
53 |
font=[gr.themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui"]
|
54 |
+
).set(
|
|
|
55 |
button_primary_background_fill="linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%)",
|
56 |
button_primary_text_color="white",
|
57 |
+
button_primary_border_radius="12px",
|
58 |
block_label_text_size="lg",
|
59 |
block_label_text_weight="600",
|
60 |
block_title_text_size="lg",
|