Files
llm-functions/agents/demo/tools.sh
2024-07-09 21:17:12 +08:00

13 lines
237 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# @cmd Get the system info
get_sysinfo() {
echo "OS: $(uname)"
echo "Arch: $(arch)"
echo "User: $USER"
}
# See more details at https://github.com/sigoden/argc
eval "$(argc --argc-eval "$0" "$@")"