@robbiesrobotics/alice-agents 1.4.1 → 1.4.2
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/lib/config-merger.mjs +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,11 +55,11 @@ An orchestrator (Olivia) backed by specialist agents across every domain:
|
|
|
55
55
|
|
|
56
56
|
A.L.I.C.E. works with **whatever model you already have configured** in OpenClaw/NemoClaw. There's no required API key — just use what you've got.
|
|
57
57
|
|
|
58
|
-
When you install, the installer will **auto-detect your configured model** and
|
|
58
|
+
When you install, the installer will **auto-detect your configured model** and let the agent team inherit that runtime default. You can also choose from presets or specify a custom model for the OpenClaw/NemoClaw defaults A.L.I.C.E. should use.
|
|
59
59
|
|
|
60
60
|
| Preset | Models | Best For |
|
|
61
61
|
|--------|--------|----------|
|
|
62
|
-
| **Auto-detect** (default) | Your current OpenClaw
|
|
62
|
+
| **Auto-detect** (default) | Your current OpenClaw/NemoClaw default | Zero friction — agents inherit what your runtime already uses |
|
|
63
63
|
| **Sonnet** | claude-sonnet-4-6 for all | Balanced speed + quality (requires Anthropic key) |
|
|
64
64
|
| **Opus + Sonnet** | Opus for orchestrator, Sonnet for specialists | Maximum quality (requires Anthropic key) |
|
|
65
65
|
| **OpenAI** | GPT-5.4 / GPT-5.4-mini | OpenAI users |
|
package/lib/config-merger.mjs
CHANGED
|
@@ -184,10 +184,11 @@ function buildAgentEntry(agent, modelCfg) {
|
|
|
184
184
|
tools: agent.tools,
|
|
185
185
|
};
|
|
186
186
|
|
|
187
|
-
// Orchestrator gets
|
|
187
|
+
// Orchestrator gets default-agent behavior, but no explicit model pin.
|
|
188
|
+
// This keeps Olivia model-agnostic and lets OpenClaw/NemoClaw route her
|
|
189
|
+
// through whatever default model/provider the runtime is configured to use.
|
|
188
190
|
if (agent.isOrchestrator) {
|
|
189
191
|
entry.default = true;
|
|
190
|
-
entry.model = modelCfg.orchestrator;
|
|
191
192
|
if (agent.extraConfig) {
|
|
192
193
|
Object.assign(entry, agent.extraConfig);
|
|
193
194
|
}
|