5c1086fe9e
Bump workspace version 0.4.6 -> 0.4.7 and ship the bug fix flagged by Devin on PR #18: an uncommented `DEEPSEEK_API_KEY=` line in .env.example caused `cp .env.example .env` to load an empty key, which `apply_env_overrides` then propagated into the config and `Config::validate()` rejected on startup with "api_key cannot be empty string". - .env.example: comment out the empty `DEEPSEEK_API_KEY=` placeholder. - crates/tui/src/config.rs: skip empty `DEEPSEEK_API_KEY` env values in `apply_env_overrides`, matching the facade's empty-string filter. - Add `apply_env_overrides_ignores_empty_api_key` regression test. - Bump Cargo.toml workspace version, npm wrapper version + binary version, and Cargo.lock.
45 lines
1.6 KiB
Bash
45 lines
1.6 KiB
Bash
# DeepSeek TUI environment
|
|
# Shell-exported variables override values in this file.
|
|
# Copy this file to `.env`, then uncomment only the values you want to use.
|
|
|
|
# DeepSeek API (default provider)
|
|
# Get an API key from DeepSeek, then keep it local in `.env`.
|
|
# DEEPSEEK_API_KEY=
|
|
|
|
# Global endpoint:
|
|
# DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
# China endpoint:
|
|
# DEEPSEEK_BASE_URL=https://api.deepseeki.com
|
|
|
|
# V4 model selection. Compatibility aliases such as `deepseek-chat` normalize
|
|
# to the current V4 flash model in the TUI.
|
|
# DEEPSEEK_MODEL=deepseek-v4-pro
|
|
# DEEPSEEK_MODEL=deepseek-v4-flash
|
|
|
|
# NVIDIA NIM-hosted DeepSeek V4
|
|
# Use this provider when routing through NVIDIA's OpenAI-compatible endpoint.
|
|
# DEEPSEEK_PROVIDER=nvidia-nim
|
|
# NVIDIA_API_KEY=
|
|
# NVIDIA_NIM_API_KEY=
|
|
# NVIDIA_NIM_BASE_URL=https://integrate.api.nvidia.com/v1
|
|
# NIM_BASE_URL=https://integrate.api.nvidia.com/v1
|
|
# NVIDIA_BASE_URL=https://integrate.api.nvidia.com/v1
|
|
# NVIDIA_NIM_MODEL=deepseek-ai/deepseek-v4-pro
|
|
|
|
# Logging
|
|
# `DEEPSEEK_LOG_LEVEL` is forwarded by the facade; `RUST_LOG` enables the
|
|
# TUI's lightweight verbose logs for info/debug/trace directives.
|
|
# DEEPSEEK_LOG_LEVEL=debug
|
|
# RUST_LOG=deepseek_tui=debug
|
|
|
|
# Agent safety defaults
|
|
# `on-request` asks before higher-risk work; `workspace-write` keeps writes
|
|
# inside the workspace unless a sandbox elevation path is explicitly used.
|
|
# DEEPSEEK_APPROVAL_POLICY=on-request
|
|
# DEEPSEEK_SANDBOX_MODE=workspace-write
|
|
# DEEPSEEK_ALLOW_SHELL=true
|
|
|
|
# Optional extension paths
|
|
# DEEPSEEK_SKILLS_DIR=~/.deepseek/skills
|
|
# DEEPSEEK_MCP_CONFIG=~/.deepseek/mcp.json
|