Update app.py
Browse files
app.py
CHANGED
@@ -10,10 +10,11 @@ import gradio as gr
|
|
10 |
from module_chat import demo as chat_block
|
11 |
from module_translation import demo as translation_block
|
12 |
from module_rewriting import demo as rewriting_block
|
|
|
13 |
|
14 |
demo = gr.TabbedInterface(
|
15 |
-
interface_list=[chat_block, translation_block, rewriting_block],
|
16 |
-
tab_names=["Chat", "Translation", "Rewriting"],
|
17 |
title="Multimedia Chat (Mistral Small)"
|
18 |
)
|
19 |
|
|
|
10 |
from module_chat import demo as chat_block
|
11 |
from module_translation import demo as translation_block
|
12 |
from module_rewriting import demo as rewriting_block
|
13 |
+
from module_ocr import demo as ocr_block
|
14 |
|
15 |
demo = gr.TabbedInterface(
|
16 |
+
interface_list=[chat_block, translation_block, rewriting_block, ocr_block],
|
17 |
+
tab_names=["Chat", "Translation", "Rewriting", "OCR"],
|
18 |
title="Multimedia Chat (Mistral Small)"
|
19 |
)
|
20 |
|