Spaces:
Build error
Build error
Update app.py (#18)
Browse files- Update app.py (da233c2b0a79a7cfde01bca0cfb0bbd99932282e)
app.py
CHANGED
|
@@ -63,9 +63,8 @@ def bot_streaming(message, history):
|
|
| 63 |
yield generated_text_without_prompt
|
| 64 |
|
| 65 |
|
| 66 |
-
|
| 67 |
-
chatbot = gr.ChatInterface(fn=bot_streaming, height=600, title="LLaVA Llama-3-8B", examples=[{"text": "What is on the flower?", "files":["./bee.jpg"]},
|
| 68 |
{"text": "How to make this pastry?", "files":["./baklava.png"]}],
|
| 69 |
-
|
| 70 |
-
|
| 71 |
demo.launch(debug=True)
|
|
|
|
| 63 |
yield generated_text_without_prompt
|
| 64 |
|
| 65 |
|
| 66 |
+
demo = gr.ChatInterface(fn=bot_streaming, height=600, title="LLaVA Llama-3-8B", examples=[{"text": "What is on the flower?", "files":["./bee.jpg"]},
|
|
|
|
| 67 |
{"text": "How to make this pastry?", "files":["./baklava.png"]}],
|
| 68 |
+
description="Try [LLaVA Llama-3-8B](https://huggingface.co/xtuner/llava-llama-3-8b-v1_1-transformers). Upload an image and start chatting about it, or simply try one of the examples below. If you don't upload an image, you will receive an error.",
|
| 69 |
+
stop_btn="Stop Generation", multimodal=True)
|
| 70 |
demo.launch(debug=True)
|