mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 14:53:58 +00:00
13 lines
707 B
TypeScript
13 lines
707 B
TypeScript
/**
|
|
* Version and package pins for the managed Codex app-server runtime.
|
|
*/
|
|
/** Minimum Codex app-server version supported by the OpenClaw Codex bridge. */
|
|
export const MIN_CODEX_APP_SERVER_VERSION = "0.125.0";
|
|
/** Minimum Codex app-server version that supports sandbox exec-server environments. */
|
|
export const MIN_CODEX_SANDBOX_EXEC_SERVER_APP_SERVER_VERSION = "0.132.0";
|
|
/** npm package name for the managed Codex app-server binary. */
|
|
export const MANAGED_CODEX_APP_SERVER_PACKAGE = "@openai/codex";
|
|
// Keep this in sync with the Codex CLI live-test package pin.
|
|
/** Managed Codex app-server package version installed by OpenClaw. */
|
|
export const MANAGED_CODEX_APP_SERVER_PACKAGE_VERSION = "0.139.0";
|