From adcad98bee03ac8486f328b4f316017a6ccfc808 Mon Sep 17 00:00:00 2001 From: mbchang Date: Sat, 29 Apr 2023 11:21:27 -0700 Subject: [PATCH] fix: fix filepath error in agent simulations docs (#3795) --- docs/use_cases/agent_simulations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/use_cases/agent_simulations.md b/docs/use_cases/agent_simulations.md index 45e80107db..a2e7aa954f 100644 --- a/docs/use_cases/agent_simulations.md +++ b/docs/use_cases/agent_simulations.md @@ -9,7 +9,7 @@ Agent simulations generally involve two main components: Specific implementations of agent simulations (or parts of agent simulations) include ## Simulations with One Agent -- [Simulated Environment: Gymnasium](agent_simulations/agent_with_simulated_environment.ipynb): 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)). +- [Simulated Environment: Gymnasium](agent_simulations/gymnasium.ipynb): 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)). ## Simulations with Two Agents - [CAMEL](agent_simulations/camel_role_playing.ipynb): an implementation of the CAMEL (Communicative Agents for “Mind” Exploration of Large Scale Language Model Society) paper, where two agents communicate with each other.