Update app.py
Browse files
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(
|
82 |
with gr.Row():
|
83 |
with gr.Column():
|
84 |
gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
|
@@ -179,15 +179,14 @@ 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 |
-
theme="Soft",
|
183 |
examples=examples,
|
184 |
concurrency_limit=20,
|
185 |
)
|
186 |
|
187 |
# Creating Gradio Interface
|
188 |
-
with gr.Blocks(
|
189 |
gr.Markdown("# Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)")
|
190 |
gr.HTML(value=posts)
|
191 |
|
192 |
-
demo = gr.TabbedInterface([app, llm, blogs], ["About", "Chat", "Blogs"])
|
193 |
demo.launch()
|
|
|
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 |
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 |
|
191 |
+
demo = gr.TabbedInterface([app, llm, blogs], ["About", "Chat", "Blogs"], theme="Soft")
|
192 |
demo.launch()
|