csuhan commited on
Commit
5a055ba
1 Parent(s): 047b007

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -196,10 +196,14 @@ def gradio_worker(
196
  #component-0 { height: 100%; }
197
  #chatbot { flex-grow: 1; overflow: auto;}
198
  """
 
 
 
 
 
199
 
200
  with gr.Blocks(css=CSS, theme=gr.themes.Base()) as demo:
201
- gr.Markdown("## OneLLM: One Framework to Align All Modalities with Language")
202
- gr.Markdown("[[Project Page](https://onellm.csuhan.com)] [[Code](https://github.com/csuhan/OneLLM)]")
203
  with gr.Row(equal_height=True):
204
  modality = gr.Textbox(value='image', visible=False)
205
  with gr.Column(scale=1):
 
196
  #component-0 { height: 100%; }
197
  #chatbot { flex-grow: 1; overflow: auto;}
198
  """
199
+
200
+ header="""
201
+ ## OneLLM: One Framework to Align All Modalities with Language
202
+ [[Project Page](https://onellm.csuhan.com)] [[Code](https://github.com/csuhan/OneLLM)]
203
+ """
204
 
205
  with gr.Blocks(css=CSS, theme=gr.themes.Base()) as demo:
206
+ gr.Markdown(header)
 
207
  with gr.Row(equal_height=True):
208
  modality = gr.Textbox(value='image', visible=False)
209
  with gr.Column(scale=1):