Update app.py
Browse files
app.py
CHANGED
|
@@ -408,7 +408,7 @@ with gr.Blocks(css=css, theme=thistle_theme) as demo:
|
|
| 408 |
examples=video_examples,
|
| 409 |
inputs=[video_query, video_upload]
|
| 410 |
)
|
| 411 |
-
gr.Markdown("Only the olmOCR and RolmOCR models currently support video inference (max video length: 30 secs).")
|
| 412 |
with gr.Accordion("Advanced options", open=False):
|
| 413 |
max_new_tokens = gr.Slider(label="Max new tokens", minimum=1, maximum=MAX_MAX_NEW_TOKENS, step=1, value=DEFAULT_MAX_NEW_TOKENS)
|
| 414 |
temperature = gr.Slider(label="Temperature", minimum=0.1, maximum=4.0, step=0.1, value=0.6)
|
|
|
|
| 408 |
examples=video_examples,
|
| 409 |
inputs=[video_query, video_upload]
|
| 410 |
)
|
| 411 |
+
gr.Markdown("> Only the olmOCR and RolmOCR models currently support video inference (max video length: 30 secs).")
|
| 412 |
with gr.Accordion("Advanced options", open=False):
|
| 413 |
max_new_tokens = gr.Slider(label="Max new tokens", minimum=1, maximum=MAX_MAX_NEW_TOKENS, step=1, value=DEFAULT_MAX_NEW_TOKENS)
|
| 414 |
temperature = gr.Slider(label="Temperature", minimum=0.1, maximum=4.0, step=0.1, value=0.6)
|