# shellcheck shell=dash
___x_cmd_llmf_nv(){
    local id=
    local data=
    llmf:info "Module llmf is a model manager."
    ___x_cmd ui select id,data  "Next step:"    \
        "x llmf model       # manage all models avaialble"      \
        "x llmf serve       # open a webservice for local LLM"  \
        "x llmf cli -h      # show help to run llm in cli mode" \
        "x llmf --help      # show help of llmf module"         \
        "x open https://x-cmd.com/mod/llmf"                     \
        "ABORT" || return $?

    case "$id" in
        6)      return ;;
        *)      eval "$data"    ;;
    esac
}
