diff --git a/metagpt/environment/base_env.py b/metagpt/environment/base_env.py index 9829c5b3a..14023e3b7 100644 --- a/metagpt/environment/base_env.py +++ b/metagpt/environment/base_env.py @@ -47,7 +47,7 @@ def mark_as_writeable(func): class ExtEnv(BaseModel): - """External Env to intergate actual game environment""" + """External Env to integrate actual game environment""" def _check_api_exist(self, rw_api: Optional[str] = None): if not rw_api: diff --git a/metagpt/environment/mincraft_env/mincraft_env.py b/metagpt/environment/mincraft_env/mincraft_env.py index 6aaa34187..fdc477164 100644 --- a/metagpt/environment/mincraft_env/mincraft_env.py +++ b/metagpt/environment/mincraft_env/mincraft_env.py @@ -20,7 +20,7 @@ from metagpt.utils.common import load_mc_skills_code, read_json_file, write_json class MincraftEnv(Environment, MincraftExtEnv): - """MincraftEnv, including shared memory of cache and infomation between roles""" + """MincraftEnv, including shared memory of cache and information between roles""" model_config = ConfigDict(arbitrary_types_allowed=True)