@tryarcanist/cli 0.1.33 → 0.1.34
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.
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -991,6 +991,9 @@ var ERROR_CODES = [
|
|
|
991
991
|
"stale_prompt",
|
|
992
992
|
"max_duration_exceeded",
|
|
993
993
|
"spawn_timeout",
|
|
994
|
+
"spawn_modal_error",
|
|
995
|
+
"spawn_deadline_no_object",
|
|
996
|
+
"spawn_deadline_no_bridge",
|
|
994
997
|
"spawn_preconnect",
|
|
995
998
|
"sandbox_terminated",
|
|
996
999
|
"sandbox_disconnected",
|
|
@@ -1021,6 +1024,9 @@ var ERROR_CODE_LABELS = {
|
|
|
1021
1024
|
stale_prompt: "Prompt became inactive",
|
|
1022
1025
|
max_duration_exceeded: "Prompt exceeded maximum duration",
|
|
1023
1026
|
spawn_timeout: "Sandbox spawn timed out",
|
|
1027
|
+
spawn_modal_error: "Sandbox spawn failed (Modal API error)",
|
|
1028
|
+
spawn_deadline_no_object: "Sandbox spawn timed out before Modal responded",
|
|
1029
|
+
spawn_deadline_no_bridge: "Sandbox spawn timed out before bridge connected",
|
|
1024
1030
|
spawn_preconnect: "Sandbox failed before connecting",
|
|
1025
1031
|
sandbox_terminated: "Sandbox terminated",
|
|
1026
1032
|
sandbox_disconnected: "Sandbox disconnected",
|