fixed typo on MultimodalTextbox() for interactive
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def krypton(input,
|
|
63 |
return output_text
|
64 |
|
65 |
chatbot=gr.Chatbot(height=600, label="Krypt AI")
|
66 |
-
chat_input = gr.MultimodalTextbox(
|
67 |
with gr.Blocks(fill_height=True) as demo:
|
68 |
gr.Markdown(DESCRIPTION)
|
69 |
gr.ChatInterface(
|
|
|
63 |
return output_text
|
64 |
|
65 |
chatbot=gr.Chatbot(height=600, label="Krypt AI")
|
66 |
+
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter your question or upload an image.", show_label=False)
|
67 |
with gr.Blocks(fill_height=True) as demo:
|
68 |
gr.Markdown(DESCRIPTION)
|
69 |
gr.ChatInterface(
|