@inline-openclaw/inline 0.0.61 → 0.0.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/README.md
CHANGED
|
@@ -40,10 +40,10 @@ Requires OpenClaw `2026.6.11` or newer.
|
|
|
40
40
|
|
|
41
41
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
42
42
|
| --- | --- | --- | --- | --- |
|
|
43
|
-
| `0.0.
|
|
43
|
+
| `0.0.62` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Current | Keeps the thread-only Following control out of direct-message agent settings, where the server does not support it. |
|
|
44
|
+
| `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
|
|
44
45
|
| `0.0.60` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Uses the plugin index's supported force-install path for exact updates on current OpenClaw hosts. |
|
|
45
46
|
| `0.0.59` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Adds mentionable Agent specialization, exact Agent activation, and fail-closed bot-message provenance. |
|
|
46
|
-
| `0.0.58` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.15` | Previous | Promotes the stable realtime v3 SDK; hardens terminal authentication, model settings, recovered replies and joins, rich streaming delivery, and monitor failure reporting. |
|
|
47
47
|
| `0.0.57` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.14` | Previous | Hardens exact CLI-managed upgrades, deterministic channel listing, default/help consistency, and packed-artifact validation. |
|
|
48
48
|
| `0.0.56` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.14` | Stable | Finalizes unified Inline CLI setup compatibility while preserving the separately installed OpenClaw plugin boundary. |
|
|
49
49
|
|
|
@@ -72878,6 +72878,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
72878
72878
|
actorUserId: entry.msg.fromId
|
|
72879
72879
|
});
|
|
72880
72880
|
};
|
|
72881
|
+
const botSettingsModelCatalogSuccessCacheMs = 5 * 60000;
|
|
72882
|
+
const botSettingsModelCatalogFailureCacheMs = 5000;
|
|
72881
72883
|
const botSettingsModelCatalogCache = new Map;
|
|
72882
72884
|
const botSettingsModelCatalogLoads = new Map;
|
|
72883
72885
|
const loadOpenClawBotSettingsModelCatalog = async (params2) => {
|
|
@@ -72973,7 +72975,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
72973
72975
|
}
|
|
72974
72976
|
catalog = await load;
|
|
72975
72977
|
botSettingsModelCatalogCache.set(params2.agentId, {
|
|
72976
|
-
expiresAt: Date.now() + (catalog.options.length > 0 ?
|
|
72978
|
+
expiresAt: Date.now() + (catalog.options.length > 0 ? botSettingsModelCatalogSuccessCacheMs : botSettingsModelCatalogFailureCacheMs),
|
|
72977
72979
|
catalog
|
|
72978
72980
|
});
|
|
72979
72981
|
}
|
|
@@ -73075,7 +73077,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
73075
73077
|
model,
|
|
73076
73078
|
currentLevel: reasoningLevel
|
|
73077
73079
|
}),
|
|
73078
|
-
following: isInlineDialogFollowing(ingress.chatInfo.dialogFollowMode),
|
|
73080
|
+
...ingress.chatInfo.kind === "direct" ? {} : { following: isInlineDialogFollowing(ingress.chatInfo.dialogFollowMode) },
|
|
73079
73081
|
replyThreads: params2.replyThreads ?? (replyMode === "thread" ? "on" : replyMode === "main" ? "off" : "auto"),
|
|
73080
73082
|
canSetDefaultModel
|
|
73081
73083
|
}
|
|
@@ -76357,5 +76359,5 @@ export {
|
|
|
76357
76359
|
inlineChannelPlugin
|
|
76358
76360
|
};
|
|
76359
76361
|
|
|
76360
|
-
//# debugId=
|
|
76362
|
+
//# debugId=00A9253BF69E36F164756E2164756E21
|
|
76361
76363
|
//# sourceMappingURL=channel-plugin-api.js.map
|