JJteam commited on
Commit
fc94cef
1 Parent(s): 081eddd

updating with links to mmreact

Browse files
Files changed (1) hide show
  1. MM-REACT/app.py +10 -0
MM-REACT/app.py CHANGED
@@ -406,6 +406,15 @@ def init_and_kick_off():
406
 
407
  exampleTitle = """<h3>Examples to start conversation..</h3>"""
408
  comingSoon = """<center><b><p style="color:Red;">MM-REACT: March 21th version with image understanding capabilities</p></b></center>"""
 
 
 
 
 
 
 
 
 
409
 
410
  with gr.Blocks(css="#tryButton {width: 120px;}") as block:
411
  llm_state = gr.State()
@@ -414,6 +423,7 @@ def init_and_kick_off():
414
  log_state = gr.State()
415
 
416
  reset_btn = gr.Button(value="!!!CLICK to wake up MM-REACT!!!", variant="primary", elem_id="resetbtn").style(full_width=True)
 
417
  gr.HTML(comingSoon)
418
 
419
  example_image_size = 90
 
406
 
407
  exampleTitle = """<h3>Examples to start conversation..</h3>"""
408
  comingSoon = """<center><b><p style="color:Red;">MM-REACT: March 21th version with image understanding capabilities</p></b></center>"""
409
+ detailLinks = """
410
+ <center>
411
+ <a href="https://multimodal-react.github.io/"> MM-ReAct Website</a>
412
+
413
+ <a href="https://arxiv.org/abs/2303.11381">MM-ReAct Paper</a>
414
+
415
+ <a href="https://github.com/microsoft/MM-REACT">MM-ReAct Code</a>
416
+ </center>
417
+ """
418
 
419
  with gr.Blocks(css="#tryButton {width: 120px;}") as block:
420
  llm_state = gr.State()
 
423
  log_state = gr.State()
424
 
425
  reset_btn = gr.Button(value="!!!CLICK to wake up MM-REACT!!!", variant="primary", elem_id="resetbtn").style(full_width=True)
426
+ gr.HTML(detailLinks)
427
  gr.HTML(comingSoon)
428
 
429
  example_image_size = 90