Usage Guide

First Analysis

analyze.py
from proofly import HealthAnalyzer
analyzer = HealthAnalyzer()
 
# Your first analysis
result = analyzer.analyze_metrics(
    condition="diabetes",
    metrics=DiabetesMetrics(
        blood_glucose=120,
        hba1c=6.5,
        blood_pressure=130
    )
)
Last updated on