MaziyarPanahi commited on
Commit
da233c2
1 Parent(s): 0be6d07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -63,9 +63,8 @@ def bot_streaming(message, history):
63
  yield generated_text_without_prompt
64
 
65
 
66
- with gr.Blocks as demo:
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
- 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.",
70
- stop_btn="Stop Generation", multimodal=True)
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)