devez-vibe 1.9.20 → 1.9.22
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/bin/dvz.exe
CHANGED
|
Binary file
|
|
@@ -2999,7 +2999,10 @@ async function steerPrompt(params) {
|
|
|
2999
2999
|
|
|
3000
3000
|
async function runPrompt(session, params) {
|
|
3001
3001
|
const id = session.id;
|
|
3002
|
-
|
|
3002
|
+
// The session already runs this model when it started on it (a fork inherits
|
|
3003
|
+
// the parent's), and re-setting it makes the CLI probe the API again, which
|
|
3004
|
+
// fails the whole prompt when that check times out.
|
|
3005
|
+
if (params.model && visibleModel(params.model) !== session.model) {
|
|
3003
3006
|
const model = stripClaudeModel(params.model);
|
|
3004
3007
|
await session.query.setModel(model);
|
|
3005
3008
|
session.model = visibleModel(params.model);
|