OpenRouter, Cloudflare, and Netlify start serving Jev
Three days after launch, Jev is callable through OpenRouter's beta Decisions API, Cloudflare Workers AI, and Netlify Functions. The TypeSafe waitlist is no longer the only door.
On September 18, OpenRouter announced beta support for Jev. The listing adopts TypeSafe’s stated pricing and latency: $0.042 per million input tokens, free output, response times between 70 and 500 ms, and claimed speedups over comparable language model workflows. The endpoint differs from standard chat completions, routing instead through POST https://openrouter.ai/api/alpha/decisions under the model identifier ~typesafe/jev-latest, which resolves to Jev 1.13. OpenRouter also offered $20 in platform credits to ten projects tagging @jjacky.
A day earlier, Cloudflare developer and AI lead Rita Kozlov shared that Jev was available on Cloudflare AI Gateway following public coordination with TypeSafe. Cloudflare serves typesafe/jev through Workers AI (env.AI.run) with a listed 32,000-token context window, while billing rates are managed through the Cloudflare dashboard.
Netlify announced similar availability in a changelog update on September 17. Developers can access Jev through Netlify AI Gateway by installing @typesafe-ai/sdk, initializing a TypeSafeClient within Netlify Functions, and billing usage directly to platform credits. The accompanying sample demonstrates routing incoming contact submissions between sales, support, and spam.
With Vercel having added typesafe-ai/jev on September 16, developers can now access the model through Vercel, Cloudflare, Netlify, or OpenRouter without waiting for direct access from TypeSafe.
Provider listings reflect slight differences in categorization and limits. OpenRouter labels its endpoint as alpha and the model as beta. Cloudflare lists Jev under text generation. While Netlify and OpenRouter cite a 32,000-token context window, TypeSafe’s documentation specifies 64,000 tokens for the full request and 32,000 tokens for state combined with the longest question.
This site's reading
Editorial notes evaluating claims against primary sources, contextualizing findings alongside related implementations, and defining technical terms.
Verify
OpenRouter's thread, TypeSafe's repost, and the public model listing confirm that Jev Latest is in beta on the platform, priced at $0.042 per million input tokens with free output, accessible via POST https://openrouter.ai/api/alpha/decisions as ~typesafe/jev-latest. Cloudflare's listing appears on Workers AI docs as typesafe/jev, specifying a 32,000-token context window with account dashboard pricing. Netlify's changelog corresponds with company updates: TypeSafeClient runs inside Functions and bills against Netlify credits. We did not call these endpoints directly.
Compare
Vercel added typesafe-ai/jev a day earlier, covered in our waitlist article. Four hosting gateways and TypeSafe's direct API now offer access to the same model. The performance metrics cited across partner documentation (70 to 500 ms, and 190x to 440x improvements) originate from TypeSafe's internal benchmarks. OpenRouter and Netlify report a flat 32,000-token window, whereas TypeSafe specifies 64,000 tokens for the total request and 32,000 tokens for the state plus the longest question. Cloudflare catalogs the model under Text Generation despite the payload consisting of state and structured questions.
Terms
- Decisions API
- OpenRouter's dedicated endpoint (POST /api/alpha/decisions) accepting state and typed questions rather than conversational message arrays.
- AI Gateway
- A cloud provider's managed proxy for AI APIs handling credentials, billing, and logs, such as those provided by Vercel, Cloudflare, and Netlify.
- jev-latest
- TypeSafe's alias for the current stable model release, currently routing to jev-1.13.0.
- Workers AI
- Cloudflare's serverless inference runtime, executing queries via env.AI.run('typesafe/jev', { state, questions }).
Sources
- OpenRouter announcement that Jev is in beta
- TypeSafe quoting the OpenRouter listing
- OpenRouter model page for Jev Latest
- Rita Kozlov, Jev live on Cloudflare AI Gateway
- TypeSafe quoting the Cloudflare listing
- Cloudflare Workers AI page for typesafe/jev
- Netlify on typed answers you can branch on
- Netlify changelog, Jev on AI Gateway
- TypeSafe models page (Jev 1.13 limits)