feat: basic function

This commit is contained in:
2026-05-11 00:44:15 +08:00
committed by qianrui.mmmy
commit e46b2b84c5
17 changed files with 1946 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"""Texas Hold'em multi-agent game service."""
from texas_holdem.agents import (
CallingStationAgent,
HttpAgent,
HumanAgent,
PokerAgent,
RandomAgent,
)
from texas_holdem.engine import TableGame
from texas_holdem.service import GameManager
__all__ = [
"CallingStationAgent",
"GameManager",
"HttpAgent",
"HumanAgent",
"PokerAgent",
"RandomAgent",
"TableGame",
]