tune-basic-toolset 0.1.17 → 0.1.18
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 +6 -1
- package/package.json +1 -1
- package/src/turn.schema.json +1 -1
- package/src/wf.tool.js +4 -1
package/README.md
CHANGED
|
@@ -371,7 +371,8 @@ It is useful when you need to trigger loops and ifs or chain few tool calls toge
|
|
|
371
371
|
```chat
|
|
372
372
|
user:
|
|
373
373
|
@js_ctx @sh
|
|
374
|
-
|
|
374
|
+
|
|
375
|
+
what is in my current directory?
|
|
375
376
|
|
|
376
377
|
tool_call: sh
|
|
377
378
|
ls
|
|
@@ -396,7 +397,11 @@ __pycache__
|
|
|
396
397
|
append.schema.json
|
|
397
398
|
append.tool.js
|
|
398
399
|
....
|
|
400
|
+
```
|
|
401
|
+
|
|
399
402
|
|
|
403
|
+
Now we can loop trough all the files and summarize its content
|
|
404
|
+
```
|
|
400
405
|
user:
|
|
401
406
|
can you loop throught the .js files and summarize its content using llm?
|
|
402
407
|
assistant:
|
package/package.json
CHANGED
package/src/turn.schema.json
CHANGED
package/src/wf.tool.js
CHANGED