@mseep/mcp-reasoner
Version:
MCP Reasoner with multiple reasoning strategies including Beam Search and Monte Carlo Tree Search
10 lines (9 loc) • 372 B
JavaScript
export const CONFIG = {
beamWidth: 3, // Keep top 3 paths
maxDepth: 5, // Reasonable depth limit
minScore: 0.5, // Threshold for path viability
temperature: 0.7, // For thought diversity
cacheSize: 1000, // LRU cache size
defaultStrategy: 'beam_search', // Default reasoning strategy
numSimulations: 50 // Default number of MCTS simulations
};