Update app.py
Browse files
app.py
CHANGED
@@ -115,6 +115,7 @@ demo = gr.Interface(
|
|
115 |
fn=handle_message,
|
116 |
inputs=["text", gr.Radio(["Chat-Message", "Web-Search", "Chart-Generator"], label="mode", info="Choose a mode and enter your message, then click submit to interact.")],
|
117 |
outputs=[gr.Textbox(label="Response"), gr.Image(label="Chart", type="filepath")],
|
|
|
118 |
title="IT Assistant")
|
119 |
|
120 |
demo.launch(show_api=False)
|
|
|
115 |
fn=handle_message,
|
116 |
inputs=["text", gr.Radio(["Chat-Message", "Web-Search", "Chart-Generator"], label="mode", info="Choose a mode and enter your message, then click submit to interact.")],
|
117 |
outputs=[gr.Textbox(label="Response"), gr.Image(label="Chart", type="filepath")],
|
118 |
+
theme=gr.themes.Soft(),
|
119 |
title="IT Assistant")
|
120 |
|
121 |
demo.launch(show_api=False)
|