Fill out this form to get in touch for your AI Consultation

We're an AI lab, we make foundational systems and use AI to help people. So we're helping cybersecurity companies integrate top of the line models into their systems and helping local brands build digital infrastructures using AI.

// Function to get the referral name from the URL function getReferralFromURL() { const urlParams = new URLSearchParams(window.location.search); return urlParams.get('ref'); // Extracts "ref" parameter } // Auto-fill the hidden referral field if ref exists in URL window.onload = function() { const referralField = document.querySelector('input[name="ref"]'); if (referralField) { const refValue = getReferralFromURL(); if (refValue) { referralField.value = refValue; } } };