Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,11 +23,9 @@ def generate(prompt):
|
|
23 |
|
24 |
llava=gr.ChatInterface(
|
25 |
fn=generate,
|
26 |
-
chatbot=gr.Chatbot(show_label=False, avatar_images=(random.choice(['1.png','2,png','3.png','4.png','5.png']), 'llava-logo.svg'), show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
27 |
title="LLaVa-2",
|
28 |
description="This Is Official Demo Of ```LLaVa-2```. ```History/context``` memory does not work in this demo",
|
29 |
-
concurrency_limit=20,
|
30 |
-
layout="vertical",
|
31 |
-
bubble_full_width=False
|
32 |
)
|
33 |
llava.launch(share=True,show_api=False)
|
|
|
23 |
|
24 |
llava=gr.ChatInterface(
|
25 |
fn=generate,
|
26 |
+
chatbot=gr.Chatbot(show_label=False, avatar_images=(random.choice(['1.png','2,png','3.png','4.png','5.png']), 'llava-logo.svg'), show_share_button=False, show_copy_button=True, likeable=True, layout="panel",bubble_full_width=False),
|
27 |
title="LLaVa-2",
|
28 |
description="This Is Official Demo Of ```LLaVa-2```. ```History/context``` memory does not work in this demo",
|
29 |
+
concurrency_limit=20,#layout="vertical",bubble_full_width=False
|
|
|
|
|
30 |
)
|
31 |
llava.launch(share=True,show_api=False)
|