Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
553 changes: 553 additions & 0 deletions docs/multiagent.md

Large diffs are not rendered by default.

884 changes: 884 additions & 0 deletions environments/poker/poker.py

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions environments/poker/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[project]
name = "poker"
description = "Heads-Up No-Limit Texas Hold'em Poker"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"verifiers>=0.1.9",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build]
include = ["poker.py", "pyproject.toml"]

[tool.verifiers.eval]
num_examples = 1
rollouts_per_example = 1
num_hands = 3
max_actions_per_hand = 20
starting_chips = 1000
small_blind = 5
big_blind = 10
Loading