6c2f3899c8
git.karti.ai/PIG/PIG-Demo is now the source of truth, public and anonymously cloneable. Every self-link in the site and the docs repoints there — Gitea serves file paths at /src/branch/main/, not /blob/main/, so those needed rewriting rather than a hostname swap. CI moves with it. An archived GitHub repo is read-only and its Actions stop firing, so leaving the workflow there would have meant a repo whose gates silently never run. .github/ is deleted rather than kept for reference: a workflow that can never execute is worse than no workflow, because it looks like coverage. The Gitea workflow is not a copy. That runner is aarch64 and installs pnpm through corepack from `packageManager` rather than pnpm/action-setup, uses checkout@v4 and setup-node@v4, and fetches uv from astral.sh directly. It is also configured `container.network: host` — nothing here needs a service container, but the comment says so, because that setting cost the sibling repo three failed runs. The header and footer icon changed from the GitHub mark to a neutral one. A GitHub logo pointing at a Gitea instance is a small lie about where the code lives, on a site whose argument is that you can go and check it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019mt6sHQHEnEYrJZvoMCJSB
41 lines
2.5 KiB
HTML
41 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<title>PIG Demo — RL environments you can play</title>
|
|
<meta name="description" content="Interactive demos of reinforcement-learning environments for executives. Real verifiers environments, real recorded rollouts, and a reward you can change to see the ranking flip." />
|
|
<link rel="icon" href="/icons/favicon.svg" type="image/svg+xml" />
|
|
<link rel="canonical" href="https://demo.primeintellectgrowth.com/" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:site_name" content="PIG Demo" />
|
|
<meta property="og:title" content="PIG Demo — RL environments you can play" />
|
|
<meta property="og:description" content="Real environments, real recorded rollouts, and a reward you can change to see the ranking flip." />
|
|
<meta property="og:url" content="https://demo.primeintellectgrowth.com/" />
|
|
<meta property="og:image" content="https://demo.primeintellectgrowth.com/og/home.png" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:image" content="https://demo.primeintellectgrowth.com/og/home.png" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<!--
|
|
The page's whole claim is that it shows you real receipts. Rendering
|
|
nothing at all to a visitor whose JavaScript failed would undercut that
|
|
more than any missing feature, so the thesis and the verifiable command
|
|
are in the HTML itself.
|
|
-->
|
|
<noscript>
|
|
<main style="max-width:42rem;margin:4rem auto;padding:0 1.5rem;font-family:system-ui,sans-serif;line-height:1.6">
|
|
<h1 style="font-size:1.5rem;margin-bottom:1rem">PIG Demo</h1>
|
|
<p>These demos are interactive and need JavaScript. The substance behind them does not.</p>
|
|
<p>Every demo on this site ships a real <a href="https://github.com/PrimeIntellect-ai/verifiers">verifiers</a> environment and a set of recorded rollouts, both in the repository. You can run the environment yourself:</p>
|
|
<pre style="background:#f4f4f5;padding:1rem;border-radius:.5rem;overflow-x:auto"><code>git clone https://git.karti.ai/PIG/PIG-Demo
|
|
cd PIG-Demo && uv sync --all-packages
|
|
uv run vf-eval wordle-five -n 8</code></pre>
|
|
<p><a href="https://git.karti.ai/PIG/PIG-Demo">Read the source →</a></p>
|
|
</main>
|
|
</noscript>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|