rishiraj commited on
Commit
f0c500f
1 Parent(s): 407623c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -10
app.py CHANGED
@@ -183,16 +183,14 @@ examples=[["Can you explain how the QuickSort algorithm works and provide a Pyth
183
  ["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
184
  ]
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
- )
196
 
197
  # Creating Gradio Interface
198
  with gr.Blocks() as talks:
 
183
  ["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
184
  ]
185
 
186
+ llm = gr.ChatInterface(
187
+ fn=generate,
188
+ chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
189
+ additional_inputs=additional_inputs,
190
+ title=gr.Markdown("# [Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)](https://rishirajacharya.com/)"),
191
+ examples=examples,
192
+ concurrency_limit=20,
193
+ )
 
 
194
 
195
  # Creating Gradio Interface
196
  with gr.Blocks() as talks: