sandz7 commited on
Commit
5319e7d
Β·
1 Parent(s): d56c421

added multimodal on gradio

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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()