This company claims to have an AI system that does not rely on datacenters. An investigation, but here's some of the code: (more in article)
// Override alert to ensure no model/provider names ever appear to users
(function() {
if (typeof window !== 'undefined' && !window.__riAlertOverridden) {
const originalAlert = window.alert.bind(window);
window.alert = function(msg) {
try {
originalAlert(riSanitizeClientMessage(String(msg)));
} catch (e) {
originalAlert(msg);
}
};
window.__riAlertOverridden = true;
console.log('RI client alert override installed');
}
})();
[link] [comments]