llama-cpp-scripts / bin /llama-menu.sh
iandennismiller's picture
llama general-runner
538ca27
raw
history blame
235 Bytes
clear
CHOICES=$(cd ~/.ai/models/llama && find . -name "*.gguf")
SELECTED=$(echo "$CHOICES" | fzf --reverse --border --ansi)
if [[ -z "$SELECTED" ]]; then
return
fi
echo "Selected: $SELECTED"
llama.sh "$SELECTED" chatml 2048 0.8