utilitas 2001.1.110 → 2001.1.111
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/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +1 -0
- package/lib/manifest.mjs +1 -1
- package/package.json +1 -1
package/lib/alan.mjs
CHANGED
|
@@ -806,6 +806,7 @@ const handleToolsCall = async (msg, options) => {
|
|
|
806
806
|
const output = JSON.stringify((await f?.func(input)) ?? OK);
|
|
807
807
|
content.push(packMsg(output));
|
|
808
808
|
await resp(f.showRes ? `Output: ${output}` : `Status: OK`);
|
|
809
|
+
log(`Tool: ${name}(${JSON.stringify(input)}): ${output}`);
|
|
809
810
|
} catch (err) {
|
|
810
811
|
const rt = `Failed: ${err.message}`;
|
|
811
812
|
content.push(packMsg(rt, true));
|
package/lib/manifest.mjs
CHANGED