Update app.py
Browse files
app.py
CHANGED
|
@@ -34,7 +34,7 @@ def google_search_query(question, use_web_search):
|
|
| 34 |
return f"Error: {str(e)}", ""
|
| 35 |
|
| 36 |
# Gradio Interface using Chatbot and conditional web search
|
| 37 |
-
with gr.Blocks(theme=gr.themes.Glass(
|
| 38 |
gr.Markdown("# Gemini 2.0 Google Search Custom UI")
|
| 39 |
with gr.Row():
|
| 40 |
chatbot = gr.Chatbot(label="Chatbot Responses")
|
|
|
|
| 34 |
return f"Error: {str(e)}", ""
|
| 35 |
|
| 36 |
# Gradio Interface using Chatbot and conditional web search
|
| 37 |
+
with gr.Blocks(theme=gr.themes.Glass(secondary_hue = "violet")) as app:
|
| 38 |
gr.Markdown("# Gemini 2.0 Google Search Custom UI")
|
| 39 |
with gr.Row():
|
| 40 |
chatbot = gr.Chatbot(label="Chatbot Responses")
|