File size: 11,945 Bytes
4ef990b e1fb3b2 f973312 e0bdeef a548a89 25b6c4d e0bdeef f0cbaa0 70448af e0bdeef f973312 4dbc7c0 a548a89 f973312 a548a89 f973312 a548a89 e1fb3b2 54c24d5 e1fb3b2 e0bdeef f973312 70448af f973312 70448af f973312 25b6c4d a548a89 f0cbaa0 70448af f973312 70448af f973312 70448af f973312 70448af f0cbaa0 a548a89 70448af f0cbaa0 70448af f973312 731f155 f973312 731f155 f973312 731f155 f973312 e0bdeef a548a89 4dbc7c0 f973312 731f155 a548a89 e1fb3b2 f973312 a548a89 70448af a548a89 54c24d5 70448af f973312 fe937b3 a548a89 e1fb3b2 fe937b3 e1fb3b2 e0bdeef a548a89 e0bdeef fe937b3 e1fb3b2 fe937b3 e1fb3b2 a548a89 e1fb3b2 fe937b3 4dbc7c0 a548a89 54c24d5 a548a89 e0bdeef a548a89 54c24d5 a548a89 fe937b3 a548a89 fe937b3 70448af f973312 70448af fe937b3 a548a89 fe937b3 a548a89 fe937b3 a548a89 25b6c4d a548a89 fe937b3 731f155 a548a89 731f155 a548a89 fe937b3 a548a89 fe937b3 a548a89 fe937b3 a548a89 731f155 a548a89 fe937b3 4dbc7c0 731f155 fe937b3 f0cbaa0 731f155 6ed2a87 f0cbaa0 731f155 4dbc7c0 6ed2a87 fe937b3 731f155 fe937b3 4dbc7c0 6ed2a87 f0cbaa0 fe937b3 731f155 4dbc7c0 731f155 6ed2a87 f0cbaa0 fe937b3 731f155 4dbc7c0 731f155 e1fb3b2 f0cbaa0 a548a89 6ed2a87 e1fb3b2 a548a89 e1fb3b2 a548a89 e1fb3b2 a548a89 e1fb3b2 a548a89 e1fb3b2 4ef990b 731f155 f0cbaa0 fe937b3 e0bdeef 731f155 a548a89 731f155 e0bdeef 25b6c4d f0cbaa0 e0bdeef a548a89 70448af 4ef990b fe937b3 |
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 |
import gradio as gr
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
import logging
from typing import List, Dict
import gc
import os
# Setup logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
# Set random seed for reproducibility
torch.random.manual_seed(0)
class HealthAssistant:
def __init__(self):
self.model_id = "microsoft/Phi-3-small-128k-instruct"
self.model = None
self.tokenizer = None
self.pipe = None
self.metrics = []
self.medications = []
self.initialize_model()
def initialize_model(self):
try:
logger.info(f"Loading model: {self.model_id}")
# Initialize tokenizer
self.tokenizer = AutoTokenizer.from_pretrained(
self.model_id,
trust_remote_code=True
)
logger.info("Tokenizer loaded")
# Initialize model
self.model = AutoModelForCausalLM.from_pretrained(
self.model_id,
torch_dtype="auto",
trust_remote_code=True
)
# Set device
self.device = "cuda" if torch.cuda.is_available() else "cpu"
self.model = self.model.to(self.device)
logger.info(f"Model loaded on {self.device}")
# Setup pipeline
self.pipe = pipeline(
"text-generation",
model=self.model,
tokenizer=self.tokenizer,
device=self.device
)
logger.info("Pipeline created successfully")
return True
except Exception as e:
logger.error(f"Error in model initialization: {str(e)}")
raise
def _prepare_prompt(self, message: str, history: List = None) -> str:
"""Prepare prompt with context and history"""
prompt_parts = [
"You are a medical AI assistant providing healthcare information and guidance.",
"Always be professional and include appropriate medical disclaimers.",
"\nCurrent Health Information:",
self._get_health_context(),
"\nConversation:"
]
if history:
for prev_msg, prev_response in history[-3:]:
prompt_parts.extend([
f"Human: {prev_msg}",
f"Assistant: {prev_response}"
])
prompt_parts.extend([
f"Human: {message}",
"Assistant:"
])
return "\n".join(prompt_parts)
def generate_response(self, message: str, history: List = None) -> str:
try:
# Prepare prompt
prompt = self._prepare_prompt(message, history)
# Generation configuration
generation_args = {
"max_new_tokens": 500,
"return_full_text": False,
"temperature": 0.7,
"do_sample": True,
"top_k": 50,
"top_p": 0.9,
"repetition_penalty": 1.1
}
# Generate response
output = self.pipe(prompt, **generation_args)
response = output[0]['generated_text']
# Cleanup
gc.collect()
if torch.cuda.is_available():
torch.cuda.empty_cache()
return response.strip()
except Exception as e:
logger.error(f"Error generating response: {str(e)}")
return "I apologize, but I encountered an error. Please try again."
def _get_health_context(self) -> str:
context_parts = []
if self.metrics:
latest = self.metrics[-1]
context_parts.extend([
"Recent Health Metrics:",
f"- Weight: {latest.get('Weight', 'N/A')} kg",
f"- Steps: {latest.get('Steps', 'N/A')}",
f"- Sleep: {latest.get('Sleep', 'N/A')} hours"
])
if self.medications:
context_parts.append("\nCurrent Medications:")
for med in self.medications:
med_info = f"- {med['Medication']} ({med['Dosage']}) at {med['Time']}"
if med.get('Notes'):
med_info += f" | Note: {med['Notes']}"
context_parts.append(med_info)
return "\n".join(context_parts) if context_parts else "No health data recorded"
def add_metrics(self, weight: float, steps: int, sleep: float) -> bool:
try:
self.metrics.append({
'Weight': weight,
'Steps': steps,
'Sleep': sleep
})
return True
except Exception as e:
logger.error(f"Error adding metrics: {e}")
return False
def add_medication(self, name: str, dosage: str, time: str, notes: str = "") -> bool:
try:
self.medications.append({
'Medication': name,
'Dosage': dosage,
'Time': time,
'Notes': notes
})
return True
except Exception as e:
logger.error(f"Error adding medication: {e}")
return False
class GradioInterface:
def __init__(self):
try:
logger.info("Initializing Health Assistant...")
self.assistant = HealthAssistant()
logger.info("Health Assistant initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize Health Assistant: {e}")
raise
def chat_response(self, message: str, history: List) -> tuple:
if not message.strip():
return "", history
response = self.assistant.generate_response(message, history)
history.append([message, response])
return "", history
def add_health_metrics(self, weight: float, steps: int, sleep: float) -> str:
if not all([weight is not None, steps is not None, sleep is not None]):
return "β οΈ Please fill in all metrics."
if weight <= 0 or steps < 0 or sleep < 0:
return "β οΈ Please enter valid positive numbers."
if self.assistant.add_metrics(weight, steps, sleep):
return f"""β
Health metrics saved successfully!
β’ Weight: {weight} kg
β’ Steps: {steps}
β’ Sleep: {sleep} hours"""
return "β Error saving metrics."
def add_medication_info(self, name: str, dosage: str, time: str, notes: str) -> str:
if not all([name, dosage, time]):
return "β οΈ Please fill in all required fields."
if self.assistant.add_medication(name, dosage, time, notes):
return f"""β
Medication added successfully!
β’ Medication: {name}
β’ Dosage: {dosage}
β’ Time: {time}
β’ Notes: {notes if notes else 'None'}"""
return "β Error adding medication."
def create_interface(self):
with gr.Blocks(title="Medical Health Assistant") as demo:
gr.Markdown("""
# π₯ Medical Health Assistant
This AI assistant provides medical information and health guidance.
**Note**: This is not a replacement for professional medical advice.
""")
with gr.Tabs():
# Chat Interface
with gr.Tab("π¬ Medical Consultation"):
chatbot = gr.Chatbot(
value=[],
height=450,
show_label=False
)
with gr.Row():
msg = gr.Textbox(
placeholder="Describe your medical concern... (Press Enter)",
lines=2,
show_label=False,
scale=9
)
send_btn = gr.Button("Send", scale=1)
clear_btn = gr.Button("Clear Chat")
# Health Metrics
with gr.Tab("π Health Metrics"):
with gr.Row():
with gr.Column():
gr.Markdown("### Enter Your Health Metrics")
weight_input = gr.Number(
label="Weight (kg)",
minimum=0,
maximum=500
)
steps_input = gr.Number(
label="Steps",
minimum=0,
maximum=100000
)
sleep_input = gr.Number(
label="Hours Slept",
minimum=0,
maximum=24
)
metrics_btn = gr.Button("Save Metrics")
metrics_status = gr.Markdown()
# Medication Manager
with gr.Tab("π Medication Manager"):
with gr.Row():
with gr.Column():
gr.Markdown("### Add Medication Details")
med_name = gr.Textbox(
label="Medication Name",
placeholder="Enter medication name"
)
med_dosage = gr.Textbox(
label="Dosage",
placeholder="e.g., 500mg"
)
med_time = gr.Textbox(
label="Time",
placeholder="e.g., 9:00 AM"
)
med_notes = gr.Textbox(
label="Notes (optional)",
placeholder="Additional instructions or notes"
)
med_btn = gr.Button("Add Medication")
med_status = gr.Markdown()
# Event handlers
msg.submit(self.chat_response, [msg, chatbot], [msg, chatbot])
send_btn.click(self.chat_response, [msg, chatbot], [msg, chatbot])
clear_btn.click(lambda: [], None, chatbot)
metrics_btn.click(
self.add_health_metrics,
inputs=[weight_input, steps_input, sleep_input],
outputs=[metrics_status]
)
med_btn.click(
self.add_medication_info,
inputs=[med_name, med_dosage, med_time, med_notes],
outputs=[med_status]
)
gr.Markdown("""
### β οΈ Important Medical Disclaimer
This AI assistant provides general health information only.
- Not a replacement for professional medical advice
- Always consult healthcare professionals for medical decisions
- Seek immediate medical attention for emergencies
""")
demo.queue()
return demo
def main():
try:
logger.info("Starting Medical Health Assistant...")
interface = GradioInterface()
demo = interface.create_interface()
logger.info("Launching interface...")
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)
except Exception as e:
logger.error(f"Error starting application: {e}")
raise
if __name__ == "__main__":
main() |