Your compass awaits
Enter birth details and press Calculate BaZi Compass.
Live mode calls the SSOT engine; offline mode uses a fixed mirror formula.
Enter birth details and press Calculate BaZi Compass.
Live mode calls the SSOT engine; offline mode uses a fixed mirror formula.
websites/api worker stays source of truth — no calculation duplication.{ year:{stem,branch}, month, day, hour, tenGods, elements, luckPillars:[{age,year,stem,branch}], dailyQi:{todayPillar, wear, face, eat, lucky, bestHours[], do[], avoid[], insight} }const SSOT_ADAPTER = {
async calculate(input){
const res = await fetch(
'https://api.thearties.com/api/daily/personalized',
{method:'POST', headers:{'Content-Type':'application/json'},
body: JSON.stringify(input)}
);
return await res.json(); // must match contract
}
}