tushar310 commited on
Commit
aa6fbe0
·
verified ·
1 Parent(s): 70ca1f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -31,7 +31,8 @@ def chat_with_llm(user_input):
31
  return f"Error: {str(e)}"
32
 
33
  # --- Gradio UI ---
34
- with gr.Blocks() as demo:
 
35
  gr.Markdown("# 🧠 Alpha AI Assistant")
36
  gr.Markdown("Ask anything about Alpha AI.")
37
 
 
31
  return f"Error: {str(e)}"
32
 
33
  # --- Gradio UI ---
34
+ theme = gr.themes.Base()
35
+ with gr.Blocks(theme=theme) as demo:
36
  gr.Markdown("# 🧠 Alpha AI Assistant")
37
  gr.Markdown("Ask anything about Alpha AI.")
38