llama-cpp-scripts / bin /llama-menu.sh
iandennismiller's picture
shebang
7a3048f
raw
history blame
248 Bytes
#!/bin/bash
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