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.cjs
CHANGED
|
@@ -6587,7 +6587,7 @@ var import_commander2 = require("commander");
|
|
|
6587
6587
|
// package.json
|
|
6588
6588
|
var package_default = {
|
|
6589
6589
|
name: "llmist",
|
|
6590
|
-
version: "1.
|
|
6590
|
+
version: "1.6.0",
|
|
6591
6591
|
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.",
|
|
6592
6592
|
type: "module",
|
|
6593
6593
|
main: "dist/index.cjs",
|
|
@@ -9721,7 +9721,7 @@ async function executeAgent(promptArg, options, env) {
|
|
|
9721
9721
|
try {
|
|
9722
9722
|
await executeInDocker(ctx, devMode);
|
|
9723
9723
|
} catch (error) {
|
|
9724
|
-
if (error instanceof
|
|
9724
|
+
if (error instanceof DockerSkipError) {
|
|
9725
9725
|
} else {
|
|
9726
9726
|
throw error;
|
|
9727
9727
|
}
|