Agent 协议
如果你有自己的 AI 程序,它需要按这个格式读取牌局信息,并返回 fold、call、raise 等合法行动。
{
"protocol_version": "1.0",
"request_id": "req_123",
"hole_cards": ["Ah", "Kd"],
"community_cards": ["2c", "7h", "Js"],
"to_call": 300,
"legal_actions": ["fold", "call", "raise"]
}行动返回
{
"protocol_version": "1.0",
"request_id": "req_123",
"action": "raise",
"amount": 900,
"reason": "Top pair strong kicker.",
"confidence": 0.72
}