guardianOS
Isabella | Sovereign v3.0
Orchestrator Report
Isabella's Response
HIPAA Compliance Training

HIPAA Training

Policy Repository

Training Complete!

You've completed all 20 free HIPAA training slides.

Ready to get certified?

Free Training Includes:
  • 20 Training Slides
  • Interactive Quizzes
  • Policy Analysis
Certification Includes:
  • Full Certification Exam
  • Digital Certificate
  • Official HIPAA Badge
$29

One-time payment • Lifetime access

Get HIPAA Certified

Guardian Certification

This exam evaluates your knowledge of the selected course.

25 multiple‑choice

Varies by course

Passing: 80%

3D certificate upon passing

GUARDIANOS · VERIFIED
window.speak = async function(text, agent = 'isabella') { if (!text) return; try { const voice = agent === 'isabella' ? 'en_US-amy-medium' : 'en_US-hfc_male-medium'; const response = await fetch('http://104.236.77.88:5004/synthesize', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ text, voice }) }); if (response.ok) { const audioBlob = await response.blob(); const url = URL.createObjectURL(audioBlob); const audio = new Audio(url); window.dispatchEvent(new CustomEvent('avatar-speaking', { detail: { speaking: true, words: text.split(' ') } })); audio.play(); audio.onended = () => window.dispatchEvent(new CustomEvent('avatar-speaking', { detail: { speaking: false } })); return; } else { console.warn('Piper returned error', response.status); } } catch (e) { console.warn('Piper failed, falling back to browser speech', e); } // Fallback to browser speech const utterance = new SpeechSynthesisUtterance(text); utterance.onstart = () => window.dispatchEvent(new CustomEvent('avatar-speaking', { detail: { speaking: true, words: text.split(' ') } })); utterance.onend = () => window.dispatchEvent(new CustomEvent('avatar-speaking', { detail: { speaking: false } })); window.speechSynthesis.speak(utterance); };