replicas-engine 0.1.301 → 0.1.303

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/src/index.js +4 -11
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -301,7 +301,7 @@ var WORKSPACE_SIZES = ["small", "large"];
301
301
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
302
302
 
303
303
  // ../shared/src/e2b.ts
304
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-12-v4";
304
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-12-v6";
305
305
 
306
306
  // ../shared/src/runtime-env.ts
307
307
  function parsePosixEnvFile(content) {
@@ -2075,7 +2075,7 @@ function normalizeClaudeModel(model) {
2075
2075
  }
2076
2076
  var AGENT_MODELS = {
2077
2077
  claude: [CLAUDE_OPUS_1M_MODEL, CLAUDE_FABLE_5_MODEL, "sonnet", "haiku"],
2078
- codex: [DEFAULT_CODEX_MODEL, "gpt-5.4", "gpt-5.4-mini", "gpt-5.3-codex", "gpt-5.3-codex-spark", "gpt-5.2-codex", "gpt-5.2", "gpt-5.1-codex-max", "gpt-5.1-codex", "gpt-5.1", "gpt-5-codex", "gpt-5"],
2078
+ codex: [DEFAULT_CODEX_MODEL, "gpt-5.4", "gpt-5.4-mini", "gpt-5.3-codex", "gpt-5.2"],
2079
2079
  relay: [CLAUDE_OPUS_1M_MODEL, CLAUDE_FABLE_5_MODEL, "sonnet"]
2080
2080
  };
2081
2081
  var MODEL_LABELS = {
@@ -2089,14 +2089,7 @@ var MODEL_LABELS = {
2089
2089
  "gpt-5.4": "GPT-5.4",
2090
2090
  "gpt-5.4-mini": "GPT-5.4 Mini",
2091
2091
  "gpt-5.3-codex": "GPT-5.3 Codex",
2092
- "gpt-5.3-codex-spark": "GPT-5.3 Codex Spark",
2093
- "gpt-5.2-codex": "GPT-5.2 Codex",
2094
- "gpt-5.2": "GPT-5.2",
2095
- "gpt-5.1-codex-max": "GPT-5.1 Codex Max",
2096
- "gpt-5.1-codex": "GPT-5.1 Codex",
2097
- "gpt-5.1": "GPT-5.1",
2098
- "gpt-5-codex": "GPT-5 Codex",
2099
- "gpt-5": "GPT-5"
2092
+ "gpt-5.2": "GPT-5.2"
2100
2093
  };
2101
2094
  var IMAGE_MEDIA_TYPES = ["image/png", "image/jpeg", "image/gif", "image/webp"];
2102
2095
  var CANVAS_KIND_BY_EXTENSION = {
@@ -6741,7 +6734,7 @@ var AspClient = class {
6741
6734
  // src/managers/codex-asp/app-server-process.ts
6742
6735
  var DEFAULT_CODEX_BINARY = "codex";
6743
6736
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
6744
- var ENGINE_PACKAGE_VERSION = "0.1.301";
6737
+ var ENGINE_PACKAGE_VERSION = "0.1.303";
6745
6738
  var INITIALIZE_METHOD = "initialize";
6746
6739
  var INITIALIZED_NOTIFICATION = "initialized";
6747
6740
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.301",
3
+ "version": "0.1.303",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",