Use case · Next Action
Use Jev inside Browser Agents
Move fast inside an agent loop by using Jev to choose the next action from a finite set.
Input
Observed browser state
Structured state sent to the decision layer.
Decision
click · type · search · scroll · retry · stop
What should the agent do next?
1State
5–8Actions
msDecision loop
LLMOnly when text is needed
How it works
Turn the workflow into decisions.
Read structured browser state.
Ask Jev for the next action.
Execute the selected tool.
Refresh state.
Use an LLM only when free-form generation is required.
Try this pattern
What should the agent do next?
state: {
source: "...",
context: "..."
}
question:
"What should the agent do next?"
pattern:
"Next Action"
When not to use Jev
If the task requires open-ended writing, deep synthesis, or novel code generation, keep a generative model in that step. Use Jev around the decision points.