diff --git a/README.md b/README.md index 927738fd..c24e4610 100644 --- a/README.md +++ b/README.md @@ -103,10 +103,7 @@ fle cluster start -s open_world # Start with open world scenario 6. **Run Eval**: Running open and lab play with example run configs: Tasks (one parallel run of iron-ore task): ```sh - # Using uv - uv run -m fle.run --run_config=fle/eval/algorithms/independent/gym_run_config.json - # Using python - python -m fle.run --run_config=fle/eval/algorithms/independent/gym_run_config.json + fle eval --run_config=fle/eval/configs/gym_run_config.json ``` ### Client-side running (optional, renders graphics) diff --git a/fle/env/instance.py b/fle/env/instance.py index 00922fe4..1d3cad51 100644 --- a/fle/env/instance.py +++ b/fle/env/instance.py @@ -160,7 +160,7 @@ class FactorioInstance: def __init__( self, - address=None, + address="localhost", fast=True, tcp_port=START_RCON_PORT, inventory: Dict = {}, diff --git a/pyproject.toml b/pyproject.toml index 2d57835a..f8440f92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,6 +70,7 @@ psql = [ [project.scripts] fle = "fle.run:main" +fle-mcp = "fle.server:main" [tool.hatch.version] path = "fle/__init__.py"