hotcopy commited on
Commit
1d2c123
Β·
verified Β·
1 Parent(s): b20f8d3

Scrub model names + GitHub refs + license

Browse files
Files changed (1) hide show
  1. README.md +4 -13
README.md CHANGED
@@ -6,9 +6,6 @@ colorTo: gray
6
  sdk: static
7
  pinned: true
8
  short_description: Recursive Language Model CLI on Cloudflare Workers.
9
- models:
10
- - moonshotai/Kimi-K2-Instruct
11
- - google/gemma-2-27b-it
12
  tags:
13
  - recursive-language-models
14
  - agentic-coding
@@ -18,7 +15,7 @@ tags:
18
  - arxiv:2512.24601
19
  ---
20
 
21
- HotCopy is a Recursive Language Model CLI on Cloudflare Workers. Unbounded context, agent swarms in parallel, two-model architecture (Kimi K2.6 orchestrator + Gemma 4 workers, 256K context each), no API keys, no config.
22
 
23
  <div class="hc-org-card">
24
  <style>
@@ -97,7 +94,6 @@ HotCopy is a Recursive Language Model CLI on Cloudflare Workers. Unbounded conte
97
  <p class="hc-tagline">Your codebase is too big for any context window. <em>So we killed the context window.</em> Managed recursive AI coding CLI β€” agent swarms decompose impossible problems in parallel.</p>
98
  <div class="hc-cta-row">
99
  <a class="hc-cta hc-cta-primary" href="https://hotcopy.ai">Install</a>
100
- <a class="hc-cta hc-cta-secondary" href="https://github.com/hotcopyai/hotcopy">GitHub</a>
101
  </div>
102
  <div class="hc-meta">β–Έ UNBOUNDED CONTEXT // 50+ PARALLEL AGENTS // 0 API KEYS</div>
103
  </div>
@@ -124,7 +120,7 @@ Median RLM cost ≀ base model cost; up to 3Γ— cheaper than summary-agent baseli
124
  ## How it works
125
 
126
  - **Prompt as environment.** Project context is loaded into Durable Object memory as REPL variables. The orchestrator sees only metadata (file count, repo map, total chars) β€” never raw files.
127
- - **Two-model architecture.** Kimi K2.6 (`@cf/moonshotai/kimi-k2.6`) is the RLM root model with a 256K context window. Gemma 4 (`@cf/google/gemma-4-26b-a4b-it`) is every sub-call worker, also 256K, with vision.
128
  - **REPL with stdout truncation.** The orchestrator writes JavaScript that runs in a sandboxed V8 isolate (`@cloudflare/codemode`). Stdout is truncated before being appended to history β€” variables hold the long state, the model history holds the metadata.
129
  - **Parallel sub-calls via `llm_batch()`.** Unlike the paper's sequential implementation, HotCopy fans out scouts in parallel through Cloudflare Workers, dramatically reducing latency on map-reduce decompositions.
130
  - **Durable Objects + AI Gateway.** Every model call routes through `hotcopy-gateway` for cost tracking, prefix caching (per-session affinity), and rate-limit handling. State lives in DO SQL β€” trajectories, sub-calls, costs, all logged for debugging.
@@ -170,7 +166,7 @@ Cloudflare Workers + Agents SDK Β· Durable Objects (RLMOrchestrator, WorkerAgent
170
  npm i -g hotcopy && hotcopy
171
  ```
172
 
173
- Auth with GitHub on first run. No API keys. No config files. Managed inference is included.
174
 
175
  ## What we publish on Hugging Face
176
 
@@ -228,11 +224,6 @@ Auth with GitHub on first run. No API keys. No config files. Managed inference i
228
  <span class="hf-title">hotcopy.ai</span>
229
  <span class="hf-sub">Product site</span>
230
  </a>
231
- <a class="hf-card" href="https://github.com/hotcopyai/hotcopy">
232
- <span class="hf-emoji">πŸ’»</span>
233
- <span class="hf-title">GitHub</span>
234
- <span class="hf-sub">Source + issues</span>
235
- </a>
236
  <a class="hf-card" href="https://arxiv.org/abs/2512.24601">
237
  <span class="hf-emoji">πŸ“„</span>
238
  <span class="hf-title">Paper</span>
@@ -242,4 +233,4 @@ Auth with GitHub on first run. No API keys. No config files. Managed inference i
242
 
243
  ---
244
 
245
- License: MIT. Contact: hello@hotcopy.ai Β· [hotcopy.ai](https://hotcopy.ai)
 
6
  sdk: static
7
  pinned: true
8
  short_description: Recursive Language Model CLI on Cloudflare Workers.
 
 
 
9
  tags:
10
  - recursive-language-models
11
  - agentic-coding
 
15
  - arxiv:2512.24601
16
  ---
17
 
18
+ HotCopy is a Recursive Language Model CLI on Cloudflare Workers. Unbounded context, agent swarms in parallel, two-tier orchestrator/worker architecture (256K context per agent), no API keys, no config.
19
 
20
  <div class="hc-org-card">
21
  <style>
 
94
  <p class="hc-tagline">Your codebase is too big for any context window. <em>So we killed the context window.</em> Managed recursive AI coding CLI β€” agent swarms decompose impossible problems in parallel.</p>
95
  <div class="hc-cta-row">
96
  <a class="hc-cta hc-cta-primary" href="https://hotcopy.ai">Install</a>
 
97
  </div>
98
  <div class="hc-meta">β–Έ UNBOUNDED CONTEXT // 50+ PARALLEL AGENTS // 0 API KEYS</div>
99
  </div>
 
120
  ## How it works
121
 
122
  - **Prompt as environment.** Project context is loaded into Durable Object memory as REPL variables. The orchestrator sees only metadata (file count, repo map, total chars) β€” never raw files.
123
+ - **Two-tier orchestrator/worker architecture.** The RLM root model owns a 256K orchestration window. Every sub-call routes to a separate worker model with its own 256K window and multimodal capability β€” managed for you, no provider keys to wire up.
124
  - **REPL with stdout truncation.** The orchestrator writes JavaScript that runs in a sandboxed V8 isolate (`@cloudflare/codemode`). Stdout is truncated before being appended to history β€” variables hold the long state, the model history holds the metadata.
125
  - **Parallel sub-calls via `llm_batch()`.** Unlike the paper's sequential implementation, HotCopy fans out scouts in parallel through Cloudflare Workers, dramatically reducing latency on map-reduce decompositions.
126
  - **Durable Objects + AI Gateway.** Every model call routes through `hotcopy-gateway` for cost tracking, prefix caching (per-session affinity), and rate-limit handling. State lives in DO SQL β€” trajectories, sub-calls, costs, all logged for debugging.
 
166
  npm i -g hotcopy && hotcopy
167
  ```
168
 
169
+ Sign in on first run. No API keys. No config files. Managed inference is included.
170
 
171
  ## What we publish on Hugging Face
172
 
 
224
  <span class="hf-title">hotcopy.ai</span>
225
  <span class="hf-sub">Product site</span>
226
  </a>
 
 
 
 
 
227
  <a class="hf-card" href="https://arxiv.org/abs/2512.24601">
228
  <span class="hf-emoji">πŸ“„</span>
229
  <span class="hf-title">Paper</span>
 
233
 
234
  ---
235
 
236
+ Contact: hello@hotcopy.ai Β· [hotcopy.ai](https://hotcopy.ai)