sigoden / llm-functions

Extend LLMs with tools and agents developed in bash/javascript/python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error while running "Symlink this repo directory to aichat functions_dir" instruction step

ngirard opened this issue · comments

Running

❯ ln -s "$(pwd)" "$(aichat --info | grep functions_dir | awk '{print $2}')"

produces

ln: failed to create symbolic link '/home/ngirard/.config/aichat/functions'$'\n''/home/ngirard/.config/aichat/functions/agents': No such file or directory

FWIW:

❯ aichat --info | grep functions_dir | awk '{print $2}'
/home/ngirard/.config/aichat/functions
/home/ngirard/.config/aichat/functions/agents

The readme is for AIChat v0.18.0. Updates will be made available after the release of AIChat v0.19.0.

- ln -s "$(pwd)" "$(aichat --info | grep functions_dir | awk '{print $2}')"
+ ln -s "$(pwd)" "$(aichat --info | grep -w functions_dir | awk '{print $2}')"