You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: persist a picked thinking effort up to the model's default effort
A concrete effort picked in the TUI or the VS Code webview is stored as
the global default only when it does not rank above the model's effective
default; a more expensive pick stays session-only.
Add `PYTHINKER_CODE_INFINITE_RETRY=1` to retry every failed model request indefinitely with backoff instead of failing the turn, for long unattended runs.
Copy file name to clipboardExpand all lines: apps/pythinker-code/src/cli/sub/web/run.ts
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -134,11 +134,6 @@ export function buildWebCommand(cmd: Command): Command {
134
134
'On a non-loopback bind, keep POST /api/v1/shutdown enabled (default: route is disabled → 404).',
135
135
false,
136
136
)
137
-
.option(
138
-
'--allow-remote-terminals',
139
-
'On a non-loopback bind, keep the PTY /api/v1/terminals/* routes enabled (default: disabled → 404). Remote shell is high risk.',
140
-
false,
141
-
)
142
137
.option(
143
138
'--dangerous-bypass-auth',
144
139
'Disable bearer-token auth on every REST and WebSocket route, and advertise it via /api/v1/meta so the web UI connects without a token. Only use on a trusted network or behind your own authenticating proxy.',
@@ -300,7 +295,6 @@ async function runServerInProcess(
0 commit comments