create_table
Create a simulated no-limit hold'em table with configurable seats, blinds, and stacks, then deal the first hand. Practice against bots with adjustable playing styles.
Instructions
Create a new simulated no-limit hold'em table and deal the first hand.
Args: seats: Number of seats (players) at the table (2-9). small_blind: Small blind size in chips. big_blind: Big blind size in chips (> small_blind). starting_stack: Starting stack for each seat. hero_seat: Seat index controlled by you (the hero). bot_profile: Opponent style: 'mixed', 'random', 'tight', or 'station'.
Returns a snapshot of the table; bots are auto-advanced until it is the hero's turn or the hand ends.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seats | No | ||
| big_blind | No | ||
| hero_seat | No | ||
| bot_profile | No | mixed | |
| small_blind | No | ||
| starting_stack | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pot | Yes | ||
| board | Yes | ||
| seats | Yes | ||
| street | Yes | ||
| hand_id | Yes | ||
| players | Yes | ||
| table_id | Yes | ||
| big_blind | Yes | ||
| hand_over | Yes | ||
| hero_seat | Yes | ||
| actor_seat | Yes | ||
| bot_profile | Yes | ||
| hand_number | Yes | ||
| small_blind | Yes | ||
| is_hero_turn | Yes | ||
| hero_hole_cards | Yes |