Spaces:
Build error
Build error
UI changes
Browse files
app.py
CHANGED
|
@@ -32,7 +32,7 @@ css = """
|
|
| 32 |
#share-btn-container .wrap {
|
| 33 |
display: none !important;
|
| 34 |
}
|
| 35 |
-
#chatbot { height: 300px; }
|
| 36 |
"""
|
| 37 |
|
| 38 |
examples = [
|
|
@@ -161,7 +161,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 161 |
with gr.Row():
|
| 162 |
image_btn = gr.UploadButton("🖼️ Upload Image", file_types=["image"])
|
| 163 |
|
| 164 |
-
text_input = gr.Textbox(
|
| 165 |
|
| 166 |
with gr.Column():
|
| 167 |
submit_btn = gr.Button(
|
|
|
|
| 32 |
#share-btn-container .wrap {
|
| 33 |
display: none !important;
|
| 34 |
}
|
| 35 |
+
#chatbot { min-height: 300px; }
|
| 36 |
"""
|
| 37 |
|
| 38 |
examples = [
|
|
|
|
| 161 |
with gr.Row():
|
| 162 |
image_btn = gr.UploadButton("🖼️ Upload Image", file_types=["image"])
|
| 163 |
|
| 164 |
+
text_input = gr.Textbox(label="Message", placeholder="Type a message")
|
| 165 |
|
| 166 |
with gr.Column():
|
| 167 |
submit_btn = gr.Button(
|