# shellcheck shell=dash
___x_cmd_ollama_pull(){
    [ $# -eq 0 ] || {
        ___x_cmd_ollama___bin pull "$@"
        return
    }

    if ___x_cmd_is_stdout2tty && ___x_cmd_runmode_allow_chatty; then
        ___x_cmd_ollama_la
    else
        ___x_cmd_ollama___bin pull "$@"
    fi
}


