@voidwire/llm-summarize 3.9.1 → 3.9.3
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/index.ts +1 -1
- package/package.json +6 -6
package/index.ts
CHANGED
|
@@ -82,7 +82,7 @@ Previous Assistant: <last assistant message>
|
|
|
82
82
|
User Prompt: <current user message>
|
|
83
83
|
|
|
84
84
|
Produce JSON with:
|
|
85
|
-
1. summary: Brief description (1-2 sentences) of what the user is doing/asking. Start with "${name}".
|
|
85
|
+
1. summary: Brief description (1-2 sentences) of what the user is doing/asking. Start with "${name}". Include 2-3 key searchable terms from the prompt (names, tools, concepts) naturally in the sentence.
|
|
86
86
|
2. should_search: Whether to search the knowledge base
|
|
87
87
|
3. extractions: Terms worth searching for
|
|
88
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidwire/llm-summarize",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Structured session insight extraction for knowledge systems",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
"README.md",
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"test": "bun test"
|
|
23
|
+
},
|
|
21
24
|
"keywords": [
|
|
22
25
|
"llm",
|
|
23
26
|
"summarize",
|
|
@@ -41,9 +44,6 @@
|
|
|
41
44
|
"bun": ">=1.0.0"
|
|
42
45
|
},
|
|
43
46
|
"dependencies": {
|
|
44
|
-
"@voidwire/llm-core": "
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"test": "bun test"
|
|
47
|
+
"@voidwire/llm-core": "0.4.0"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|