Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ custom_css = """
|
|
117 |
color: white;
|
118 |
border: none;
|
119 |
border-radius: 8px;
|
120 |
-
padding: 10px
|
121 |
font-size: 1.1rem;
|
122 |
cursor: pointer;
|
123 |
transition: all 0.3s ease;
|
@@ -232,7 +232,7 @@ def create_interface():
|
|
232 |
choices=["o1", "o3-mini"],
|
233 |
value="o1" # Default to 'o1' for image-related tasks
|
234 |
)
|
235 |
-
submit_btn = gr.Button("
|
236 |
clear_btn = gr.Button("Clear History", elem_id="clear-history")
|
237 |
|
238 |
chat_history = gr.Chatbot()
|
|
|
117 |
color: white;
|
118 |
border: none;
|
119 |
border-radius: 8px;
|
120 |
+
padding: 10px 19px;
|
121 |
font-size: 1.1rem;
|
122 |
cursor: pointer;
|
123 |
transition: all 0.3s ease;
|
|
|
232 |
choices=["o1", "o3-mini"],
|
233 |
value="o1" # Default to 'o1' for image-related tasks
|
234 |
)
|
235 |
+
submit_btn = gr.Button("Ask!", elem_id="submit-btn")
|
236 |
clear_btn = gr.Button("Clear History", elem_id="clear-history")
|
237 |
|
238 |
chat_history = gr.Chatbot()
|