Skip to Content
Health Ai PlatformGuidesGuides

Guides

Use these guides when you want to build something practical with the Health AI Platform instead of reading the subsystem docs in isolation.

Guides in this section

Suggested paths

I want to build a new orchestration flow

Start with Build Your First Workflow.

I want to enrich workflows with real patient data

Read Add Patient Context to a Workflow.

I want to operationalize knowledge ingestion

Read Operationalize Research Ingestion.

Minimal platform example

import { WorkflowEngine } from '@loop/workflow-engine'; const workflow = WorkflowEngine.load({ id: 'guide-example-v1', name: 'Guide Example', version: '1.0.0', steps: [{ id: 'check', type: 'check_biomarker' }], }); const result = await workflow.execute({ patientId: 'patient-1', data: { biomarker: { TSH: 3.1 } }, }); console.log(result.executedSteps);

Next steps