|
from fastapi import FastAPI, Query |
|
from transformers import pipeline |
|
|
|
|
|
app = FastAPI() |
|
|
|
|
|
pipe = pipeline("text2text-generation", model="google/flan-t5-small") |
|
|
|
|
|
|
|
def generate_advice(generated_text): |
|
|
|
|
|
|
|
keywords_pain = ["stomach ache", "headache", "pain"] |
|
keywords_blurred_vision = ["blurred vision", "vision issues", "eye problems"] |
|
keywords_mental_health = ["anxiety", "depression", "stress"] |
|
|
|
advice = [] |
|
|
|
|
|
for keyword in keywords_pain: |
|
if keyword in generated_text.lower(): |
|
advice.append("Consider taking over-the-counter pain relief medication. If the pain persists or worsens, consult a doctor.") |
|
|
|
for keyword in keywords_blurred_vision: |
|
if keyword in generated_text.lower(): |
|
advice.append("Schedule an appointment with an ophthalmologist for a thorough eye examination.") |
|
|
|
for keyword in keywords_mental_health: |
|
if keyword in generated_text.lower(): |
|
advice.append("Practice mindfulness techniques, consider talking to a therapist, or consult a mental health professional for support.") |
|
|
|
|
|
if not advice: |
|
advice.append("Please consult a healthcare professional for a proper diagnosis and treatment.") |
|
|
|
|
|
advice.append("Feel free to ask more about any specific concerns or questions you have.") |
|
|
|
|
|
return advice |
|
|
|
|
|
|
|
@app.get("/") |
|
def home(): |
|
return {"message": "Hello World"} |
|
|
|
|
|
@app.get("/generate") |
|
def generate(text: str = Query(..., title="Input Text", description="Describe your health issue here")): |
|
|
|
output = pipe(text) |
|
|
|
generated_text = output[0]['generated_text'] |
|
|
|
advice = generate_advice(generated_text) |
|
|
|
return {"input": text, "generated_output": generated_text, "advice": advice} |
|
|
|
|
|
|