omnius 1.0.82 → 1.0.83
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.js +3 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -610459,9 +610459,9 @@ function telegramDecisionRecoverableFlag(text) {
|
|
|
610459
610459
|
}
|
|
610460
610460
|
return void 0;
|
|
610461
610461
|
}
|
|
610462
|
-
function telegramRouterTimeoutMs(configTimeoutMs, minMs =
|
|
610462
|
+
function telegramRouterTimeoutMs(configTimeoutMs, minMs = 12e4, _legacyMaxMs) {
|
|
610463
610463
|
const configured = Number.isFinite(configTimeoutMs) && (configTimeoutMs ?? 0) > 0 ? configTimeoutMs : 3e5;
|
|
610464
|
-
return Math.max(configured, minMs);
|
|
610464
|
+
return Math.max(configured, minMs, 12e4);
|
|
610465
610465
|
}
|
|
610466
610466
|
function parseTelegramInteractionDecision(text, forcedRoute, options2 = {}) {
|
|
610467
610467
|
for (const jsonText of telegramDecisionJsonCandidates(text)) {
|
|
@@ -617135,7 +617135,7 @@ ${conversationStream}`
|
|
|
617135
617135
|
tools: [],
|
|
617136
617136
|
temperature: 0.4,
|
|
617137
617137
|
maxTokens: 700,
|
|
617138
|
-
timeoutMs: Math.max(config.timeoutMs ?? 3e5,
|
|
617138
|
+
timeoutMs: Math.max(config.timeoutMs ?? 3e5, 12e4),
|
|
617139
617139
|
think: false
|
|
617140
617140
|
};
|
|
617141
617141
|
let accumulated = "";
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.83",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.83",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED