Environments SDK
Define an environment as one contract. The engine runs it.
Documentation · Quickstart · Authoring guide · Reference
Overview
fg-env turns one JSON contract into a running environment for AI agents: a market, a council, an exchange, a courtroom, an epidemic, a game. The contract declares the world, the people, what agents can do, what they see, how the world moves on its own, and what is measured. The engine builds the world, wakes agents, gives each a short plain-language picture with typed tools, applies their actions atomically, runs scheduled world rules, and returns typed outputs.
You write data, never engine code. The same contract runs with LLM agents, coded crowds, or both, and engine randomness is reproducible from its seed. Reproducing an LLM run also requires the same participant decisions; record traces for replay.
Built for LLM agents from the ground up:
- A cacheable brief and a compact update. Each turn opens with why the agent is acting, what changed since its last turn, and ranked views of the world, names first, with ids as handles. Nothing is repeated that the agent already has.
- One typed tool per legal action. JSON Schema with enums and numeric bounds. An invalid call returns exactly what to fix, and a refused action changes nothing.
- Participant text stays marked. Anything an agent writes carries its provenance through records, properties and views, and is always shown «quoted».
- Measured. Every run reports turns, tool calls, invalid calls and tokens per update.
fg-env is one of Fareground's open-source building blocks, alongside Agents SDK, agent-id, agent-memory, agent-knowledge and agent-messaging.
Install
Install Environments SDK from PyPI:
python -m pip install "fg-env==0.4.2"
Python ≥ 3.11. The only runtime dependency is pydantic.
Quickstart
For a business walkthrough, start with weekly inventory, including exact expected outputs. The following small contract illustrates the basic API:
import fg_env
contract = {
"name": "Coin flip",
"brief": {"rules": "Bet some coins each round. Heads you win that much, tails you lose it."},
"types": {"player": {"agent": True, "props": {"coins": 10}}},
"entities": {"ann": {"type": "player"}, "bob": {"type": "player"}},
"actions": {"bet": {"by": "player", "params": {"amount": {"type": "int", "min": 1, "max": "$actor.coins"}},
"do": "$actor.coins += $params.amount if $chance(0.5) else -$params.amount"}},
"outputs": {"richest": "$best(player, $it.coins, 'random').name"},
}
print(fg_env.check(contract)) # [] — every problem would come with its path and a fix
result = fg_env.run(contract, seed=1) # random agents; same seed, same run
print(result.outputs) # typed, per the contract
Or start from a template and read the short core guide:
fg-env new game my_game.json # blank, game, market, simulation or social — checks clean and runs
fg-env check my_game.json # static checks plus one played round
fg-env guide # the core guide; it maps every other part: fg-env guide actions, fg-env guide market.auction
What an agent receives on its turn:
env = fg_env.load(contract, seed=1)
print(env.preview("ann")) # {'brief': ..., 'update': ..., 'tools': [...], 'tokens': {...}}
Run it with an LLM — pass your own client:
import anthropic
claude = fg_env.participants.anthropic(anthropic.Anthropic(), "YOUR_AVAILABLE_MODEL_ID")
result = fg_env.run(contract, {"player": claude}, seed=1)
Or with your own code. A participant is any function that takes a Wake:
def cautious(wake):
print(wake.update) # the same picture an LLM reads
result = wake.call("bet", {"amount": 99}) # out of range
print(result.text) # "bet was not done: amount must be at most 10 (got 99). ..."
wake.call("bet", {"amount": 1})
fg_env.run(contract, {"ann": cautious, "bob": claude}, seed=1)
The contract
| Section | What it declares |
|---|---|
inputs |
Typed values supplied at load (numbers, enums, dates, tables of rows) |
brief |
Static text: situation, rules, role text per agent type |
clock, space |
Round budget and calendar; grid, graph or plane positions |
world, types, entities, population |
Global props; kinds of entities with inheritance; named entities; sampled populations |
relations, links |
Typed links and generated networks (small-world, random, ring, complete) |
physics |
Continuous variables integrated with RK4, read from and written back to the world |
records |
Append-only logs (chat, reviews, transcripts) with per-viewer visibility |
actions |
What agents can do: typed params, requirements, chance, atomic effects, outcome text |
stages |
The steps of each round: sequential or sealed simultaneous turns, until, quiet |
views |
Ranked, filtered, templated slices of the world agents read |
events |
Scheduled, periodic, conditional or random world logic; shocks per experiment arm |
policies |
Coded participants as rules, for crowds and baselines |
metrics, outputs |
Series tracked each round; the typed result of a run |
end, invariants |
Early ending; rules that must always hold (a violation fails the run) |
arms, defs, blocks |
Experiment variants; reusable expressions and effect lists |
One small, strict expression language is used everywhere:
$actor.cash >= $params.qty * $params.offer.price, $count(buyer, $it.cash > 0),
$top(offer, [$it.rating, -$it.price], 5). Unknown properties and type errors are reported with
the fix; nothing silently evaluates to zero.
Start with fg-env guide authoring: a compact, executable path from configurable
objects and tables to decisions, rounds and known-answer checks. Hosts can put
fg_env.guide("authoring") directly in an authoring agent’s starting context.
Field references are generated from the installed SDK; fg-env guide maps the
full language and fg-env guide all prints the complete reference.
fg-env guide authoring # or: python -c 'import fg_env; print(fg_env.guide("authoring"))'
fg-env guide # full language map
fg-env guide stages # one section's fields and the $roots available there
fg-env guide market # a mechanism family; fg-env guide market.auction for one mode
Tooling
fg-env check shop.json # every problem with its path and a fix, plus a smoke round
fg-env expand shop.json --mechanisms # the contract with every mechanism expanded into plain sections
fg-env preview shop.json shopper_1 # exactly what that agent reads, its tools, token estimates
fg-env preview shop.json shopper_1 --rounds 5 --agent shopper=policy:thrifty
fg-env run shop.json --seed 1 --input budget=50 --agent shopper=policy:thrifty --json
fg-env experiment shop.json --runs 20 --arms control,promo
fg-env schema # JSON Schema of the contract
In Python: fg_env.check, fg_env.load, env.run / env.step, env.preview,
env.snapshot() / fg_env.Env.restore, and fg_env.experiment. Experiment arms share seeds run
by run, so differences between arms come from the arm, not from luck.
Examples
examples/contracts/ holds complete environments. Each was written by an LLM
agent from the guide alone, and each is covered by a golden-run test: a coffee market with sampled
households and subscriptions, a forecasting council, a price-time-priority order-book exchange, a
civil trial, a town epidemic with physics, Werewolf, a labor negotiation, Connect Four, a
Hold'em-lite poker table, the beer distribution game, a climate club with a CO2 model, a
ride-hailing city, checkers, a Diplomacy-style strategy game, and misinformation spreading on a follower network.
fg-env run examples/contracts/werewolf.json --seed 3
Determinism
Every random draw comes from one seed tree per run, so a run is reproducible exactly from its seed. Adding an event with a chance roll never changes how the population was sampled. Runs snapshot to JSON between rounds and resume identically.
Template API
The earlier template-based engine API (Kernel, simulate, load_world, the registry decorators)
remains available for existing templates as fg_env.legacy (from fg_env.legacy import simulate), with its
commands under fg-env legacy; see docs/template_schema.md.
New environments should use contracts.
Contributing
See CONTRIBUTING.md for dev setup, tests and lint. What changed is in the CHANGELOG.
Licensed under the Apache License 2.0.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fg_env-0.4.6.tar.gz.
File metadata
- Download URL: fg_env-0.4.6.tar.gz
- Upload date:
- Size: 2.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0659be3944640a23b8281d14313d606bd3853dc6c67486748718d371f54562be
|
|
| MD5 |
12df6362fe8acb2edf9aaddc701a258f
|
|
| BLAKE2b-256 |
36761f1649971feb7ea4a0285e5b71a2cb17442a1e94f5c6373de122a49b411a
|
Provenance
The following attestation bundles were made for fg_env-0.4.6.tar.gz:
Publisher:
release.yml on Fareground/environments-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fg_env-0.4.6.tar.gz -
Subject digest:
0659be3944640a23b8281d14313d606bd3853dc6c67486748718d371f54562be - Sigstore transparency entry: 2876553892
- Sigstore integration time:
-
Permalink:
Fareground/environments-sdk@45ceb9595dcd6414a9d94104c722f1e367de13ac -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/Fareground
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@45ceb9595dcd6414a9d94104c722f1e367de13ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fg_env-0.4.6-py3-none-any.whl.
File metadata
- Download URL: fg_env-0.4.6-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4999ec27a264d671de3f7b5dfa4fee2e8d73a987712a7c9286ff5e6bcfd164e6
|
|
| MD5 |
97d0c01b215da98a658c0c3e777959d1
|
|
| BLAKE2b-256 |
cee11858011924795fbe08b9737319d5007f92a5fdcde7af42bce5b4d9abea69
|
Provenance
The following attestation bundles were made for fg_env-0.4.6-py3-none-any.whl:
Publisher:
release.yml on Fareground/environments-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fg_env-0.4.6-py3-none-any.whl -
Subject digest:
4999ec27a264d671de3f7b5dfa4fee2e8d73a987712a7c9286ff5e6bcfd164e6 - Sigstore transparency entry: 2876553900
- Sigstore integration time:
-
Permalink:
Fareground/environments-sdk@45ceb9595dcd6414a9d94104c722f1e367de13ac -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/Fareground
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@45ceb9595dcd6414a9d94104c722f1e367de13ac -
Trigger Event:
push
-
Statement type: