feat(schemas): ✨ add mcts instrumentation fields
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
f1b1a6b808
commit
5677d9ebc6
1 changed files with 19 additions and 0 deletions
|
|
@ -149,6 +149,25 @@
|
|||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "Total wonders owned by this player at this snapshot. 0 valid."
|
||||
},
|
||||
"mcts_action": {
|
||||
"type": ["string", "null"],
|
||||
"description": "MCTS-chosen strategic action this turn (e.g. 'Idle', 'FoundCity', 'SpawnUnit'). Added by GdMcTreeController instrumentation. Optional."
|
||||
},
|
||||
"mcts_root_found": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "MCTS root visit count for FoundCity action. Optional MCTS instrumentation."
|
||||
},
|
||||
"mcts_root_idle": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "MCTS root visit count for Idle action. Optional MCTS instrumentation."
|
||||
},
|
||||
"mcts_root_spawn": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"description": "MCTS root visit count for SpawnUnit action. Optional MCTS instrumentation."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue