Spaces:
Running
Running
cherrytest
commited on
Commit
·
f9e3da2
1
Parent(s):
b53b4dd
upload
Browse files- assets/text.txt +1 -0
- ui_components/logo.py +16 -0
assets/text.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1
|
ui_components/logo.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import modelscope_studio.components.antd as antd
|
| 2 |
+
import modelscope_studio.components.base as ms
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
def Logo():
|
| 6 |
+
with antd.Typography.Title(level=1,
|
| 7 |
+
elem_style=dict(fontSize=24,
|
| 8 |
+
padding=8,
|
| 9 |
+
margin=0)):
|
| 10 |
+
with antd.Flex(align="center", gap="small", justify="center"):
|
| 11 |
+
antd.Image('./assets/qwen.png',
|
| 12 |
+
preview=False,
|
| 13 |
+
alt="logo",
|
| 14 |
+
width=24,
|
| 15 |
+
height=24)
|
| 16 |
+
ms.Span("Qwen3-VL")
|