medical-predictor-chatbot / test_extractor.py
zunayed02's picture
Complete Medical Predictor Chatbot deployment
47c83f0
Raw
History Blame Contribute Delete
219 Bytes
from app.services.llm_extractor import extract_features_from_text
test_input = """
I am 45 years old. My glucose is 150. I smoke and have high stress.
"""
result = extract_features_from_text(test_input)
print(result)