omnius 1.0.361 → 1.0.362
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 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -713786,7 +713786,9 @@ function formatTaskCompletionMeta(meta) {
|
|
|
713786
713786
|
return `${meta.turns} turns, ${meta.toolCalls} tool calls, ${dur}, ${meta.model}`;
|
|
713787
713787
|
}
|
|
713788
713788
|
function buildNewTaskIntakePacket(ingress, interpretation, previousPrompt, previousSummary, previousMeta) {
|
|
713789
|
-
const
|
|
713789
|
+
const rawTitle = ingress.rawText?.trim()?.split("\n")[0]?.slice(0, 120) || "task";
|
|
713790
|
+
const inferenceTitle = interpretation?.inference?.trim();
|
|
713791
|
+
const title = interpretation && inferenceTitle && inferenceTitle.length > 15 && inferenceTitle !== rawTitle ? inferenceTitle : rawTitle;
|
|
713790
713792
|
const lines = [
|
|
713791
713793
|
`${title}`,
|
|
713792
713794
|
`id: ${ingress.id}`,
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.362",
|
|
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.362",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED