mirror of
https://github.com/openai/codex.git
synced 2026-05-02 02:17:22 +00:00
Adds an environment crate and environment + file system abstraction. Environment is a combination of attributes and services specific to environment the agent is connected to: File system, process management, OS, default shell. The goal is to move most of agent logic that assumes environment to work through the environment abstraction.
7 lines
125 B
Python
7 lines
125 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "environment",
|
|
crate_name = "codex_environment",
|
|
)
|