TAO $223.70+2.6% 24h
14

Cacheon

sn14Inference & ComputeClean22Strong entry82

Hill climb inference

Emission
9.5
TAO / day · live
Alpha
0.0395
τ · mcap 126.1K
Top-slot payout
0.223
τ per winning epoch · live
Stars
3
live from the GitHub API
Primary language
Python
repo-reported
Last push
2d ago
feeds the dormancy integrity signal
Topics
repo-declared tags

About the repo

what the project says about itself — the input for semantic labels

latent-to/cacheon· pushed 2d ago

Hill climb inference

Reading this tab

scope of the data

Taonets fetches the repo's public metadata (description, topics, language, stars, last push) and the head of its README. Commit-count histories, contributor lists and release notes require the GitHub commits/releases endpoints, which the worker doesn't consume yet — those panels are coming with the ingest upgrade and are not simulated in the meantime.

README head

first lines of the default branch README, unedited

# Cacheon

Cacheon is an inference-throughput competition built around SGLang and designed
to operate as a Bittensor subnet. Miners submit inspectable GPU-kernel
contributions at registered boundaries in a validator-owned model. Validators
admit those contributions through a typed, isolated pipeline and reward only
improvements that reproduce under the registered throughput and quality policy.

This repository—published as [`latent-to/cacheon`](https://github.com/latent-to/cacheon)—contains
the miner SDK and examples, validator and chain control plane, evaluation
runtime, settlement and incentive machinery, and chain-independent engine
release tooling.

> [!IMPORTANT]
> Cacheon is pre-release software. Implemented paths, retained empirical evidence,
> and production readiness are separate claims. Start with the
> [validator first hour](docs/validator-guide/first-hour.md) for what a deployment must prove.

## Start here

| Goal | Documentation |
|---|---|
| Understand the system | [Concepts](docs/get-started/concepts.md) and [architecture overview](docs/architecture/overview.md) |
| Understand why miners participate and how rewards work | [How miners earn rewards](docs/miner-guide/incentives.md) |
| Build a miner contribution | [Miner guide](docs/miner-guide/overview.md) |
| Operate a validator | [Validator guide](docs/validator-guide/overview.md) |
| See what a crown does and does not authorize | [After a crown](docs/engine/integration.md) |
| Review trust boundaries | [Security model](docs/security/threat-model.md) |
| Contribute to the repository | [Contributing](CONTRIBUTING.md) |

The canonical documentation source lives under [`docs/`](docs/) in this
repository and is rendered at [cacheon.ai/docs](https://cacheon.ai/docs/).

## Local correctness loop

Python 3.11 or newer is required.

```bash
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[cpu,dev,release]"

python -m cacheon.cli slots
python -m cacheon.cli scan examples/miner_silu_torch
python -m cacheon.cli verify examples/miner_silu_torch \
  --device cpu \
  --dtype float32
```

`scan` and `verify` are development checks. They do not establish serving
throughput, end-to-end quality, settlement eligibility, or a production
release. Those decisions belong to the validator-owned qualification path
described in the documentation.

## Design boundaries

- The validator owns the model, workload, references, timing, outputs, and
  reward policy. A miner contribution owns only its registered target.
- Candidate build and execution run in validator-owned, no-egress OCI workers;
  wallet and chain-signing authority remain outside candidate lifetimes.
- A single passing qualification is not a crown. Settlement requires an
  independently reproduced pair bound to the same contribution and evaluation
  context.
- Evaluation acceptance and serving are different decisions. Nothing in the
  repository turns a crown into a release; that is a maintainer decision made
  outside it.

See the [product model](docs/architecture/product-model.md) and
[slot contract](docs/architecture/slot-contract.md) for the normative
invariants.

## Tests

```bash
python -m pytest -q tests
```

Documentation checks are described in
[Contributing](CONTRIBUTING.md#documentation).

## License

The repository is licensed under [Apache-2.0](LICENSE). Miner submissions are
governed separately by the
[draft submission terms](docs/legal/submission-terms.md); those terms require
legal review before production use.
GitHub · Taonets