@alfe.ai/openclaw-chat 0.9.1 → 0.9.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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +1 -0
- package/dist/plugin.d.cts +17 -6
- package/dist/plugin.d.ts +17 -6
- package/dist/plugin.js +2 -2
- package/dist/plugin2.cjs +24 -7
- package/dist/plugin2.d.cts +2 -2
- package/dist/plugin2.d.ts +2 -2
- package/dist/plugin2.js +19 -8
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { C as SessionSummary, S as SessionData, _ as createAlfeChannelPlugin, b as AlfeResolvedAccount, p as plugin, v as AlfeChannelConfig, x as ChatMessage, y as AlfePluginConfig } from "./plugin.cjs";
|
|
2
2
|
export { type AlfeChannelConfig, type AlfePluginConfig, type AlfeResolvedAccount, type ChatMessage, type SessionData, type SessionSummary, createAlfeChannelPlugin, plugin as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { C as SessionSummary, S as SessionData, _ as createAlfeChannelPlugin, b as AlfeResolvedAccount, p as plugin, v as AlfeChannelConfig, x as ChatMessage, y as AlfePluginConfig } from "./plugin.js";
|
|
2
2
|
export { type AlfeChannelConfig, type AlfePluginConfig, type AlfeResolvedAccount, type ChatMessage, type SessionData, type SessionSummary, createAlfeChannelPlugin, plugin as default };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as plugin, h as createAlfeChannelPlugin } from "./plugin2.js";
|
|
2
2
|
export { createAlfeChannelPlugin, plugin as default };
|
package/dist/plugin.cjs
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperties(exports, {
|
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
5
|
const require_plugin = require("./plugin2.cjs");
|
|
6
|
+
exports.CROSS_AGENT_TOOLS_SYSTEM_PROMPT = require_plugin.CROSS_AGENT_TOOLS_SYSTEM_PROMPT;
|
|
6
7
|
exports.VOICE_REPLY_SYSTEM_PROMPT = require_plugin.VOICE_REPLY_SYSTEM_PROMPT;
|
|
7
8
|
exports.__agentTurnQueueForTest = require_plugin.__agentTurnQueueForTest;
|
|
8
9
|
exports.__resetAgentTurnQueueForTest = require_plugin.__resetAgentTurnQueueForTest;
|
package/dist/plugin.d.cts
CHANGED
|
@@ -606,13 +606,24 @@ declare function resolveAbortTargetKeys(active: ActiveRunRef | null, abortSessio
|
|
|
606
606
|
*/
|
|
607
607
|
declare const VOICE_REPLY_SYSTEM_PROMPT: string;
|
|
608
608
|
/**
|
|
609
|
-
*
|
|
610
|
-
*
|
|
611
|
-
*
|
|
612
|
-
*
|
|
609
|
+
* One-liner disambiguating Alfe's cross-agent tools from the OpenClaw
|
|
610
|
+
* runtime's look-alike built-ins. Observed failure mode (prod, 2026-07-07):
|
|
611
|
+
* asked to "tell the other agents", the model called the runtime's
|
|
612
|
+
* `sessions_send` with Alfe `agt_…` IDs — those built-ins only know local
|
|
613
|
+
* runtime sessions, so every call died with "agent not found" and the model
|
|
614
|
+
* burned turns flailing between tools. Tool descriptions alone didn't
|
|
615
|
+
* disambiguate; this rides the system prompt on every turn (~40 tokens).
|
|
616
|
+
*/
|
|
617
|
+
declare const CROSS_AGENT_TOOLS_SYSTEM_PROMPT: string;
|
|
618
|
+
/**
|
|
619
|
+
* Per-turn envelope context derived from the RPC `origin` flag, returned as a
|
|
620
|
+
* `GroupSystemPrompt` block — the PROVEN runtime-rendered seam for per-turn
|
|
621
|
+
* system-prompt guidance: dispatchInbound spreads `extraContext` into
|
|
622
|
+
* `finalizeInboundContext` → `sessionCtx.GroupSystemPrompt`
|
|
613
623
|
* → `extraSystemPrompt` → the model's system prompt (rendered under a
|
|
614
624
|
* "## Group Chat Context" heading; read unconditionally, NOT gated on group
|
|
615
|
-
* chats).
|
|
625
|
+
* chats). Every origin carries the cross-agent tool disambiguation; live
|
|
626
|
+
* voice calls additionally get the spoken-reply style guidance.
|
|
616
627
|
*
|
|
617
628
|
* Why `GroupSystemPrompt` and not a bespoke key like `A2ASystemPrompt`: the
|
|
618
629
|
* OpenClaw runtime does NOT read arbitrary `extraContext` keys — a custom key
|
|
@@ -638,4 +649,4 @@ declare const plugin: {
|
|
|
638
649
|
deactivate(api: PluginApi): Promise<void>;
|
|
639
650
|
};
|
|
640
651
|
//#endregion
|
|
641
|
-
export { SessionSummary as S,
|
|
652
|
+
export { SessionSummary as C, SessionData as S, createAlfeChannelPlugin as _, __agentTurnQueueForTest as a, AlfeResolvedAccount as b, admitAgentEvent as c, buildToolActivity as d, joinAssistantText as f, stripLeakedToolSummary as g, rewriteAssistantText as h, VOICE_REPLY_SYSTEM_PROMPT as i, buildA2ACompletePayload as l, resolveAbortTargetKeys as m, CROSS_AGENT_TOOLS_SYSTEM_PROMPT as n, __resetAgentTurnQueueForTest as o, plugin as p, RunEventGate as r, __setActiveRunForTest as s, ActiveRunRef as t, buildOriginEnvelopeContext as u, AlfeChannelConfig as v, ChatMessage as x, AlfePluginConfig as y };
|
package/dist/plugin.d.ts
CHANGED
|
@@ -606,13 +606,24 @@ declare function resolveAbortTargetKeys(active: ActiveRunRef | null, abortSessio
|
|
|
606
606
|
*/
|
|
607
607
|
declare const VOICE_REPLY_SYSTEM_PROMPT: string;
|
|
608
608
|
/**
|
|
609
|
-
*
|
|
610
|
-
*
|
|
611
|
-
*
|
|
612
|
-
*
|
|
609
|
+
* One-liner disambiguating Alfe's cross-agent tools from the OpenClaw
|
|
610
|
+
* runtime's look-alike built-ins. Observed failure mode (prod, 2026-07-07):
|
|
611
|
+
* asked to "tell the other agents", the model called the runtime's
|
|
612
|
+
* `sessions_send` with Alfe `agt_…` IDs — those built-ins only know local
|
|
613
|
+
* runtime sessions, so every call died with "agent not found" and the model
|
|
614
|
+
* burned turns flailing between tools. Tool descriptions alone didn't
|
|
615
|
+
* disambiguate; this rides the system prompt on every turn (~40 tokens).
|
|
616
|
+
*/
|
|
617
|
+
declare const CROSS_AGENT_TOOLS_SYSTEM_PROMPT: string;
|
|
618
|
+
/**
|
|
619
|
+
* Per-turn envelope context derived from the RPC `origin` flag, returned as a
|
|
620
|
+
* `GroupSystemPrompt` block — the PROVEN runtime-rendered seam for per-turn
|
|
621
|
+
* system-prompt guidance: dispatchInbound spreads `extraContext` into
|
|
622
|
+
* `finalizeInboundContext` → `sessionCtx.GroupSystemPrompt`
|
|
613
623
|
* → `extraSystemPrompt` → the model's system prompt (rendered under a
|
|
614
624
|
* "## Group Chat Context" heading; read unconditionally, NOT gated on group
|
|
615
|
-
* chats).
|
|
625
|
+
* chats). Every origin carries the cross-agent tool disambiguation; live
|
|
626
|
+
* voice calls additionally get the spoken-reply style guidance.
|
|
616
627
|
*
|
|
617
628
|
* Why `GroupSystemPrompt` and not a bespoke key like `A2ASystemPrompt`: the
|
|
618
629
|
* OpenClaw runtime does NOT read arbitrary `extraContext` keys — a custom key
|
|
@@ -638,4 +649,4 @@ declare const plugin: {
|
|
|
638
649
|
deactivate(api: PluginApi): Promise<void>;
|
|
639
650
|
};
|
|
640
651
|
//#endregion
|
|
641
|
-
export { SessionSummary as S,
|
|
652
|
+
export { SessionSummary as C, SessionData as S, createAlfeChannelPlugin as _, __agentTurnQueueForTest as a, AlfeResolvedAccount as b, admitAgentEvent as c, buildToolActivity as d, joinAssistantText as f, stripLeakedToolSummary as g, rewriteAssistantText as h, VOICE_REPLY_SYSTEM_PROMPT as i, buildA2ACompletePayload as l, resolveAbortTargetKeys as m, CROSS_AGENT_TOOLS_SYSTEM_PROMPT as n, __resetAgentTurnQueueForTest as o, plugin as p, RunEventGate as r, __setActiveRunForTest as s, ActiveRunRef as t, buildOriginEnvelopeContext as u, AlfeChannelConfig as v, ChatMessage as x, AlfePluginConfig as y };
|
package/dist/plugin.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as
|
|
2
|
-
export { VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
|
1
|
+
import { a as __setActiveRunForTest, c as buildOriginEnvelopeContext, d as plugin, f as resolveAbortTargetKeys, i as __resetAgentTurnQueueForTest, l as buildToolActivity, m as stripLeakedToolSummary, n as VOICE_REPLY_SYSTEM_PROMPT, o as admitAgentEvent, p as rewriteAssistantText, r as __agentTurnQueueForTest, s as buildA2ACompletePayload, t as CROSS_AGENT_TOOLS_SYSTEM_PROMPT, u as joinAssistantText } from "./plugin2.js";
|
|
2
|
+
export { CROSS_AGENT_TOOLS_SYSTEM_PROMPT, VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
package/dist/plugin2.cjs
CHANGED
|
@@ -2304,13 +2304,24 @@ const VOICE_REPLY_SYSTEM_PROMPT = [
|
|
|
2304
2304
|
"This is guidance on speaking STYLE only. Do NOT skip tool calls you would otherwise make, and never omit information the user actually needs — just deliver it the way you would say it out loud."
|
|
2305
2305
|
].join("\n");
|
|
2306
2306
|
/**
|
|
2307
|
-
*
|
|
2308
|
-
*
|
|
2309
|
-
*
|
|
2310
|
-
*
|
|
2307
|
+
* One-liner disambiguating Alfe's cross-agent tools from the OpenClaw
|
|
2308
|
+
* runtime's look-alike built-ins. Observed failure mode (prod, 2026-07-07):
|
|
2309
|
+
* asked to "tell the other agents", the model called the runtime's
|
|
2310
|
+
* `sessions_send` with Alfe `agt_…` IDs — those built-ins only know local
|
|
2311
|
+
* runtime sessions, so every call died with "agent not found" and the model
|
|
2312
|
+
* burned turns flailing between tools. Tool descriptions alone didn't
|
|
2313
|
+
* disambiguate; this rides the system prompt on every turn (~40 tokens).
|
|
2314
|
+
*/
|
|
2315
|
+
const CROSS_AGENT_TOOLS_SYSTEM_PROMPT = ["Cross-agent messaging: to contact another Alfe agent (IDs like agt_…), use list_agents to discover and message_agent to send.", "The runtime's sessions_send / sessions_spawn tools do NOT know Alfe agent IDs and will fail with \"agent not found\" — never use them to reach another agent."].join("\n");
|
|
2316
|
+
/**
|
|
2317
|
+
* Per-turn envelope context derived from the RPC `origin` flag, returned as a
|
|
2318
|
+
* `GroupSystemPrompt` block — the PROVEN runtime-rendered seam for per-turn
|
|
2319
|
+
* system-prompt guidance: dispatchInbound spreads `extraContext` into
|
|
2320
|
+
* `finalizeInboundContext` → `sessionCtx.GroupSystemPrompt`
|
|
2311
2321
|
* → `extraSystemPrompt` → the model's system prompt (rendered under a
|
|
2312
2322
|
* "## Group Chat Context" heading; read unconditionally, NOT gated on group
|
|
2313
|
-
* chats).
|
|
2323
|
+
* chats). Every origin carries the cross-agent tool disambiguation; live
|
|
2324
|
+
* voice calls additionally get the spoken-reply style guidance.
|
|
2314
2325
|
*
|
|
2315
2326
|
* Why `GroupSystemPrompt` and not a bespoke key like `A2ASystemPrompt`: the
|
|
2316
2327
|
* OpenClaw runtime does NOT read arbitrary `extraContext` keys — a custom key
|
|
@@ -2327,8 +2338,8 @@ const VOICE_REPLY_SYSTEM_PROMPT = [
|
|
|
2327
2338
|
* Exported pure for unit testing (mirrors the codebase's pure-helper pattern).
|
|
2328
2339
|
*/
|
|
2329
2340
|
function buildOriginEnvelopeContext(origin) {
|
|
2330
|
-
if (origin === "voice") return { GroupSystemPrompt: VOICE_REPLY_SYSTEM_PROMPT };
|
|
2331
|
-
return {};
|
|
2341
|
+
if (origin === "voice") return { GroupSystemPrompt: `${VOICE_REPLY_SYSTEM_PROMPT}\n\n${CROSS_AGENT_TOOLS_SYSTEM_PROMPT}` };
|
|
2342
|
+
return { GroupSystemPrompt: CROSS_AGENT_TOOLS_SYSTEM_PROMPT };
|
|
2332
2343
|
}
|
|
2333
2344
|
async function handleAgentRequest(request, log) {
|
|
2334
2345
|
const runtime = pluginRuntime;
|
|
@@ -2912,6 +2923,12 @@ const plugin = {
|
|
|
2912
2923
|
}
|
|
2913
2924
|
};
|
|
2914
2925
|
//#endregion
|
|
2926
|
+
Object.defineProperty(exports, "CROSS_AGENT_TOOLS_SYSTEM_PROMPT", {
|
|
2927
|
+
enumerable: true,
|
|
2928
|
+
get: function() {
|
|
2929
|
+
return CROSS_AGENT_TOOLS_SYSTEM_PROMPT;
|
|
2930
|
+
}
|
|
2931
|
+
});
|
|
2915
2932
|
Object.defineProperty(exports, "VOICE_REPLY_SYSTEM_PROMPT", {
|
|
2916
2933
|
enumerable: true,
|
|
2917
2934
|
get: function() {
|
package/dist/plugin2.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as
|
|
2
|
-
export { ActiveRunRef, RunEventGate, VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
|
1
|
+
import { a as __agentTurnQueueForTest, c as admitAgentEvent, d as buildToolActivity, f as joinAssistantText, g as stripLeakedToolSummary, h as rewriteAssistantText, i as VOICE_REPLY_SYSTEM_PROMPT, l as buildA2ACompletePayload, m as resolveAbortTargetKeys, n as CROSS_AGENT_TOOLS_SYSTEM_PROMPT, o as __resetAgentTurnQueueForTest, p as plugin, r as RunEventGate, s as __setActiveRunForTest, t as ActiveRunRef, u as buildOriginEnvelopeContext } from "./plugin.cjs";
|
|
2
|
+
export { ActiveRunRef, CROSS_AGENT_TOOLS_SYSTEM_PROMPT, RunEventGate, VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
package/dist/plugin2.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as
|
|
2
|
-
export { ActiveRunRef, RunEventGate, VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
|
1
|
+
import { a as __agentTurnQueueForTest, c as admitAgentEvent, d as buildToolActivity, f as joinAssistantText, g as stripLeakedToolSummary, h as rewriteAssistantText, i as VOICE_REPLY_SYSTEM_PROMPT, l as buildA2ACompletePayload, m as resolveAbortTargetKeys, n as CROSS_AGENT_TOOLS_SYSTEM_PROMPT, o as __resetAgentTurnQueueForTest, p as plugin, r as RunEventGate, s as __setActiveRunForTest, t as ActiveRunRef, u as buildOriginEnvelopeContext } from "./plugin.js";
|
|
2
|
+
export { ActiveRunRef, CROSS_AGENT_TOOLS_SYSTEM_PROMPT, RunEventGate, VOICE_REPLY_SYSTEM_PROMPT, __agentTurnQueueForTest, __resetAgentTurnQueueForTest, __setActiveRunForTest, admitAgentEvent, buildA2ACompletePayload, buildOriginEnvelopeContext, buildToolActivity, plugin as default, joinAssistantText, resolveAbortTargetKeys, rewriteAssistantText, stripLeakedToolSummary };
|
package/dist/plugin2.js
CHANGED
|
@@ -2304,13 +2304,24 @@ const VOICE_REPLY_SYSTEM_PROMPT = [
|
|
|
2304
2304
|
"This is guidance on speaking STYLE only. Do NOT skip tool calls you would otherwise make, and never omit information the user actually needs — just deliver it the way you would say it out loud."
|
|
2305
2305
|
].join("\n");
|
|
2306
2306
|
/**
|
|
2307
|
-
*
|
|
2308
|
-
*
|
|
2309
|
-
*
|
|
2310
|
-
*
|
|
2307
|
+
* One-liner disambiguating Alfe's cross-agent tools from the OpenClaw
|
|
2308
|
+
* runtime's look-alike built-ins. Observed failure mode (prod, 2026-07-07):
|
|
2309
|
+
* asked to "tell the other agents", the model called the runtime's
|
|
2310
|
+
* `sessions_send` with Alfe `agt_…` IDs — those built-ins only know local
|
|
2311
|
+
* runtime sessions, so every call died with "agent not found" and the model
|
|
2312
|
+
* burned turns flailing between tools. Tool descriptions alone didn't
|
|
2313
|
+
* disambiguate; this rides the system prompt on every turn (~40 tokens).
|
|
2314
|
+
*/
|
|
2315
|
+
const CROSS_AGENT_TOOLS_SYSTEM_PROMPT = ["Cross-agent messaging: to contact another Alfe agent (IDs like agt_…), use list_agents to discover and message_agent to send.", "The runtime's sessions_send / sessions_spawn tools do NOT know Alfe agent IDs and will fail with \"agent not found\" — never use them to reach another agent."].join("\n");
|
|
2316
|
+
/**
|
|
2317
|
+
* Per-turn envelope context derived from the RPC `origin` flag, returned as a
|
|
2318
|
+
* `GroupSystemPrompt` block — the PROVEN runtime-rendered seam for per-turn
|
|
2319
|
+
* system-prompt guidance: dispatchInbound spreads `extraContext` into
|
|
2320
|
+
* `finalizeInboundContext` → `sessionCtx.GroupSystemPrompt`
|
|
2311
2321
|
* → `extraSystemPrompt` → the model's system prompt (rendered under a
|
|
2312
2322
|
* "## Group Chat Context" heading; read unconditionally, NOT gated on group
|
|
2313
|
-
* chats).
|
|
2323
|
+
* chats). Every origin carries the cross-agent tool disambiguation; live
|
|
2324
|
+
* voice calls additionally get the spoken-reply style guidance.
|
|
2314
2325
|
*
|
|
2315
2326
|
* Why `GroupSystemPrompt` and not a bespoke key like `A2ASystemPrompt`: the
|
|
2316
2327
|
* OpenClaw runtime does NOT read arbitrary `extraContext` keys — a custom key
|
|
@@ -2327,8 +2338,8 @@ const VOICE_REPLY_SYSTEM_PROMPT = [
|
|
|
2327
2338
|
* Exported pure for unit testing (mirrors the codebase's pure-helper pattern).
|
|
2328
2339
|
*/
|
|
2329
2340
|
function buildOriginEnvelopeContext(origin) {
|
|
2330
|
-
if (origin === "voice") return { GroupSystemPrompt: VOICE_REPLY_SYSTEM_PROMPT };
|
|
2331
|
-
return {};
|
|
2341
|
+
if (origin === "voice") return { GroupSystemPrompt: `${VOICE_REPLY_SYSTEM_PROMPT}\n\n${CROSS_AGENT_TOOLS_SYSTEM_PROMPT}` };
|
|
2342
|
+
return { GroupSystemPrompt: CROSS_AGENT_TOOLS_SYSTEM_PROMPT };
|
|
2332
2343
|
}
|
|
2333
2344
|
async function handleAgentRequest(request, log) {
|
|
2334
2345
|
const runtime = pluginRuntime;
|
|
@@ -2912,4 +2923,4 @@ const plugin = {
|
|
|
2912
2923
|
}
|
|
2913
2924
|
};
|
|
2914
2925
|
//#endregion
|
|
2915
|
-
export {
|
|
2926
|
+
export { __setActiveRunForTest as a, buildOriginEnvelopeContext as c, plugin as d, resolveAbortTargetKeys as f, createAlfeChannelPlugin as h, __resetAgentTurnQueueForTest as i, buildToolActivity as l, stripLeakedToolSummary as m, VOICE_REPLY_SYSTEM_PROMPT as n, admitAgentEvent as o, rewriteAssistantText as p, __agentTurnQueueForTest as r, buildA2ACompletePayload as s, CROSS_AGENT_TOOLS_SYSTEM_PROMPT as t, joinAssistantText as u };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-chat",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "OpenClaw chat plugin for Alfe — web widget and mobile app channels",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/plugin.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@alfe.ai/agent-api-client": "^0.8.0",
|
|
31
|
-
"@alfe.ai/chat": "^0.0.
|
|
31
|
+
"@alfe.ai/chat": "^0.0.16",
|
|
32
32
|
"@alfe.ai/config": "^0.3.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|