Video summary
JEV Bir Yapay Zeka Sıçraması mı? Yoksa Hype mı? | Astra ve Fable Token Tasarrufu Mümkün Oluyor!
Main summary
Key takeaways
Overview / Why “JEV” is trending
- Social media is abuzz about “JEV” (“Jev this, Jev that…”), but the video argues the hype comes from targeting a real inefficiency in current AI systems: using large language models (LLMs) for simple decision-routing tasks.
- Core claim: modern AI models can “think too much” (generate text and/or run long pipelines) even when the job only needs a fast decision.
What JEV (TypeSafe) is: a decision model inside software
- JEV is described as not a chatbot replacement.
- Instead, it’s a decision-support component that produces structured outputs that software code can use directly.
- Rather than generating arbitrary text, JEV performs classification / scoring / selection among a fixed set of options, such as:
- routing a refund email to the right department,
- determining urgency,
- estimating trust/anger levels, etc.
- Example from the video:
- For a customer email like “money withdrawn twice, want refund,” JEV can output multiple results at once (e.g., payment processing rate %, refund request likelihood %, anger level).
- The existing system code then uses those outputs to decide the next step.
How it fits into an agent/orchestrator pipeline
JEV is positioned inside the loop of an agent system:
- Router/gateway behavior:
- JEV decides which tool/model/person to call next.
- A gateway checks risk-sensitive actions (e.g., “sending money,” “deleting files”).
- The system routes:
- low-risk cases → automation/code
- risky/uncertain cases → a larger model (e.g., Astra/Fable/LLM) or a human
- JEV also influences tool usage:
- it decides which tools to call, not just what text to generate.
Main problems it claims to solve (cost, latency, token waste)
The video argues that many existing systems:
- Send a request to a large LLM,
- Wait for text generation,
- Convert/interpret the output for program logic,
…even when the decision is small or deterministic.
JEV aims to prevent:
- running expensive models unnecessarily,
- long token usage / “prompt bloat,”
- full production pipelines when only a decision is needed.
Cost/speed claims and how they’re bounded
The video cites TypeSafe figures, with caveats:
- TypeSafe workflow claims (as stated by the host):
- up to ~200× faster
- up to ~400× cheaper
- the host stresses these are upper-limit workflow results, not universal.
- Reported response time range:
- ~70–500 ms for most requests in their testing.
- Cost notes mentioned:
- input token cost around $0.042 per ??? (host paraphrases as “4.2 cents” for input token costs)
- no output generation cost because it doesn’t generate text.
- Applicability warning:
- the host says you can’t assume the same savings for every system—results depend on prompt length, request distribution, and model pricing.
“System One” vs overthinking
- The host contrasts:
- LLMs = “slow, thinking, over-allocating tokens”
- JEV = “reflexive, fast decision-making” (compared to a System One approach)
- If deeper reasoning is needed, the system can switch back to the large model rather than forcing everything through JEV.
“Zero hallucinations” claim: corrected interpretation
The video discusses a marketing claim about hallucinations:
- JEV allegedly reduces hallucinations because it won’t invent options outside the candidate set you provide.
- Nuance from the host:
- JEV can still choose the wrong option (e.g., wrong department).
- That’s not “hallucination” in the strict sense of inventing new categories, but it can still be an incorrect decision.
- Security note:
- JEV uses a controlled decision space, but the company acknowledges malicious inputs can still influence decisions.
Prompting/decision format (how it answers)
The video highlights structured output behaviors:
- Choice: selects from up to 255 options
- Score: rates situations as low/medium/high (example: code-change risk)
- NO: outputs a probability (0 to 1) for whether a statement is true
- Efficiency benefit: you can bundle multiple related decisions in one call instead of making multiple separate LLM calls.
- Threshold guidance:
- thresholds should depend on the risk level (irreversible actions need higher confidence).
- you should not “make up” options—candidate options should come from your code/UI/database.
Savings strategy: partial routing instead of full replacement
The host describes a strategy where JEV is used as a router:
- System A (large model) handles everything by default.
- With a JEV router:
- route some cases to code,
- some to smaller models,
- only the hardest/fuzziest cases to Astra/Fable.
- Expected outcome:
- the expensive model is called far less often (host example: reducing strong-model calls by ~80%), though it varies by workload.
Practical guides / tutorial references
- The video references a setup/installation guide with links/examples to repos and installation steps.
- Recommendations from the host:
- don’t convert everything to JEV,
- start with the single most expensive and frequently repeated decision,
- measure billing, latency, and misrouting before expanding.
Examples / community demos mentioned
The video references community/open-source demos of JEV-like decision routing in:
- sub-agent selection,
- code review,
- real-time game production,
- advertising scoring.
A specific classification test is also mentioned:
- classifying ~18,514 email addresses with no training
- accuracy around 98.33%
- cost around $1.12
- compared to a classical labeled-data model at 98.39%
- host warning: not an independent benchmark.
Main speakers / sources (as stated in the subtitles)
- Diogo Almada (founder/co-author; associated with TypeSafe and “JEV,” with research background mentioned)
- TypeSafe (company behind the JEV work; blog/docs cited conceptually)
- Large model sources referenced:
- OpenAI (ChatGPT)
- Meta (Llama / Meta references)
- Google Brain (Gemini mentioned)
- Astra / Fable (described as the expensive production models the system tries to route away from)