diff options
| author | sigoden <sigoden@gmail.com> | 2024-11-30 17:14:21 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-30 17:14:21 +0800 |
| commit | d2a537c3743963bfb6add44731dd3f3f6c785a2e (patch) | |
| tree | e499f1217135741622995ba253ad34ea9164f358 /scripts/create-tool.sh | |
| parent | c4ba6ff379bdce768f6053671309e2e2f4a6fc79 (diff) | |
| download | llm-functions-docker-d2a537c3743963bfb6add44731dd3f3f6c785a2e.tar.gz | |
refactor: several improvements (#132)
- js export expression
- check args regarding run-agent/run-tool
Diffstat (limited to 'scripts/create-tool.sh')
| -rwxr-xr-x | scripts/create-tool.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-tool.sh b/scripts/create-tool.sh index c218e60..c335934 100755 --- a/scripts/create-tool.sh +++ b/scripts/create-tool.sh @@ -75,7 +75,7 @@ create_js() { * @typedef {Object} Args${properties} * @param {Args} args */ -exports.run = function run(args) { +exports.run = function (args) { console.log(args); } EOF |
