You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resultsstring`json:"results" jsonschema:"description=0, 1, or multiple return values as Suneido-format strings"`
156
156
}
157
157
158
158
vartoolSpecs= []toolSpec{
@@ -260,12 +260,9 @@ var toolSpecs = []toolSpec{
260
260
},
261
261
{
262
262
name: "suneido_execute",
263
-
description: "Executes Suneido code for its return value or side effects (e.g., database updates). Returns a text report containing:\n"+
264
-
"- code: The code that was executed.\n"+
265
-
"- results: Array of 0, 1, or multiple return values as Suneido-format strings (Value.String())\n"+
266
-
"- warnings: Array of compiler warnings\n"+
267
-
"Note: A single returned object will appear as the first result (e.g., [[1,2]]), while multiple return values appear as separate elements (e.g., [1,2])."+
268
-
"Use this for calculations, data manipulation, or system commands.",
263
+
description: "Executes Suneido code for its result or side effects.\n"+
264
+
"Use this for calculations, data manipulation, or system commands.\n"+
265
+
"Note: A single returned object will appear as the first result (e.g., [[1,2]]), while multiple return values appear as separate elements (e.g., [1,2]).",
269
266
params: []stringParam{{name: "code", description: "Suneido code to execute (as the body of a function)", required: true}},
0 commit comments