Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,9 +46,19 @@ def run_example(image, text_input=default_question, model_id="microsoft/Phi-3.5-
|
|
46 |
|
47 |
css = """
|
48 |
#output {
|
49 |
-
|
50 |
-
|
51 |
-
border:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
#model_selector, #text_input {
|
54 |
display: none !important;
|
|
|
46 |
|
47 |
css = """
|
48 |
#output {
|
49 |
+
margin-top: 15px;
|
50 |
+
border: 2px solid #333; /* Darker outline */
|
51 |
+
border-radius: 8px;
|
52 |
+
height: 180px; /* Fixed height */
|
53 |
+
object-fit: contain; /* Ensure image fits within the fixed height */
|
54 |
+
}
|
55 |
+
|
56 |
+
#input_img {
|
57 |
+
margin-top: 15px;
|
58 |
+
border: 2px solid #333; /* Darker outline */
|
59 |
+
border-radius: 8px;
|
60 |
+
height: 180px; /* Fixed height */
|
61 |
+
object-fit: contain; /* Ensure image fits within the fixed height */
|
62 |
}
|
63 |
#model_selector, #text_input {
|
64 |
display: none !important;
|