Spaces:
Sleeping
Sleeping
File size: 23,673 Bytes
7b823c7 0b8508a 7b823c7 0b8508a 7b823c7 0b8508a 7b823c7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | """
app.py
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Streamlit web interface for the Rural Healthcare RAG Assistant.
Design: "Bio-signal interface" โ dark medical HUD aesthetic.
Run with:
streamlit run src/app.py
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
"""
import streamlit as st
import os
from rag import load_vectorstore, get_llm, answer_question, check_symptoms
VECTORSTORE_DIR = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "vectorstore")
def ensure_vectorstore_downloaded():
"""Download pre-built vectorstore from HF dataset repo if not present locally."""
if os.path.exists(VECTORSTORE_DIR) and os.listdir(VECTORSTORE_DIR):
return # already exists, nothing to do
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="MridulSharma02/sehat-sathi-vectorstore",
repo_type="dataset",
local_dir=VECTORSTORE_DIR,
)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# PAGE CONFIG
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.set_page_config(
page_title="Sehat Sathi ยท Rural Health Assistant",
page_icon="๐ฉบ",
layout="centered",
initial_sidebar_state="expanded",
)
symptom_mode = st.sidebar.toggle("๐ฉน Symptom Checker Mode", value=False)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# DESIGN SYSTEM โ "Bio-signal interface"
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
--bg: #0A0E0D;
--bg-deep: #060908;
--glass: rgba(255,255,255,0.045);
--glass-brd: rgba(255,255,255,0.09);
--glow: #3DDC97;
--glow-soft: rgba(61,220,151,0.35);
--cyan: #5EEAD4;
--coral: #FF8A5C;
--text: #E8F5F0;
--text-dim: #7A9089;
--text-mute: #51635D;
}
html, body, [class*="css"] { font-family: 'Manrope', sans-serif; }
.stApp {
background: radial-gradient(ellipse 120% 80% at 50% -10%, #0F1F19 0%, var(--bg) 45%, var(--bg-deep) 100%);
}
/* Hide default streamlit chrome bits that clash */
[data-testid="stHeader"] { background: transparent; }
/* โโโ HERO โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
.hero-wrap {
position: relative;
background: var(--glass);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-brd);
border-radius: 22px;
padding: 2.4rem 2rem 2rem 2rem;
margin-bottom: 1.4rem;
overflow: hidden;
}
.hero-wrap::before {
content: '';
position: absolute;
top: -50%; left: -20%;
width: 140%; height: 200%;
background: radial-gradient(circle, var(--glow-soft) 0%, transparent 60%);
opacity: 0.18;
animation: drift 12s ease-in-out infinite alternate;
pointer-events: none;
}
@keyframes drift {
0% { transform: translate(0,0) scale(1); }
100% { transform: translate(8%, 6%) scale(1.15); }
}
.hero-eyebrow {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--glow);
margin-bottom: 0.7rem;
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 8px;
}
.live-dot {
width: 7px; height: 7px;
border-radius: 50%;
background: var(--glow);
box-shadow: 0 0 8px var(--glow);
animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: var(--text);
line-height: 1.12;
margin: 0 0 0.6rem 0;
position: relative;
z-index: 1;
background: linear-gradient(135deg, #FFFFFF 0%, var(--cyan) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-sub {
font-size: 0.95rem;
color: var(--text-dim);
max-width: 460px;
line-height: 1.55;
margin-bottom: 1.3rem;
position: relative;
z-index: 1;
}
/* Bio-signal monitor strip โ signature element */
.vitals-strip {
position: relative;
z-index: 1;
background: rgba(0,0,0,0.3);
border: 1px solid var(--glass-brd);
border-radius: 12px;
padding: 10px 16px;
display: flex;
align-items: center;
gap: 14px;
overflow: hidden;
}
.vitals-svg { width: 100%; height: 32px; flex: 1; }
.vitals-line {
stroke: var(--glow);
stroke-width: 2;
fill: none;
stroke-linecap: round;
filter: drop-shadow(0 0 4px var(--glow-soft));
stroke-dasharray: 300;
stroke-dashoffset: 300;
animation: scan 3.2s linear infinite;
}
@keyframes scan {
0% { stroke-dashoffset: 300; }
70% { stroke-dashoffset: -300; }
100% { stroke-dashoffset: -300; }
}
.vitals-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.72rem;
color: var(--cyan);
white-space: nowrap;
font-weight: 500;
}
/* โโโ STAT STRIP โโโโโโโโโโโโโโโโโโโโโโโโโ */
.stat-strip { display: flex; gap: 0.7rem; margin-bottom: 1.6rem; }
.stat-pill {
flex: 1;
background: var(--glass);
backdrop-filter: blur(12px);
border: 1px solid var(--glass-brd);
border-radius: 14px;
padding: 0.85rem 1rem;
transition: border-color 0.2s ease;
}
.stat-pill:hover { border-color: var(--glow-soft); }
.stat-num {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: var(--glow);
line-height: 1.3;
display: flex;
align-items: center;
gap: 6px;
}
.stat-label {
font-size: 0.66rem;
color: var(--text-mute);
text-transform: uppercase;
letter-spacing: 0.07em;
font-weight: 600;
margin-top: 3px;
font-family: 'JetBrains Mono', monospace;
}
/* โโโ CHAT โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
[data-testid="stChatMessage"] {
background: var(--glass) !important;
backdrop-filter: blur(14px);
border: 1px solid var(--glass-brd);
border-radius: 16px;
padding: 0.3rem 0.3rem;
margin-bottom: 0.6rem;
}
div[data-testid="stChatMessageContent"] {
font-size: 0.95rem;
line-height: 1.6;
color: var(--text);
}
div[data-testid="stChatMessageContent"] p { color: var(--text); }
.source-tag {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(61,220,151,0.08);
color: var(--glow);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.72rem;
font-weight: 600;
margin: 6px 5px 0 0;
border: 1px solid rgba(61,220,151,0.25);
font-family: 'JetBrains Mono', monospace;
}
.badge-verified {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(61,220,151,0.1);
color: var(--glow);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 700;
margin: 0 5px 8px 0;
border: 1px solid rgba(61,220,151,0.3);
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.badge-general {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(255,138,92,0.1);
color: var(--coral);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 700;
margin: 0 5px 8px 0;
border: 1px solid rgba(255,138,92,0.3);
font-family: 'JetBrains Mono', monospace;
text-transform: uppercase;
letter-spacing: 0.04em;
}
/* Disclaimer */
.disclaimer-box {
background: rgba(255,138,92,0.06);
border: 1px solid rgba(255,138,92,0.25);
border-left: 3px solid var(--coral);
padding: 14px 18px;
border-radius: 10px;
font-size: 0.82rem;
margin-top: 1.6rem;
margin-bottom: 5rem;
color: var(--text-dim);
line-height: 1.55;
}
.disclaimer-box b { color: var(--coral); }
/* Suggested question chips */
.chip-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.72rem;
font-weight: 600;
color: var(--text-mute);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.6rem;
}
div[data-testid="stButton"] button {
background: var(--glass) !important;
backdrop-filter: blur(10px);
color: var(--text) !important;
border: 1px solid var(--glass-brd) !important;
border-radius: 24px !important;
font-size: 0.82rem !important;
font-weight: 500 !important;
padding: 0.5rem 1.1rem !important;
transition: all 0.18s ease;
width: 100%;
}
div[data-testid="stButton"] button:hover {
border-color: var(--glow) !important;
color: var(--glow) !important;
box-shadow: 0 0 16px rgba(61,220,151,0.15);
}
/* Chat input bar โ fix the ugly black void */
[data-testid="stChatInput"] {
background: var(--bg) !important;
border-top: 1px solid var(--glass-brd);
padding-top: 0.8rem;
}
[data-testid="stChatInput"] textarea {
background: var(--glass) !important;
backdrop-filter: blur(14px);
border: 1px solid var(--glass-brd) !important;
border-radius: 16px !important;
color: var(--text) !important;
outline: none !important;
box-shadow: none !important;
}
[data-testid="stChatInput"] textarea:focus {
border-color: var(--glow) !important;
box-shadow: 0 0 0 1px rgba(61,220,151,0.3) !important;
outline: none !important;
}
[data-testid="stChatInput"] textarea::placeholder { color: var(--text-mute) !important; }
[data-testid="stChatInput"] button { color: var(--glow) !important; }
[data-testid="stBottomBlockContainer"] { background: var(--bg) !important; }
.stApp > div:last-child { background: transparent; }
* { outline-color: transparent !important; }
*:focus { outline: none !important; box-shadow: none !important; }
[data-testid="stChatInput"] *:focus {
outline: none !important;
box-shadow: 0 0 0 1px rgba(61,220,151,0.3) !important;
}
/* Sidebar โ fix invisible white text */
section[data-testid="stSidebar"] {
background: var(--bg-deep);
border-right: 1px solid var(--glass-brd);
overflow: hidden !important;
}
section[data-testid="stSidebar"]::-webkit-scrollbar { display: none !important; }
section[data-testid="stSidebar"] > div:first-child {
overflow: hidden !important;
}
section[data-testid="stSidebar"] > div:first-child::-webkit-scrollbar {
display: none !important;
width: 0 !important;
}
section[data-testid="stSidebar"] * { color: var(--text) !important; }
section[data-testid="stSidebar"] h3 { color: var(--glow) !important; font-family: 'Space Grotesk', sans-serif; }
section[data-testid="stSidebar"] em { color: var(--text-dim) !important; }
section[data-testid="stSidebar"] strong { color: var(--cyan) !important; }
section[data-testid="stSidebar"] hr { border-color: var(--glass-brd); }
/* Avatar glow */
[data-testid="stChatMessageAvatarCustom"] {
background: var(--glass) !important;
border: 1px solid var(--glow-soft) !important;
}
/* Spinner text */
.stSpinner > div { color: var(--glow) !important; }
/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--glass-brd); border-radius: 4px; }
/* Fix corner bleed on chat input wrapper */
[data-testid="stBottom"] > div,
[data-testid="stBottom"] > div > div,
[data-testid="stBottomBlockContainer"] > div,
[data-testid="stBottomBlockContainer"] > div > div {
background: var(--bg) !important;
border: none !important;
box-shadow: none !important;
}
/* Kill all default borders on chat input */
[data-testid="stChatInput"] > div,
[data-testid="stChatInput"] > div > div,
[data-testid="stChatInput"] > div > div > div {
border: none !important;
box-shadow: none !important;
background: transparent !important;
}
[data-baseweb="textarea"] > div {
border: 1px solid var(--glass-brd) !important;
border-radius: 16px !important;
box-shadow: none !important;
background: var(--glass) !important;
}
[data-baseweb="textarea"] > div:focus-within {
border-color: rgba(61,220,151,0.4) !important;
box-shadow: none !important;
}
/* Nuclear option โ kill ALL red/blue focus borders */
textarea:focus, input:focus, [contenteditable]:focus,
textarea, input,
.stChatInput textarea,
.stChatInput textarea:focus,
[data-baseweb] textarea,
[data-baseweb] textarea:focus,
[data-baseweb="textarea"] {
outline: none !important;
border-color: rgba(61,220,151,0.4) !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
}
</style>
""", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# HERO SECTION
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("""
<div class="hero-wrap">
<div class="hero-eyebrow"><span class="live-dot"></span>เคธเฅเคนเคค เคธเคพเคฅเฅ ยท SYSTEM ONLINE</div>
<div class="hero-title">Trusted answers,<br>in plain language.</div>
<div class="hero-sub">
Ask any health question. Every answer is grounded in official government
guidelines and verified medical sources โ not guesswork.
</div>
<div class="vitals-strip">
<svg class="vitals-svg" viewBox="0 0 300 32" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">
<path class="vitals-line" d="M0,16 L40,16 L52,4 L64,28 L76,16 L95,16 L110,8 L122,24 L134,16 L300,16" />
</svg>
<span class="vitals-label">KNOWLEDGE BASE ACTIVE</span>
</div>
</div>
""", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# STAT STRIP
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("""
<div class="stat-strip">
<div class="stat-pill">
<div class="stat-num">๐๏ธ Gov.</div>
<div class="stat-label">Verified Sources</div>
</div>
<div class="stat-pill">
<div class="stat-num">๐ RAG</div>
<div class="stat-label">Retrieval Powered</div>
</div>
<div class="stat-pill">
<div class="stat-num">โ
Free</div>
<div class="stat-label">Always Accessible</div>
</div>
</div>
""", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# LOAD MODELS (cached so it only loads once)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@st.cache_resource(show_spinner=False)
def load_resources():
vectordb = load_vectorstore()
llm = get_llm()
return vectordb, llm
with st.spinner("๐ง Loading knowledge base..."):
ensure_vectorstore_downloaded()
try:
with st.spinner("๐ง Loading knowledge base..."):
vectordb, llm = load_resources()
except ValueError as e:
st.error(f"โ ๏ธ {e}")
st.info("Please add your Groq API key to the `.env` file (or Space secrets).")
st.stop()
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# CHAT HISTORY
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if "question_count" not in st.session_state:
st.session_state.question_count = 0
MAX_QUESTIONS_PER_SESSION = 15
if "messages" not in st.session_state:
st.session_state.messages = [
{
"role": "assistant",
"content": "เคจเคฎเคธเฅเคคเฅ ๐ I'm here to help with your health questions. What's on your mind today?",
"sources": [],
"is_verified": None
}
]
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# SUGGESTED QUESTION CHIPS (only show before first real question)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
SUGGESTIONS = [
"What are the symptoms of dengue?",
"How is diabetes managed?",
"What vaccines do newborns need?",
"Signs of dehydration in children",
]
clicked_suggestion = None
if len(st.session_state.messages) == 1:
st.markdown('<div class="chip-label">โ Try asking</div>', unsafe_allow_html=True)
chip_cols = st.columns(2)
for i, q in enumerate(SUGGESTIONS):
with chip_cols[i % 2]:
if st.button(q, key=f"chip_{i}", use_container_width=True):
clicked_suggestion = q
# Display chat history
for msg in st.session_state.messages:
with st.chat_message(msg["role"], avatar="๐ฉบ" if msg["role"] == "assistant" else "๐"):
if msg.get("is_verified") is True:
st.markdown('<span class="badge-verified">โ Verified source</span>', unsafe_allow_html=True)
elif msg.get("is_verified") is False:
st.markdown('<span class="badge-general">โ General knowledge</span>', unsafe_allow_html=True)
st.markdown(msg["content"])
if msg.get("sources"):
tags_html = "".join([f'<span class="source-tag">โ {s}</span>' for s in msg["sources"]])
st.markdown(tags_html, unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# CHAT INPUT
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
user_query = st.chat_input("Type your health question here...")
if clicked_suggestion:
user_query = clicked_suggestion
if user_query:
if st.session_state.question_count >= MAX_QUESTIONS_PER_SESSION:
st.warning("โ ๏ธ You've reached the session limit of 15 questions. Please refresh the page to start a new session.")
st.stop()
st.session_state.question_count += 1
st.session_state.messages.append({"role": "user", "content": user_query, "sources": [], "is_verified": None})
with st.chat_message("user", avatar="๐"):
st.markdown(user_query)
with st.chat_message("assistant", avatar="๐ฉบ"):
with st.spinner("Analyzing..." if symptom_mode else "Scanning verified sources..."):
try:
if symptom_mode:
answer = check_symptoms(user_query, llm)
sources, is_verified = [], None
else:
answer, sources, is_verified = answer_question(user_query, vectordb, llm, chat_history=st.session_state.messages)
except Exception as e:
answer = f"โ ๏ธ Something went wrong: {e}"
sources = []
is_verified = None
if is_verified is True:
st.markdown('<span class="badge-verified">โ Verified source</span>', unsafe_allow_html=True)
elif is_verified is False:
st.markdown('<span class="badge-general">โ General knowledge</span>', unsafe_allow_html=True)
st.markdown(answer)
if sources:
tags_html = "".join([f'<span class="source-tag">โ {s}</span>' for s in sources])
st.markdown(tags_html, unsafe_allow_html=True)
st.session_state.messages.append({
"role": "assistant",
"content": answer,
"sources": sources,
"is_verified": is_verified
})
st.rerun()
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# DISCLAIMER
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("""
<div class="disclaimer-box">
โ ๏ธ <b>Important:</b> This assistant provides general health information based on official guidelines.
It is <b>not a substitute</b> for professional medical advice. For emergencies or serious symptoms,
please visit your nearest health center or call emergency services immediately.
</div>
""", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# SIDEBAR
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with st.sidebar:
st.markdown("""
### ๐ฉบ Sehat Sathi
*Your health companion, grounded in truth.*
---
**How this works**
This assistant uses **RAG (Retrieval Augmented Generation)** โ it searches verified documents first, then crafts an answer only from what it finds there.
**Knowledge sources:**
- ๐๏ธ National Health Mission guidelines
- ๐ WHO India fact sheets
- ๐ Ayushman Bharat documentation
- ๐ Verified medical Q&A datasets
---
""")
if st.button("๐๏ธ Clear conversation", use_container_width=True):
st.session_state.messages = [
{
"role": "assistant",
"content": "เคจเคฎเคธเฅเคคเฅ ๐ I'm here to help with your health questions. What's on your mind today?",
"sources": []
}
]
st.rerun()
|