Update app.py
Browse files
app.py
CHANGED
@@ -153,12 +153,12 @@ def chat(user_message, image, history):
|
|
153 |
with gr.Blocks() as demo:
|
154 |
gr.Markdown(
|
155 |
"# Grok 2 Vision Chatbot\n"
|
156 |
-
"Welcome! You can ask questions
|
157 |
-
"You can:\n"
|
158 |
"- Upload an image and ask a question about it.\n"
|
159 |
"- Provide an image URL in your message (e.g. `http://example.com/image.jpg What is in this image?`).\n"
|
160 |
"- Or just ask a text question without any image.\n\n"
|
161 |
-
"
|
162 |
)
|
163 |
|
164 |
chatbot = gr.Chatbot(label="Conversation")
|
|
|
153 |
with gr.Blocks() as demo:
|
154 |
gr.Markdown(
|
155 |
"# Grok 2 Vision Chatbot\n"
|
156 |
+
"Welcome! You can ask questions with text or images "
|
157 |
+
"You can do following things:\n"
|
158 |
"- Upload an image and ask a question about it.\n"
|
159 |
"- Provide an image URL in your message (e.g. `http://example.com/image.jpg What is in this image?`).\n"
|
160 |
"- Or just ask a text question without any image.\n\n"
|
161 |
+
"Also it remembers previous messages too."
|
162 |
)
|
163 |
|
164 |
chatbot = gr.Chatbot(label="Conversation")
|