diff options
| author | sigoden <sigoden@gmail.com> | 2024-08-17 08:25:10 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-17 08:25:10 +0800 |
| commit | 072527fa1e518d1ee5ef8f371e4064d51ae29ac5 (patch) | |
| tree | 2fda53719eb4db42e4b0a5c2c349508983e1dbd1 | |
| parent | d3930a6e21210617642f3d6b2a6774e58b7e9fa8 (diff) | |
| download | llm-functions-docker-072527fa1e518d1ee5ef8f371e4064d51ae29ac5.tar.gz | |
fix: scripts/run-agent.sh (#96)
| -rwxr-xr-x | scripts/run-agent.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run-agent.sh b/scripts/run-agent.sh index f52a4e6..866b1bd 100755 --- a/scripts/run-agent.sh +++ b/scripts/run-agent.sh @@ -79,7 +79,7 @@ def to_args: [ to_args ] | join(" ") EOF )" - args="$(echo "$tool_data" | jq -r "$jq_script")" || { + args="$(echo "$agent_data" | jq -r "$jq_script")" || { die "Invalid JSON data" } |
