Agent Status
Status:
{{
isInitialized
? "✓ Ready"
: isInitializing
? "⏳ Initializing..."
: "⚪ Not initialized"
}}
❌ Error: {{ error }}
Test Game State
Board Shape:
{{ boardShape.x }}×{{ boardShape.y }}×{{ boardShape.z }}
Current Player:
{{ currentPlayer }}
Move Count:
{{ moveHistory.length }}
Valid Moves:
{{ validMovesCount }}
Current TGN:
{{ currentTGN }}
Test: Generate AI Move
Generate the best move for the current position using the AI agent
Generated Move:
Position:
{{ moveResult.position }}
TGN Notation:
{{ moveResult.notation }}
Generation Time:
{{ moveResult.time.toFixed(2) }}ms
Valid Moves Evaluated:
{{ moveResult.movesEvaluated }}
Move History
No moves yet
{{ index + 1 }}.
{{ move.player }}
{{ move.notation }}
{{ move.position }}
Console Output
Check the browser console (F12) for detailed logs