d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
Web Frontend / Deploy to Cloudflare (push) Waiting to run
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
56 lines
2.1 KiB
Bash
56 lines
2.1 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=
|
|
|
|
# Official DeepSeek Platform host (see api-docs.deepseek.com); `deepseek-cn` uses the same host.
|
|
# DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
# DEEPSEEK_PROVIDER=deepseek-cn
|
|
|
|
# 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
|
|
|
|
# AtlasCloud OpenAI-compatible endpoint
|
|
# Atlas Cloud exposes curated model IDs through a single OpenAI-compatible API.
|
|
# See https://www.atlascloud.ai/docs and the Coding Plan:
|
|
# https://www.atlascloud.ai/console/coding-plan
|
|
# Reasoning models such as deepseek-ai/deepseek-v4-pro need max_tokens >= 512
|
|
# if you override output caps.
|
|
# DEEPSEEK_PROVIDER=atlascloud
|
|
# ATLASCLOUD_API_KEY=<your-atlascloud-key>
|
|
# ATLASCLOUD_BASE_URL=https://api.atlascloud.ai/v1
|
|
# ATLASCLOUD_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
|
|
# DEEPSEEK_YOLO=true
|
|
|
|
# Optional extension paths
|
|
# DEEPSEEK_SKILLS_DIR=~/.deepseek/skills
|
|
# DEEPSEEK_MCP_CONFIG=~/.deepseek/mcp.json
|