Commit
·
54c820e
1
Parent(s):
5189775
fixed gradio bug
Browse files- .gitignore +1 -0
- app.py +1 -1
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
env
|
app.py
CHANGED
@@ -377,7 +377,7 @@ with gr.Blocks(css="""
|
|
377 |
with gr.Column(elem_classes="chatbox-container"):
|
378 |
gr.Markdown("## 💬 Ask Krishna's AI Assistant")
|
379 |
gr.Markdown("💡 Ask anything about Krishna Vamsi Dhulipalla")
|
380 |
-
chatbot = gr.Chatbot(elem_classes="chatbot")
|
381 |
textbox = gr.Textbox(placeholder="Ask a question about Krishna...", elem_classes="textbox")
|
382 |
|
383 |
gr.ChatInterface(
|
|
|
377 |
with gr.Column(elem_classes="chatbox-container"):
|
378 |
gr.Markdown("## 💬 Ask Krishna's AI Assistant")
|
379 |
gr.Markdown("💡 Ask anything about Krishna Vamsi Dhulipalla")
|
380 |
+
chatbot = gr.Chatbot(elem_classes="chatbot", type="messages")
|
381 |
textbox = gr.Textbox(placeholder="Ask a question about Krishna...", elem_classes="textbox")
|
382 |
|
383 |
gr.ChatInterface(
|