Skip to content

Helix AI Public Hub

“Forging Trust, One AI Choice at a Time”

Explore our AI demos, ethical principles, and latest updates in plain language. Built for everyone to understand and engage.

About Helix AI

We’re building AI that puts people first, with clear, transparent, and ethical tools. Our mission is to empower users while keeping trust at the core.

Learn more about our ethics.

Merkle Proof Snapshot

Root (sha256): a3a2c61bd7e59ec88c373b51900e81bc8599e51e6392aa1581844e77a9470636

Created: 2025-09-28T16:36:03Z • Leaves: 33 • Order: path-asc

Verify Locally (PowerShell / bash)

Windows PowerShell

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$ptr = Invoke-RestMethod https://helixprojectai.com/.well-known/helix/merkle-latest.json
$dest = Join-Path $env:TEMP ("helix_merkle_" + (Get-Date -Format 'yyyyMMdd_HHmmss'))
New-Item -ItemType Directory -Path $dest | Out-Null
$bundle = Join-Path $dest 'bundle.tgz'
$sha    = Join-Path $dest 'bundle.tgz.sha256'
Invoke-WebRequest $ptr.bundle_url -OutFile $bundle
Invoke-WebRequest ($ptr.bundle_url + '.sha256') -OutFile $sha
$local = (Get-FileHash $bundle -Algorithm SHA256).Hash.ToLower()
$expect = (Get-Content $sha).Split(' ')[0].ToLower()
if ($local -eq $expect) { "Bundle hash OK" } else { throw "Hash mismatch" }
        

Linux / macOS (bash)

curl -fsS https://helixprojectai.com/.well-known/helix/merkle-latest.json -o /tmp/merkle-latest.json
BURL=$(jq -r '.bundle_url' /tmp/merkle-latest.json)
cd /tmp && curl -fsS "$BURL" -o bundle.tgz && curl -fsS "$BURL.sha256" -o bundle.tgz.sha256
sha256sum -c bundle.tgz.sha256
        

Our Demos

Check out our interactive AI demos, like Rachel, showcasing real-time particle animations.

Try the Rachel Demo

Our Ethics

We prioritize human custody, consent, and clarity in all our AI work. Visit our ethics page for details.

Visit our ethics page.

Latest News

Stay updated on our latest AI advancements and collaborations. Check back for new announcements.

Contact us for updates.

Provenance

Framework: Helix Public Hub v1.0

Assets: Tailwind CSS v2.2.19, Inter font

Last Updated: September 5, 2025

Transparency & Changelog

See our Transparency page for more details.

Get in Touch

Contact — info@helixprojectai.com

Reach out with questions about our demos, ethics, or collaboration opportunities.