rishiraj commited on
Commit
5840740
·
verified ·
1 Parent(s): eb1048d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -78,7 +78,7 @@ def show_info(section):
78
  return "Select a section to display information."
79
 
80
  # Creating Gradio Interface
81
- with gr.Blocks() as app:
82
  with gr.Row():
83
  with gr.Column():
84
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
@@ -179,12 +179,13 @@ llm = gr.ChatInterface(
179
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
180
  additional_inputs=additional_inputs,
181
  title="Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)",
 
182
  examples=examples,
183
  concurrency_limit=20,
184
  )
185
 
186
  # Creating Gradio Interface
187
- with gr.Blocks() as blogs:
188
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
189
  gr.HTML(value=posts)
190
 
 
78
  return "Select a section to display information."
79
 
80
  # Creating Gradio Interface
81
+ with gr.Blocks(theme=gr.themes.Soft()) as app:
82
  with gr.Row():
83
  with gr.Column():
84
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
 
179
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
180
  additional_inputs=additional_inputs,
181
  title="Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)",
182
+ theme="Soft",
183
  examples=examples,
184
  concurrency_limit=20,
185
  )
186
 
187
  # Creating Gradio Interface
188
+ with gr.Blocks(theme=gr.themes.Soft()) as blogs:
189
  gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
190
  gr.HTML(value=posts)
191