diff --git a/module-1/notebook.ipynb b/module-1/notebook.ipynb index ea4138f..80ec11c 100644 --- a/module-1/notebook.ipynb +++ b/module-1/notebook.ipynb @@ -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", @@ -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",