RamAnanth1 commited on
Commit
7bc5dfb
·
1 Parent(s): 68ec042

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -478,7 +478,8 @@ class ConversationBot:
478
 
479
  bot = ConversationBot()
480
  with gr.Blocks(css="#chatbot .overflow-y-auto{height:500px}") as demo:
481
- 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>")
 
482
  gr.Markdown('<p> For faster inference without waiting in queue, you may duplicate the space and upgrade to GPU in settings. <a href="https://huggingface.co/spaces/RamAnanth1/visual-chatGPT?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a></p>')
483
  openai_api_key_input = gr.Textbox(type = "password", label = "Enter your OpenAI API key here")
484
  chatbot = gr.Chatbot(elem_id="chatbot", label="Visual ChatGPT")
 
478
 
479
  bot = ConversationBot()
480
  with gr.Blocks(css="#chatbot .overflow-y-auto{height:500px}") as demo:
481
+ 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 and pose images using the diffusers implementation of ControlNet </p>")
482
+ gr.Markdown("<p> For example usages please refer to the <a href="https://raw.githubusercontent.com/microsoft/visual-chatgpt/main/assets/demo.gif">official GIF</a></p>")
483
  gr.Markdown('<p> For faster inference without waiting in queue, you may duplicate the space and upgrade to GPU in settings. <a href="https://huggingface.co/spaces/RamAnanth1/visual-chatGPT?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a></p>')
484
  openai_api_key_input = gr.Textbox(type = "password", label = "Enter your OpenAI API key here")
485
  chatbot = gr.Chatbot(elem_id="chatbot", label="Visual ChatGPT")