File size: 219 Bytes
47c83f0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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)