fix sponsor contract after mainline merge

This commit is contained in:
Affaan Mustafa
2026-07-23 22:58:23 -04:00
parent 6a2e09137c
commit 8bcf35b2dc
2 changed files with 6 additions and 12 deletions
+3 -9
View File
@@ -127,18 +127,12 @@ ECC v2.0.0 adds the public Hermes operator story on top of that reusable layer:
<strong>Itô</strong>
</a>
</td>
<td align="center" width="220">
<a href="https://www.moonshot.ai/">
<img src="assets/images/sponsors/moonshot.svg" width="96" alt="Moonshot AI Kimi logo" /><br />
<strong>Moonshot AI</strong>
</a>
</td>
</tr>
</table>
<sub><strong>Run or self-host any open-source model.</strong> Itô partners with ECC on compute: <a href="https://compute.itomarkets.com">open the Itô dashboard to sign in and rent or manage GPUs</a>. Any GPU provider works. ECC only provides this link; it does not provision compute or serving. Managed inference through Itô is not live yet.</sub>
<sub><strong>Run or self-host any open-source model.</strong> Itô is ECC's preferred compute sponsor and partner: <a href="https://compute.itomarkets.com">open the Itô dashboard to sign in and rent or manage GPUs</a>. Any GPU provider works. The sponsorship link is passive: it does not invoke an RFQ, reserve capacity, provision compute, or configure serving. Separately, the opt-in <code>ecc ito find</code> bridge invokes the explicitly configured canonical Itô CLI and submits a live authenticated RFQ; it does not reserve capacity. Managed inference through Itô is not live yet.</sub>
<sub><strong>Moonshot AI (Kimi)</strong> are open source friends of ECC.</sub>
<sub><strong>Moonshot AI (Kimi)</strong> sponsors ECC's open-source work and Kimi integration.</sub>
<sub><strong>Community sponsors:</strong> <a href="https://github.com/mikejmorgan-ai">Mike Morgan</a> · <a href="https://github.com/jasonwu513">@jasonwu513</a> · <a href="https://github.com/1anter">@1anter</a> · <a href="https://github.com/massimotodaro">@massimotodaro</a> · <a href="https://github.com/meadmccabe">@meadmccabe</a></sub>
@@ -1890,7 +1884,7 @@ ECC takes supply-chain and agent safety seriously.
## Sponsors
Partner: [Itô Markets](https://itomarkets.com) (compute). Open source friends: [Moonshot AI (Kimi)](https://www.moonshot.ai). Business sponsors: [CodeRabbit](https://www.coderabbit.ai) · [Greptile](https://www.greptile.com/go/ecc) · [Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=ECC). Logos at the top of this README, full list and tiers in [SPONSORS.md](SPONSORS.md). [Become a sponsor](https://github.com/sponsors/affaan-m).
Compute sponsor and partner: [Itô Markets](https://itomarkets.com). Open-source sponsor: [Moonshot AI (Kimi)](https://www.moonshot.ai). Business sponsors: [CodeRabbit](https://www.coderabbit.ai) · [Greptile](https://www.greptile.com/go/ecc) · [Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=ECC). Logos at the top of this README, full list and tiers in [SPONSORS.md](SPONSORS.md). [Become a sponsor](https://github.com/sponsors/affaan-m).
For GPU capacity, [Itô's compute dashboard](https://compute.itomarkets.com) rents fixed-rate GPU blocks. Any provider works: ECC links to the dashboard and does not provision compute or serving.
+3 -3
View File
@@ -100,7 +100,7 @@ function main() {
);
const sponsorMark = read('assets/images/sponsors/ito.svg');
assert.match(sponsorMark, /<path\b/);
assert.match(sponsorMark, /fill="#0F172A"/);
assert.match(sponsorMark, /(?:fill="#00112b"|fill:#00112b)/i);
assert.doesNotMatch(
sponsorMark,
/@import|<script|<foreignObject|\son[a-z]+=|(?:href|xlink:href)=/i
@@ -110,8 +110,8 @@ function main() {
const sponsors = read('SPONSORS.md');
assert.ok(sponsors.includes('[**Itô**]'));
assert.ok(sponsors.includes('assets/images/sponsors/ito.svg'));
assert.ok(sponsors.includes('[**Moonshot AI**]'));
assert.ok(sponsors.includes('assets/images/sponsors/moonshot.svg'));
assert.ok(sponsors.includes('[**Moonshot AI (Kimi)**]'));
assert.ok(sponsors.includes('assets/images/sponsors/moonshot.png'));
assert.doesNotMatch(sponsors, /sixtytwo|sixty.?two/i);
assertExactComputeRoute(sponsors);
}],