Update app.py
Browse files
app.py
CHANGED
@@ -216,37 +216,39 @@ def create_ui(agent):
|
|
216 |
html, body, .gradio-container {
|
217 |
height: 100vh;
|
218 |
width: 100vw;
|
219 |
-
padding: 0;
|
220 |
margin: 0;
|
|
|
221 |
font-family: 'Inter', sans-serif;
|
222 |
-
background: #
|
|
|
223 |
}
|
224 |
.gr-button.primary {
|
225 |
-
background: #
|
226 |
-
color:
|
227 |
-
border: none;
|
228 |
border-radius: 6px;
|
|
|
229 |
font-weight: 600;
|
230 |
}
|
231 |
.gr-button.primary:hover {
|
232 |
-
background: #
|
233 |
}
|
234 |
.gr-chatbot {
|
235 |
-
|
236 |
-
|
237 |
border-radius: 10px;
|
238 |
padding: 1rem;
|
239 |
-
|
240 |
}
|
241 |
.gr-markdown, .gr-file-upload {
|
242 |
-
background: #
|
243 |
-
border-radius:
|
244 |
-
box-shadow: 0
|
|
|
245 |
}
|
246 |
""") as demo:
|
247 |
gr.Markdown("""
|
248 |
-
<h2 style='color:#
|
249 |
-
<p>Upload a clinical Excel file and receive
|
250 |
""")
|
251 |
|
252 |
with gr.Row():
|
|
|
216 |
html, body, .gradio-container {
|
217 |
height: 100vh;
|
218 |
width: 100vw;
|
|
|
219 |
margin: 0;
|
220 |
+
padding: 0;
|
221 |
font-family: 'Inter', sans-serif;
|
222 |
+
background-color: #111827;
|
223 |
+
color: #e5e7eb;
|
224 |
}
|
225 |
.gr-button.primary {
|
226 |
+
background: #2563eb;
|
227 |
+
color: white;
|
|
|
228 |
border-radius: 6px;
|
229 |
+
border: none;
|
230 |
font-weight: 600;
|
231 |
}
|
232 |
.gr-button.primary:hover {
|
233 |
+
background: #1e40af;
|
234 |
}
|
235 |
.gr-chatbot {
|
236 |
+
background-color: #1f2937;
|
237 |
+
color: #e5e7eb;
|
238 |
border-radius: 10px;
|
239 |
padding: 1rem;
|
240 |
+
border: 1px solid #374151;
|
241 |
}
|
242 |
.gr-markdown, .gr-file-upload {
|
243 |
+
background-color: #1f2937;
|
244 |
+
border-radius: 10px;
|
245 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.2);
|
246 |
+
border: 1px solid #374151;
|
247 |
}
|
248 |
""") as demo:
|
249 |
gr.Markdown("""
|
250 |
+
<h2 style='color:#60a5fa'>🩺 Patient History AI Assistant</h2>
|
251 |
+
<p style='color:#cbd5e1'>Upload a clinical Excel file and receive a structured diagnostic summary.</p>
|
252 |
""")
|
253 |
|
254 |
with gr.Row():
|