RamAnanth1 commited on
Commit
239d059
·
1 Parent(s): 3ea03bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -420,7 +420,7 @@ class ConversationBot:
420
 
421
  bot = ConversationBot()
422
  with gr.Blocks(css="#chatbot .overflow-y-auto{height:500px}") as demo:
423
- gr.Markdown("# Visual ChatGPT <p> Visual ChatGPT combines visual foundation models and ChatGPT to send,receive and process images during chatting</p><p>This demo currently supports text, image captioning, image generation, and visual question answering</p>")
424
  openai_api_key_input = gr.Textbox(type = "password", label = "Enter your OpenAI API key here")
425
  chatbot = gr.Chatbot(elem_id="chatbot", label="Visual ChatGPT")
426
  state = gr.State([])
 
420
 
421
  bot = ConversationBot()
422
  with gr.Blocks(css="#chatbot .overflow-y-auto{height:500px}") as demo:
423
+ gr.Markdown("# Visual ChatGPT <p> Visual ChatGPT combines visual foundation models and ChatGPT to send,receive and process images during chatting</p><p>This demo currently only supports text, image captioning, image generation, visual question answering, edge detection on image and generating image conditioned on canny image using the diffusers implementation of ControlNet </p>")
424
  openai_api_key_input = gr.Textbox(type = "password", label = "Enter your OpenAI API key here")
425
  chatbot = gr.Chatbot(elem_id="chatbot", label="Visual ChatGPT")
426
  state = gr.State([])