Skip to content
Open
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
16 changes: 12 additions & 4 deletions module-1/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"from envs.openspiel_env import OpenSpielEnv\n",
"from envs.openspiel_env.models import OpenSpielAction\n",
"\n",
"OPENSPIEL_URL = 'https://openenv-openspiel-catch.hf.space'\n",
"OPENSPIEL_URL = 'https://openenv-openspiel-env.hf.space'\n",
"\n",
"with OpenSpielEnv(base_url=OPENSPIEL_URL).sync() as env:\n",
" result = env.reset()\n",
Expand Down Expand Up @@ -150,10 +150,18 @@
"metadata": {},
"outputs": [],
"source": [
"from envs.textarena_env import TextArenaEnv\n",
"from envs.textarena_env.models import TextArenaAction\n",
"!pip install -q \"openenv-textarena @ git+https://huggingface.co/spaces/openenv/wordle\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from textarena_env import TextArenaEnv,TextArenaAction\n",
"\n",
"TEXTARENA_URL = 'https://burtenshaw-textarena.hf.space'\n",
"TEXTARENA_URL = 'https://openenv-wordle.hf.space'\n",
"\n",
"with TextArenaEnv(base_url=TEXTARENA_URL).sync() as env:\n",
" result = env.reset()\n",
Expand Down