poker_proposeDetector
Propose new detectors by defining unique names, origin coordinates, grid dimensions, and optional transformations for task management in poker simulations.
Instructions
新しい検出器を提案します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| grid | No | エッジベクトルと分割数の組の配列(配列の数が検出器の次元を表す: 1D/2D/3D) | |
| name | Yes | 検出器の名前(一意である必要があります) | |
| origin | Yes | 検出器の基準位置(x y z形式) | |
| show_path_trace | Yes | 透過線の経路トレースをサマリーに出力するか | |
| transform | No | 適用する変換名(オプション) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"grid": {
"description": "エッジベクトルと分割数の組の配列(配列の数が検出器の次元を表す: 1D/2D/3D)",
"items": {
"additionalProperties": false,
"properties": {
"edge": {
"description": "エッジベクトル(x y z形式)",
"pattern": "^-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?$",
"type": "string"
},
"number": {
"description": "分割数",
"maximum": 10000,
"minimum": 1,
"type": "integer"
}
},
"required": [
"edge",
"number"
],
"type": "object"
},
"maxItems": 3,
"minItems": 0,
"type": "array"
},
"name": {
"description": "検出器の名前(一意である必要があります)",
"maxLength": 50,
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
},
"origin": {
"description": "検出器の基準位置(x y z形式)",
"pattern": "^-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?$",
"type": "string"
},
"show_path_trace": {
"default": false,
"description": "透過線の経路トレースをサマリーに出力するか",
"type": "boolean"
},
"transform": {
"description": "適用する変換名(オプション)",
"maxLength": 50,
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
}
},
"required": [
"name",
"origin",
"show_path_trace"
],
"type": "object"
}