Update app.py
Browse files
app.py
CHANGED
@@ -193,13 +193,16 @@ def create_ui(agent):
|
|
193 |
html, body, .gradio-container {
|
194 |
background: #0e1621; color: #e0e0e0;
|
195 |
}
|
196 |
-
.
|
197 |
-
background: linear-gradient(to right, #
|
198 |
-
border: 1px solid #
|
199 |
color: white !important;
|
|
|
200 |
}
|
201 |
-
.
|
202 |
-
background: linear-gradient(to right, #
|
|
|
|
|
203 |
}
|
204 |
""") as demo:
|
205 |
gr.Markdown("""
|
@@ -209,7 +212,7 @@ def create_ui(agent):
|
|
209 |
with gr.Column():
|
210 |
chatbot = gr.Chatbot(label="CPS Assistant", height=700, type="messages")
|
211 |
upload = gr.File(label="Upload Medical File", file_types=[".xlsx"])
|
212 |
-
analyze = gr.Button("🧠 Analyze"
|
213 |
download = gr.File(label="Download Report", visible=False, interactive=False)
|
214 |
|
215 |
state = gr.State(value=[])
|
|
|
193 |
html, body, .gradio-container {
|
194 |
background: #0e1621; color: #e0e0e0;
|
195 |
}
|
196 |
+
button.svelte-1ipelgc {
|
197 |
+
background: linear-gradient(to right, #1e88e5, #0d47a1) !important;
|
198 |
+
border: 1px solid #0d47a1 !important;
|
199 |
color: white !important;
|
200 |
+
font-weight: bold !important;
|
201 |
}
|
202 |
+
button.svelte-1ipelgc:hover {
|
203 |
+
background: linear-gradient(to right, #2196f3, #1565c0) !important;
|
204 |
+
border: 1px solid #1565c0 !important;
|
205 |
+
color: white !important;
|
206 |
}
|
207 |
""") as demo:
|
208 |
gr.Markdown("""
|
|
|
212 |
with gr.Column():
|
213 |
chatbot = gr.Chatbot(label="CPS Assistant", height=700, type="messages")
|
214 |
upload = gr.File(label="Upload Medical File", file_types=[".xlsx"])
|
215 |
+
analyze = gr.Button("🧠 Analyze")
|
216 |
download = gr.File(label="Download Report", visible=False, interactive=False)
|
217 |
|
218 |
state = gr.State(value=[])
|