Update app.py
Browse files
app.py
CHANGED
@@ -44,8 +44,12 @@ def delete_prev_fn(history: List[Tuple[str, str]]) -> Tuple[List[Tuple[str, str]
|
|
44 |
message = ""
|
45 |
return history, message or ""
|
46 |
|
|
|
|
|
|
|
|
|
47 |
|
48 |
-
with gr.Blocks(
|
49 |
gr.Markdown(DESCRIPTION)
|
50 |
|
51 |
with gr.Group():
|
|
|
44 |
message = ""
|
45 |
return history, message or ""
|
46 |
|
47 |
+
theme = gr.themes.Soft(
|
48 |
+
primary_hue="blue",
|
49 |
+
secondary_hue="green",
|
50 |
+
)
|
51 |
|
52 |
+
with gr.Blocks(theme=theme) as demo:
|
53 |
gr.Markdown(DESCRIPTION)
|
54 |
|
55 |
with gr.Group():
|