added multimodal on gradio
Browse files
app.py
CHANGED
@@ -286,6 +286,8 @@ with gr.Blocks(fill_height=True) as demo:
|
|
286 |
<p style="text-align: center;">This contains a Generative LLM from <a href="https://openai.com/"><b>Open AI</b></a> called GPT-3.5-Turbo and Vision.</p>
|
287 |
</div>
|
288 |
''')
|
289 |
-
chat = gr.ChatInterface(fn=bot_comms
|
|
|
|
|
290 |
|
291 |
demo.launch()
|
|
|
286 |
<p style="text-align: center;">This contains a Generative LLM from <a href="https://openai.com/"><b>Open AI</b></a> called GPT-3.5-Turbo and Vision.</p>
|
287 |
</div>
|
288 |
''')
|
289 |
+
chat = gr.ChatInterface(fn=bot_comms,
|
290 |
+
multimodal=True,
|
291 |
+
textbox=chat_input)
|
292 |
|
293 |
demo.launch()
|