Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
9b99c45
1
Parent(s):
acd4589
update
Browse files- app.py +1 -3
- deepseek_vl2/serve/app_modules/presets.py +1 -1
app.py
CHANGED
@@ -661,13 +661,11 @@ if __name__ == "__main__":
|
|
661 |
args = parser.parse_args()
|
662 |
|
663 |
demo = build_demo(args)
|
664 |
-
demo.title = "DeepSeek-VL2 Chatbot"
|
665 |
|
666 |
reload_javascript()
|
667 |
|
668 |
# concurrency_count=CONCURRENT_COUNT, max_size=MAX_EVENTS
|
669 |
demo.queue().launch(
|
670 |
-
# share=False,
|
671 |
-
share=True,
|
672 |
favicon_path="deepseek_vl2/serve/assets/favicon.ico",
|
673 |
)
|
|
|
661 |
args = parser.parse_args()
|
662 |
|
663 |
demo = build_demo(args)
|
664 |
+
demo.title = "DeepSeek-VL2-small Chatbot"
|
665 |
|
666 |
reload_javascript()
|
667 |
|
668 |
# concurrency_count=CONCURRENT_COUNT, max_size=MAX_EVENTS
|
669 |
demo.queue().launch(
|
|
|
|
|
670 |
favicon_path="deepseek_vl2/serve/assets/favicon.ico",
|
671 |
)
|
deepseek_vl2/serve/app_modules/presets.py
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
# -*- coding:utf-8 -*-
|
21 |
import gradio as gr
|
22 |
|
23 |
-
title = """<h1 align="left" style="min-width:200px; margin-top:0;">Chat with DeepSeek-VL2 </h1>"""
|
24 |
description_top = """Special Tokens: `<image>`, Visual Grounding: `<|ref|>{query}<|/ref|>`, Grounding Conversation: `<|grounding|>{question}`"""
|
25 |
description = """"""
|
26 |
CONCURRENT_COUNT = 1
|
|
|
20 |
# -*- coding:utf-8 -*-
|
21 |
import gradio as gr
|
22 |
|
23 |
+
title = """<h1 align="left" style="min-width:200px; margin-top:0;">Chat with DeepSeek-VL2-small </h1>"""
|
24 |
description_top = """Special Tokens: `<image>`, Visual Grounding: `<|ref|>{query}<|/ref|>`, Grounding Conversation: `<|grounding|>{question}`"""
|
25 |
description = """"""
|
26 |
CONCURRENT_COUNT = 1
|