Spaces:
Running
Running
Commit
·
c4a9ec3
1
Parent(s):
54f3b3b
Update app.py
Browse files
app.py
CHANGED
@@ -260,6 +260,12 @@ class ChatDocumentQA:
|
|
260 |
def gradio_interface(self) -> None:
|
261 |
"""Create a Gradio interface for the chatbot."""
|
262 |
with gr.Blocks(theme='karthikeyan-adople/hudsonhayes-gray') as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
state = gr.State(self._get_empty_state())
|
264 |
chatbot = gr.Chatbot()
|
265 |
with gr.Row():
|
|
|
260 |
def gradio_interface(self) -> None:
|
261 |
"""Create a Gradio interface for the chatbot."""
|
262 |
with gr.Blocks(theme='karthikeyan-adople/hudsonhayes-gray') as demo:
|
263 |
+
gr.HTML("""<center class="darkblue" text-align:center;padding:30px;'>
|
264 |
+
<be>
|
265 |
+
<h1 style="color:#fff">
|
266 |
+
Virtual Assistant Chatbot
|
267 |
+
</h1>
|
268 |
+
</center>""")
|
269 |
state = gr.State(self._get_empty_state())
|
270 |
chatbot = gr.Chatbot()
|
271 |
with gr.Row():
|