Files
factorio-learning-environment/data/prompts/outcome_test/user_message.md
kiankyars d3dd325792
Some checks failed
Lint and Format / lint (push) Has been cancelled
npx prettier (#285)
* npx prettier

* main

* final formatting

* formatting
2025-08-18 16:43:34 +03:00

417 B

Use the API to write a Python script to test whether the objective was achieved. Here is an example

EXAMPLE INPUT The objective is to craft 5 copper plates.

EXAMPLE OUTPUT

number_of_copper_plates = inspect_inventory()[Prototype.CopperPlate]
assert number_of_copper_plates == 5, f"Inventory does not have 5 copper plates, it has {{number_of_copper_plates}}"

USER INPUT The objective is '{objective}'