#!/bin/bash CHOICES=$(cd ~/.ai/models/llama && find . -name "*.gguf") SELECTED=$(echo "$CHOICES" | fzf --reverse --border --ansi) if [[ -z "$SELECTED" ]]; then exit fi echo "Selected: '$SELECTED'" llama.sh "$SELECTED" chatml 2048 0.8