TobyYang7 commited on
Commit
505f42a
·
verified ·
1 Parent(s): b51f88e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -33,6 +33,12 @@ def predict(image, text):
33
  )
34
  return output
35
 
 
 
 
 
 
 
36
  chatbot = gr.Chatbot(placeholder=None, scale=1)
37
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
38
 
 
33
  )
34
  return output
35
 
36
+ PLACEHOLDER = """
37
+ <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
38
+ <h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.55;">FinLLaVA</h1>
39
+ </div>
40
+ """
41
+
42
  chatbot = gr.Chatbot(placeholder=None, scale=1)
43
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
44