llmist 1.6.0 → 1.6.1
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/cli.cjs +2 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -88,7 +88,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
|
|
|
88
88
|
// package.json
|
|
89
89
|
var package_default = {
|
|
90
90
|
name: "llmist",
|
|
91
|
-
version: "1.
|
|
91
|
+
version: "1.6.0",
|
|
92
92
|
description: "Universal TypeScript LLM client with streaming-first agent framework. Works with any model - no structured outputs or native tool calling required. Implements its own flexible grammar for function calling.",
|
|
93
93
|
type: "module",
|
|
94
94
|
main: "dist/index.cjs",
|
|
@@ -3162,7 +3162,7 @@ async function executeAgent(promptArg, options, env) {
|
|
|
3162
3162
|
try {
|
|
3163
3163
|
await executeInDocker(ctx, devMode);
|
|
3164
3164
|
} catch (error) {
|
|
3165
|
-
if (error instanceof
|
|
3165
|
+
if (error instanceof DockerSkipError) {
|
|
3166
3166
|
} else {
|
|
3167
3167
|
throw error;
|
|
3168
3168
|
}
|