Skip to main content

No project description provided

Project description

TRL-ENV

ENV

TRL is a convenient library to train large language model (LLM) using reinforcement learning (RL). However, it is still too new, the interface is not well-developed yet. rollout_func is a low-level interface to write your own rollout for RL and environment_factory is a high-level interface to train your model with external environemnt, however, how it parse the model output for tool use is hard coded and not available for every model (check add_response_schema in trl/trainer/grpo_trainer.py and trl/chat_template_utils.py)

TRL-ENV addresses the middle-level with a very simple environment interface

type Action = str
type Delta = str
type Seed = str

class Env(Protocol):
    reward: float
    alive: bool
    def reset(self, seed: Seed) -> tuple[Env, Delta]: ...
    def step(self, action: Action) -> tuple[Env, Delta]: ...

It is similar to tool call if not the same. Note that, rollout_func is an experimental feature of TRL, this library is subject to break at anytime

It is important to note that, batch_rollout assumes the additivity of tokenizer, that is

tok(a ++ b) = tok(a) ++ tok(b)

where a and b are texts and ++ is concatenation. This is because Env interacts with LLM via text, not sequence of tokens, and as far as my knowledge, this is unavoidable.

PROCESSOR

transformers despite after 8 years of development (as of 2026) is still not stable. For example, not all models has Tokenizer.parse_response which should be a basic function that must be implemented from the beginning. TRL-ENV requires Tokenizer.parse_response to be existed by Processor interface

Language = str

class Processor(Protocol):
    def init_system_input(self, prompt: Language) -> str: ...
    def append_user_input(self, prompt: Language) -> str: ...
    def parse_agent_output(self, completion: Language) -> tuple[str, str]: ...

EXAMPLES

TRL-ENV provides a very simple example for training agentic LLM. See experiment/examples

RESOURCES

INSTALL PLATFORM DEPENDENT PACKAGES

uv pip install vllm==0.12.0 flash-attn==2.8.3 --torch-backend=cu126 --no-build-isolation

INSTALL VLLM FOR MACOS

git clone https://github.com/vllm-project/vllm.git
cd vllm
uv pip install -r requirements/cpu.txt --index-strategy unsafe-best-match
uv pip install -e .

ROLLOUT_FUNC EXAMPLES FROM TRL

grpo_functiongemma_browsergym_openenv.ipynb

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trl_env-0.1.20.tar.gz (33.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trl_env-0.1.20-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file trl_env-0.1.20.tar.gz.

File metadata

  • Download URL: trl_env-0.1.20.tar.gz
  • Upload date:
  • Size: 33.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for trl_env-0.1.20.tar.gz
Algorithm Hash digest
SHA256 8f777a70e4afa1b613a2f6839c028e609b2cbcf75031fc2372d00d5cb04095e8
MD5 400b385e8868bac2d4c734106b0d84bd
BLAKE2b-256 fe214484652942b3a7170bed43b28991272c22cb0e54babb95d9fe8022219a90

See more details on using hashes here.

File details

Details for the file trl_env-0.1.20-py3-none-any.whl.

File metadata

  • Download URL: trl_env-0.1.20-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for trl_env-0.1.20-py3-none-any.whl
Algorithm Hash digest
SHA256 37aa7f6b30ffaa79313a52c3c6ddcff5bfc47f79f6c15c1fcd2b207e9ad0e1d2
MD5 5dcf13fb293a2e688dc3b818ccc876ca
BLAKE2b-256 d5efde1faf17e36f678aeac0724db21b523bfea4b146f7c76123678b2c4e6530

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page