Skip to content

v0.1.4 — grid ctx: read a model's max context length

Choose a tag to compare

@scholes-autonomous scholes-autonomous released this 01 Jul 07:07

✨ New: grid ctx — read a model's max context length from GGUF metadata

A new read-only command that reports a model's trained context length,
parsed straight from the .gguf header (<arch>.context_length) — no server
start, no external dependencies.

$ grid ctx Qwen3.5-2B-UD-IQ2_M.gguf
262144

$ grid ctx ~/models/Qwen3.6-35B-A3B-UD-IQ3_S.gguf --json
{"file": ".../Qwen3.6-35B-A3B-UD-IQ3_S.gguf", "context_length": 262144}

  • Accepts a filename under ~/.grid/models/ or a path to any .gguf.
  • --json for machine-readable output.
  • Dependency-free GGUF metadata reader; returns cleanly (non-zero) on missing or malformed files.
  • Standalone and read-only — no changes to grid join / launcher behavior.

📝 Docs

  • README polish: clearer hero, and the hosted connection is now named Autonomous Relay.

📦 Install

curl -fsSL https://grid.autonomous.ai/install.sh | bash
Linux gets the standalone binary; macOS installs the universal wheel via uv (a notarized macOS binary isn't shipped yet).

## What's Changed
* docs(readme): lead the pitch with "computers" by @deehw in https://github.com/autonomous-ai/autonomous-grid/pull/3
* docs(readme): shorten + left-align the hero by @deehw in https://github.com/autonomous-ai/autonomous-grid/pull/4
* docs(readme): name the hosted connection "Autonomous Relay" by @deehw in https://github.com/autonomous-ai/autonomous-grid/pull/5

## New Contributors
* @deehw made their first contribution in https://github.com/autonomous-ai/autonomous-grid/pull/3

**Full Changelog**: https://github.com/autonomous-ai/autonomous-grid/compare/v0.1.3...v0.1.4