@heylemon/lemonade 0.5.5 → 0.5.7
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.
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
const ANTHROPIC_PREFIXES = [
|
|
1
|
+
const ANTHROPIC_PREFIXES = [
|
|
2
|
+
"claude-opus-4-5",
|
|
3
|
+
"claude-sonnet-4-6",
|
|
4
|
+
"claude-sonnet-4-5",
|
|
5
|
+
"claude-haiku-4-5",
|
|
6
|
+
];
|
|
2
7
|
const OPENAI_MODELS = ["gpt-5.2", "gpt-5.0"];
|
|
3
8
|
const CODEX_MODELS = [
|
|
4
9
|
"gpt-5.2",
|
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7f6082891d1a864a62d566ed58f346f2d5a322b0615844b6eeb3eca4862e28e8
|
|
@@ -33,10 +33,10 @@ export async function handleTaskEventsHttpRequest(req, res, opts) {
|
|
|
33
33
|
return;
|
|
34
34
|
// Notifications are always forwarded regardless of session key
|
|
35
35
|
if (evt.stream !== "notification") {
|
|
36
|
-
// Only forward events that have a sessionKey containing whatsapp or slack
|
|
37
36
|
const sk = evt.sessionKey ?? "";
|
|
38
37
|
const isMessagingChannel = sk.includes("whatsapp") || sk.includes("slack");
|
|
39
|
-
|
|
38
|
+
const isSubagent = sk.includes(":subagent:");
|
|
39
|
+
if (!isMessagingChannel && !isSubagent && evt.stream !== "task_info")
|
|
40
40
|
return;
|
|
41
41
|
}
|
|
42
42
|
try {
|