Files
llm-functions/agents/demo/tools.sh
2024-07-29 17:26:36 +08:00

11 lines
215 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# @cmd Get the ip info
get_ipinfo() {
curl -fsSL https://httpbin.org/ip >> "$LLM_OUTPUT"
}
# See more details at https://github.com/sigoden/argc
eval "$(argc --argc-eval "$0" "$@")"