rishiraj commited on
Commit
407623c
·
verified ·
1 Parent(s): 84822ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -185,12 +185,11 @@ examples=[["Can you explain how the QuickSort algorithm works and provide a Pyth
185
 
186
  # Creating Gradio Interface
187
  with gr.Blocks() as llm:
188
- gr.Markdown("# [Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)](https://rishirajacharya.com/)")
189
  gr.ChatInterface(
190
  fn=generate,
191
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
192
  additional_inputs=additional_inputs,
193
- title="Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)",
194
  examples=examples,
195
  concurrency_limit=20,
196
  )
 
185
 
186
  # Creating Gradio Interface
187
  with gr.Blocks() as llm:
188
+ title = gr.Markdown("# [Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)](https://rishirajacharya.com/)")
189
  gr.ChatInterface(
190
  fn=generate,
191
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
192
  additional_inputs=additional_inputs,
 
193
  examples=examples,
194
  concurrency_limit=20,
195
  )