@femtomc/mu-orchestrator 26.2.60 → 26.2.62
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/model_resolution.js +1 -1
- package/package.json +7 -7
package/dist/model_resolution.js
CHANGED
|
@@ -29,7 +29,7 @@ function pickReasoning(model, explicit) {
|
|
|
29
29
|
* 3. Auto-detect: best model from any auth'd provider
|
|
30
30
|
*/
|
|
31
31
|
export function resolveModelConfig(overrides, authStorage) {
|
|
32
|
-
const auth = authStorage ??
|
|
32
|
+
const auth = authStorage ?? AuthStorage.create();
|
|
33
33
|
if (overrides.model) {
|
|
34
34
|
return resolveExplicitModel(overrides.model, overrides.provider, overrides.reasoning, auth);
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@femtomc/mu-orchestrator",
|
|
3
|
-
"version": "26.2.
|
|
3
|
+
"version": "26.2.62",
|
|
4
4
|
"description": "Long-running execution engine for mu work plans.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mu",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"dist/**"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@femtomc/mu-agent": "26.2.
|
|
25
|
-
"@femtomc/mu-core": "26.2.
|
|
26
|
-
"@femtomc/mu-forum": "26.2.
|
|
27
|
-
"@femtomc/mu-issue": "26.2.
|
|
28
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
29
|
-
"@mariozechner/pi-ai": "^0.
|
|
24
|
+
"@femtomc/mu-agent": "26.2.62",
|
|
25
|
+
"@femtomc/mu-core": "26.2.62",
|
|
26
|
+
"@femtomc/mu-forum": "26.2.62",
|
|
27
|
+
"@femtomc/mu-issue": "26.2.62",
|
|
28
|
+
"@mariozechner/pi-coding-agent": "^0.53.0",
|
|
29
|
+
"@mariozechner/pi-ai": "^0.53.0"
|
|
30
30
|
}
|
|
31
31
|
}
|