khang119966 commited on
Commit
6feeeeb
1 Parent(s): 57a1e05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -148,7 +148,7 @@ def chat(message, history):
148
 
149
  CSS ="""
150
  #component-3 {
151
- height: 30dvh !important;
152
  transform-origin: top; /* Đảm bảo rằng phần tử mở rộng từ trên xuống */
153
  border-style: solid;
154
  overflow: hidden;
@@ -161,12 +161,13 @@ CSS ="""
161
 
162
  demo = gr.ChatInterface(
163
  fn=chat,
164
- description="""Try [Vintern-1B](https://huggingface.co/5CD-AI/Viet-InternVL2-1B) in this demo. Vintern 1B is a multimodal large language model series, featuring models of various sizes. For each size, we release instruction-tuned models optimized for multimodal tasks. Vintern-1B consists of [InternViT-300M-448px](https://huggingface.co/OpenGVLab/InternViT-300M-448px), an MLP projector, and [Qwen2-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct).""",
165
  examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
166
  {"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
167
  {"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
168
  title="❄️ Vintern-1B ❄️",
169
  multimodal=True,
170
- css=CSS
 
171
  )
172
  demo.queue().launch()
 
148
 
149
  CSS ="""
150
  #component-3 {
151
+ height: 50dvh !important;
152
  transform-origin: top; /* Đảm bảo rằng phần tử mở rộng từ trên xuống */
153
  border-style: solid;
154
  overflow: hidden;
 
161
 
162
  demo = gr.ChatInterface(
163
  fn=chat,
164
+ description="""Try [Vintern-1B](https://huggingface.co/5CD-AI/Viet-InternVL2-1B) in this demo. Vintern-1B is a multimodal large language model series, featuring models of various sizes. For each size, we release instruction-tuned models optimized for multimodal tasks. Vintern-1B consists of [InternViT-300M-448px](https://huggingface.co/OpenGVLab/InternViT-300M-448px), an MLP projector, and [Qwen2-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct).""",
165
  examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
166
  {"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
167
  {"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
168
  title="❄️ Vintern-1B ❄️",
169
  multimodal=True,
170
+ css=CSS,
171
+ type='messages'
172
  )
173
  demo.queue().launch()