Nexevo.aiNexevo.ai
← All examples
Connect Agent / CLI tools

Crush(Charm 出品的终端 LLM)

Charm 出的 TUI 风格终端 chat,YAML 配置自定义 provider。

curl
bash
# 1) 安装
brew install charmbracelet/tap/crush     # macOS
# 或 go install github.com/charmbracelet/crush@latest

# 2) 编辑 ~/.config/crush/config.yaml,加 provider:
cat > ~/.config/crush/config.yaml <<'EOF'
providers:
  - id: nexevo
    name: Nexevo
    base_url: https://api.nexevo.ai/v1
    api_key: sk-xc-你的-Nexevo-key
    default_model: nexevo-auto
    models:
      - id: nexevo-auto
        name: Nexevo Auto(智能选)
      - id: gpt-5
      - id: claude-sonnet-4-6
      - id: deepseek-v4-pro
EOF

# 3) 启动
crush
# /provider nexevo  切到 Nexevo
# /model nexevo-auto  默认推荐
Crush(Charm 出品的终端 LLM) — Nexevo Cookbook | Nexevo.ai