Spaces:
Running
on
Zero
Running
on
Zero
Update
Browse files
app.py
CHANGED
|
@@ -318,6 +318,13 @@ examples = [
|
|
| 318 |
],
|
| 319 |
]
|
| 320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 321 |
demo = gr.ChatInterface(
|
| 322 |
fn=run,
|
| 323 |
type="messages",
|
|
@@ -330,7 +337,7 @@ demo = gr.ChatInterface(
|
|
| 330 |
],
|
| 331 |
stop_btn=False,
|
| 332 |
title="Gemma 3 12B IT",
|
| 333 |
-
description=
|
| 334 |
examples=examples,
|
| 335 |
run_examples_on_click=False,
|
| 336 |
cache_examples=False,
|
|
|
|
| 318 |
],
|
| 319 |
]
|
| 320 |
|
| 321 |
+
DESCRIPTION = """\
|
| 322 |
+
<img src='https://huggingface.co/spaces/huggingface-projects/gemma-3-12b-it/resolve/main/assets/logo.png' id='logo' />
|
| 323 |
+
|
| 324 |
+
This is a demo of Gemma 3 12B it, a vision language model with outstanding performance on a wide range of tasks.
|
| 325 |
+
You can upload images, interleaved images and videos. Note that video input only supports single-turn conversation and mp4 input.
|
| 326 |
+
"""
|
| 327 |
+
|
| 328 |
demo = gr.ChatInterface(
|
| 329 |
fn=run,
|
| 330 |
type="messages",
|
|
|
|
| 337 |
],
|
| 338 |
stop_btn=False,
|
| 339 |
title="Gemma 3 12B IT",
|
| 340 |
+
description=DESCRIPTION,
|
| 341 |
examples=examples,
|
| 342 |
run_examples_on_click=False,
|
| 343 |
cache_examples=False,
|