aboutsummaryrefslogtreecommitdiffstats
path: root/agents/demo/tools.sh
blob: 98f3d4708c7e115eedf6c8239f7ea390f0798568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
set -e

# @cmd Get the system info
get_sysinfo() {
    cat <<EOF >> "$LLM_OUTPUT"
OS: $(uname)
Arch: $(arch)
EOF
}

# See more details at https://github.com/sigoden/argc
eval "$(argc --argc-eval "$0" "$@")"