@deeflectcom/smart-spawn 1.0.2 → 1.0.3
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/README.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ Optional — add to your OpenClaw config under `plugins.entries.smart-spawn.conf
|
|
|
38
38
|
|
|
39
39
|
```json
|
|
40
40
|
{
|
|
41
|
-
"apiUrl": "https://ss.deeflect.com",
|
|
41
|
+
"apiUrl": "https://ss.deeflect.com/api",
|
|
42
42
|
"defaultBudget": "medium",
|
|
43
43
|
"defaultMode": "single"
|
|
44
44
|
}
|
|
@@ -46,7 +46,7 @@ Optional — add to your OpenClaw config under `plugins.entries.smart-spawn.conf
|
|
|
46
46
|
|
|
47
47
|
| Setting | Default | Options |
|
|
48
48
|
|---------|---------|---------|
|
|
49
|
-
| `apiUrl` | `https://ss.deeflect.com` | Your own API URL if self-hosting |
|
|
49
|
+
| `apiUrl` | `https://ss.deeflect.com/api` | Your own API URL if self-hosting |
|
|
50
50
|
| `defaultBudget` | `medium` | `low`, `medium`, `high`, `any` |
|
|
51
51
|
| `defaultMode` | `single` | `single`, `collective`, `cascade`, `swarm` |
|
|
52
52
|
| `collectiveCount` | `3` | Number of models for collective mode (2-5) |
|
package/index.ts
CHANGED
|
@@ -134,7 +134,7 @@ export default function (api: any) {
|
|
|
134
134
|
const pluginConfig =
|
|
135
135
|
api.config?.plugins?.entries?.["smart-spawn"]?.config ?? {};
|
|
136
136
|
|
|
137
|
-
const apiUrl = pluginConfig.apiUrl ?? "https://ss.deeflect.com";
|
|
137
|
+
const apiUrl = pluginConfig.apiUrl ?? "https://ss.deeflect.com/api";
|
|
138
138
|
const defaultBudget = pluginConfig.defaultBudget ?? "medium";
|
|
139
139
|
const defaultMode = pluginConfig.defaultMode ?? "single";
|
|
140
140
|
const collectiveCount = pluginConfig.collectiveCount ?? 3;
|