Back
agentsdeveloper-toolsOpen source

MCTS Agent

Use Jev judgments inside a Monte Carlo tree search agent.

What Jev decides

Action prior probabilities, state value scores, branching width, and whether the goal is complete.

Gemini proposes actions; Jev supplies action priors, state scores, branching choices, and completion judgments for the search loop.

CHOICESCORENOUL
Jev role
Evaluate candidate actions and states during search.
Input
The goal, current state, and Gemini-proposed actions or hypothetical states.
Output
Typed Choice, Score, and Noul judgments consumed by the search algorithm.
Decision frequency
Across planning and reassessment steps of the MCTS loop.
Fallback
The agent executes only the selected immediate action and grounds later decisions in observed results.
Author reported · Source reviewed

How it works

Input
The goal, current state, and Gemini-proposed actions or hypothetical states.
Jev
CHOICE + SCORE + NOUL
Output
Typed Choice, Score, and Noul judgments consumed by the search algorithm.

Overview

This experimental agent combines Gemini action generation with a discriminative MCTS planner. Jev Choice assigns priors and branching widths, Score evaluates hypothetical states, and Noul checks completion. The current README says low early scores do not remove proposed paths; execution observes the real workspace before the next planning step.

Language
Python
Author
lhemerly
Sources checked Sep 24, 2026

Sources

Related projects