From 3e1cb31f63b5c7147939feca7f8095377f64e145 Mon Sep 17 00:00:00 2001 From: mbchang Date: Mon, 1 May 2023 10:37:25 -0700 Subject: [PATCH] fix: add import for gymnasium (#3899) --- docs/use_cases/agent_simulations/gymnasium.ipynb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/use_cases/agent_simulations/gymnasium.ipynb b/docs/use_cases/agent_simulations/gymnasium.ipynb index 64094bd8..ad35b500 100644 --- a/docs/use_cases/agent_simulations/gymnasium.ipynb +++ b/docs/use_cases/agent_simulations/gymnasium.ipynb @@ -10,6 +10,16 @@ "For many applications of LLM agents, the environment is real (internet, database, REPL, etc). However, we can also define agents to interact in simulated environments like text-based games. This is an example of how to create a simple agent-environment interaction loop with [Gymnasium](https://github.com/Farama-Foundation/Gymnasium) (formerly [OpenAI Gym](https://github.com/openai/gym))." ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "f36427cf", + "metadata": {}, + "outputs": [], + "source": [ + "!pip install gymnasium" + ] + }, { "cell_type": "code", "execution_count": 50,