@quantish/agent 0.1.34 → 0.1.35
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 +5 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35,12 +35,13 @@ var schema = {
|
|
|
35
35
|
default: DEFAULT_MCP_URL
|
|
36
36
|
},
|
|
37
37
|
model: {
|
|
38
|
-
type: "string"
|
|
39
|
-
default
|
|
38
|
+
type: "string"
|
|
39
|
+
// No default here - getModel() returns provider-specific default
|
|
40
40
|
},
|
|
41
41
|
provider: {
|
|
42
42
|
type: "string",
|
|
43
|
-
default: "
|
|
43
|
+
default: "openrouter"
|
|
44
|
+
// OpenRouter is recommended for new users
|
|
44
45
|
}
|
|
45
46
|
};
|
|
46
47
|
var ConfigManager = class {
|
|
@@ -5424,7 +5425,7 @@ Stopped ${count} background process${count > 1 ? "es" : ""}.`);
|
|
|
5424
5425
|
}
|
|
5425
5426
|
|
|
5426
5427
|
// src/index.ts
|
|
5427
|
-
var VERSION = "0.1.
|
|
5428
|
+
var VERSION = "0.1.35";
|
|
5428
5429
|
function cleanup() {
|
|
5429
5430
|
if (processManager.hasRunning()) {
|
|
5430
5431
|
const count = processManager.runningCount();
|