llmist 2.2.0 → 2.3.0
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 +54 -9
- package/dist/cli.cjs +11 -4
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +11 -4
- package/dist/cli.js.map +1 -1
- package/package.json +11 -4
package/dist/cli.js
CHANGED
|
@@ -86,8 +86,8 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
|
|
|
86
86
|
// package.json
|
|
87
87
|
var package_default = {
|
|
88
88
|
name: "llmist",
|
|
89
|
-
version: "2.
|
|
90
|
-
description: "
|
|
89
|
+
version: "2.2.0",
|
|
90
|
+
description: "TypeScript LLM client with streaming tool execution. Tools fire mid-stream. Built-in function calling works with any model\u2014no structured outputs or native tool support required.",
|
|
91
91
|
type: "module",
|
|
92
92
|
main: "dist/index.cjs",
|
|
93
93
|
module: "dist/index.js",
|
|
@@ -161,9 +161,16 @@ var package_default = {
|
|
|
161
161
|
"universal-client",
|
|
162
162
|
"multi-provider",
|
|
163
163
|
"hooks",
|
|
164
|
-
"gadgets"
|
|
164
|
+
"gadgets",
|
|
165
|
+
"chatbot",
|
|
166
|
+
"chatgpt",
|
|
167
|
+
"agentic",
|
|
168
|
+
"language-model",
|
|
169
|
+
"generative-ai",
|
|
170
|
+
"bun",
|
|
171
|
+
"nodejs"
|
|
165
172
|
],
|
|
166
|
-
author: "",
|
|
173
|
+
author: "Zbigniew Sobiecki <zbigniew@sobiecki.name>",
|
|
167
174
|
license: "MIT",
|
|
168
175
|
dependencies: {
|
|
169
176
|
"@anthropic-ai/sdk": "^0.69.0",
|