action_call
Execute a call action in Texas Holdem poker by specifying player and table IDs, enabling AI agents to participate in game decisions effectively.
Instructions
do action call
Input Schema
Name | Required | Description | Default |
---|---|---|---|
player_id | Yes | ||
table_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"player_id": {
"type": "string"
},
"table_id": {
"type": "string"
}
},
"required": [
"player_id",
"table_id"
],
"type": "object"
}