Spaces:
Running on Zero
Running on Zero
Upload app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
|
| 3 |
===========================================================
|
| 4 |
Takes a participant's answers to the 16 Shared Decision Making questions
|
| 5 |
and runs an adaptive follow-up conversation using Google's Gemini API.
|
|
@@ -411,12 +411,6 @@ body, .gradio-container .prose, .gradio-container p,
|
|
| 411 |
letter-spacing: -0.01em;
|
| 412 |
margin: 0;
|
| 413 |
}
|
| 414 |
-
#app-subtitle {
|
| 415 |
-
font-size: 1rem;
|
| 416 |
-
font-weight: 500;
|
| 417 |
-
color: #5a5a5a;
|
| 418 |
-
margin: 4px 0 0 0;
|
| 419 |
-
}
|
| 420 |
.q-card {
|
| 421 |
border: 1px solid #e2e2e2 !important;
|
| 422 |
border-radius: 8px !important;
|
|
@@ -496,7 +490,7 @@ button.secondary, .gradio-container button.secondary {
|
|
| 496 |
footer {visibility: hidden;}
|
| 497 |
"""
|
| 498 |
|
| 499 |
-
with gr.Blocks(title="
|
| 500 |
theme=gr.themes.Base(
|
| 501 |
primary_hue=gr.themes.colors.red,
|
| 502 |
neutral_hue=gr.themes.colors.gray,
|
|
@@ -504,8 +498,7 @@ with gr.Blocks(title="P3 Myeloma Follow-up Chatbot", css=CSS,
|
|
| 504 |
)) as demo:
|
| 505 |
with gr.Column(elem_id="app-header"):
|
| 506 |
gr.HTML(
|
| 507 |
-
"<h1 id='app-title'>
|
| 508 |
-
"<p id='app-subtitle'>Follow-up Questions for Shared Decision Making</p>"
|
| 509 |
)
|
| 510 |
|
| 511 |
api_key = gr.State("")
|
|
|
|
| 1 |
"""
|
| 2 |
+
MyeAI (Myeloma AI)
|
| 3 |
===========================================================
|
| 4 |
Takes a participant's answers to the 16 Shared Decision Making questions
|
| 5 |
and runs an adaptive follow-up conversation using Google's Gemini API.
|
|
|
|
| 411 |
letter-spacing: -0.01em;
|
| 412 |
margin: 0;
|
| 413 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 414 |
.q-card {
|
| 415 |
border: 1px solid #e2e2e2 !important;
|
| 416 |
border-radius: 8px !important;
|
|
|
|
| 490 |
footer {visibility: hidden;}
|
| 491 |
"""
|
| 492 |
|
| 493 |
+
with gr.Blocks(title="MyeAI (Myeloma AI)", css=CSS,
|
| 494 |
theme=gr.themes.Base(
|
| 495 |
primary_hue=gr.themes.colors.red,
|
| 496 |
neutral_hue=gr.themes.colors.gray,
|
|
|
|
| 498 |
)) as demo:
|
| 499 |
with gr.Column(elem_id="app-header"):
|
| 500 |
gr.HTML(
|
| 501 |
+
"<h1 id='app-title'>MyeAI (Myeloma AI)</h1>"
|
|
|
|
| 502 |
)
|
| 503 |
|
| 504 |
api_key = gr.State("")
|