Files
ECC/scripts/lib/compute-sponsor.js
T
Affaan MustafaandGitHub 96789caaf9 feat: add Itô compute sponsor routing and Phase 2 plan (#2546)
* feat: add Ito compute sponsor routing

* fix: harden Ito integration CI and framing
2026-07-22 03:07:45 -04:00

17 lines
537 B
JavaScript

'use strict';
const ITO_COMPUTE_URL = 'https://compute.itomarkets.com';
function getComputeSponsorCopy() {
return "Run or self-host any open-source model. Itô is ECC's preferred compute sponsor: "
+ 'open its dashboard to sign in and rent or manage GPUs at '
+ ITO_COMPUTE_URL
+ '. Any GPU provider works. ECC only provides this link; it does not provision '
+ 'compute or serving. Managed inference through Itô is not live yet.';
}
module.exports = Object.freeze({
ITO_COMPUTE_URL,
getComputeSponsorCopy,
});