ROUTEBusiness workflows
Jev Waitlist Bypass
Jev is a model available on Vercel AI Gateway that bypasses waitlists, allowing users to integrate AI-powered decision-making into their applications without needing specific access keys.
Jev waitlist bypass. No gatekeeping here.
You don’t need TypeSafe access. Jev is live on Vercel AI Gateway right now.
1. Create an AI Gateway key
2. export AI_GATEWAY_API_KEY=...
3. pnpm add ai@latest (need 7.0.105+)
4. Call typesafe-ai/jev
import { experimental_evaluate as evaluate } from 'ai'
const result = await evaluate({
model: 'typesafe-ai/jev',
state: 'Your email / ticket / form submission here',
questions: {
junk: {
type: 'boolean',
instructions: 'This is spam, sales, or not worth a reply',
},
route: {
type: 'choice',
instructions: 'Which queue should this go to',
criteria: {
billing: 'Payments, invoices, refunds',
support: 'Bugs or product issues',
sales: 'Pricing or buying intent',
},
},
},
})
~$0.04 / 1M input tokens. No text out. Just a decision + probability.
That’s the whole unlock: find an expensive queue and put this in front of it.
Docs: vercel.com/ai-gateway/models/jev