fix: install to aichat functions_dir (#49)

This commit is contained in:
sigoden
2024-06-27 05:39:43 +08:00
committed by GitHub
parent 79491fc14b
commit 444b4b2a62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -452,7 +452,7 @@ clean@agent() {
# @cmd Install this repo to aichat functions_dir
install() {
functions_dir="$(aichat --info | grep functions_dir | awk '{print $2}')"
functions_dir="$(aichat --info | grep -w functions_dir | awk '{print $2}')"
if [[ -z "$functions_dir" ]]; then
_die "error: your aichat version don't support function calling"
fi
+1 -1
View File
@@ -40,7 +40,7 @@ hackernews
Symlink this repo directory to aichat **functions_dir**:
```sh
ln -s "$(pwd)" "$(aichat --info | grep functions_dir | awk '{print $2}')"
ln -s "$(pwd)" "$(aichat --info | grep -w functions_dir | awk '{print $2}')"
# OR
argc install
```