tantk commited on
Commit
04fabe0
Β·
1 Parent(s): 0d53e7e

docs: add 'Why Agents Need This' section explaining the value proposition

Browse files
Files changed (1) hide show
  1. README.md +19 -2
README.md CHANGED
@@ -11,10 +11,27 @@ app_port: 7860
11
 
12
  **Pay-per-render headless browser API, powered by x402 micropayments on Stellar.**
13
 
14
- AI agents struggle with JavaScript-rendered websites β€” SPAs, Twitter/X, DeFi apps, and Cloudflare-protected sites all return empty HTML shells to standard HTTP fetch. RenderGate solves this with a headless browser rendering service that agents pay for per-request via x402 micropayments in USDC on Stellar.
15
-
16
  **Live service:** https://tantk-rendergate.hf.space
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ## How It Works
19
 
20
  1. Agent requests `GET /render?url=https://x.com/stellarorg`
 
11
 
12
  **Pay-per-render headless browser API, powered by x402 micropayments on Stellar.**
13
 
 
 
14
  **Live service:** https://tantk-rendergate.hf.space
15
 
16
+ ## Why Agents Need This
17
+
18
+ Most AI agents are just HTTP clients β€” they call `fetch()` or `curl` and that's it. No browser engine, no JavaScript execution. When they hit a modern website, they get an empty HTML shell back.
19
+
20
+ This affects every major agent framework:
21
+ - **Claude Code** β€” `WebFetch` is HTTP GET only, no JS rendering
22
+ - **OpenAI Codex / GPT agents** β€” HTTP-based tools
23
+ - **LangChain / CrewAI agents** β€” Python `requests` library
24
+ - **Trading bots / arb agents** β€” lightweight scripts, no browser
25
+ - **MCP-based agents** β€” whatever tools they have, usually plain HTTP
26
+
27
+ **Why can't agents just install a browser?**
28
+ - Chromium is **500MB+** β€” too heavy for serverless, Lambda, or lightweight containers
29
+ - Needs system-level dependencies (`libnss3`, `libgbm`, etc.) β€” not a simple `npm install`
30
+ - Each render uses **200-500MB RAM** β€” agents on minimal infra can't afford this
31
+ - Browser management is complex β€” crashes, timeouts, memory leaks, concurrency
32
+
33
+ **RenderGate:** The agent pays $0.001 USDC and gets fully rendered content in one HTTP call. No browser install, no dependencies, no memory overhead. Heavy lifting happens on our infra. This is the x402 model β€” pay for compute you can't or don't want to run yourself.
34
+
35
  ## How It Works
36
 
37
  1. Agent requests `GET /render?url=https://x.com/stellarorg`