9e45780ba0
First commit of the Next.js community site that powers deepseek-tui.com, deployed via Cloudflare Workers / OpenNext. This commit lands the scaffold and applies the visual + correctness pass requested by community feedback: - Palette: drop the cream/Anthropic-feel paper (#F4F1E8) for a DeepSeek-aligned cool white + soft gray (#FFFFFF / #F4F6FB), with indigo accents kept. Soften default hairlines so a pure-white background reads clean instead of harsh. - Mobile: add a hamburger menu (mobile-menu.tsx) so phones can reach Install / Docs / Activity / Roadmap / Contribute — previously the link list was hidden on phones with no replacement. Tighter hero, flexible button row, viewport-safe code blocks, columnar grids collapse cleanly under 768px, and the printed-almanac center rule is desktop-only now (it sliced through narrow viewports). - "How it works" diagram: replace the hand-rolled ASCII art (which misaligned under CJK monospace because Han characters take 2 columns vs Latin's 1, per dhh's note in WeChat) with a real mermaid diagram rendered client-side via dynamic import. Uses the mermaid.live standard syntax 庄表伟 recommended. - Issue #1104: the docs listed a `deepseek-cn` provider that the v0.8.16 binary doesn't accept (`ProviderArg` in crates/cli only has 9 variants; the 10th lives only in the legacy tui/config.rs). derive-facts.mjs now omits `deepseek-cn` until that variant is wired through the shared ProviderKind, and the install page's China-network recipe uses `base_url` / `DEEPSEEK_BASE_URL` (which actually works on v0.8.16) instead of the unsupported provider. Auto-deploys via .github/workflows/deploy-web.yml on push to main. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
97 lines
2.0 KiB
TypeScript
97 lines
2.0 KiB
TypeScript
// AUTO-GENERATED by web/scripts/derive-facts.mjs at prebuild.
|
|
// DO NOT EDIT — re-run `npm run prebuild` (or just `npm run build`) after changing the parent repo.
|
|
// To override at runtime, write the same shape to KV under key "facts:current".
|
|
|
|
export interface ProviderFact { id: string; label: string; env: string }
|
|
|
|
export interface RepoFacts {
|
|
generatedAt: string;
|
|
version: string | null;
|
|
crates: string[];
|
|
sandboxBackends: string[];
|
|
providers: ProviderFact[];
|
|
defaultModel: string | null;
|
|
nodeEngines: string | null;
|
|
toolCount: number | null;
|
|
license: string | null;
|
|
latestRelease: string | null;
|
|
}
|
|
|
|
export const FACTS: RepoFacts = {
|
|
"generatedAt": "2026-05-08T01:33:23.678Z",
|
|
"version": "0.8.18",
|
|
"crates": [
|
|
"agent",
|
|
"app-server",
|
|
"cli",
|
|
"config",
|
|
"core",
|
|
"execpolicy",
|
|
"hooks",
|
|
"mcp",
|
|
"protocol",
|
|
"secrets",
|
|
"state",
|
|
"tools",
|
|
"tui",
|
|
"tui-core"
|
|
],
|
|
"sandboxBackends": [
|
|
"landlock (Linux)",
|
|
"seatbelt (macOS)",
|
|
"AppContainer / restricted tokens (Windows)"
|
|
],
|
|
"providers": [
|
|
{
|
|
"id": "deepseek",
|
|
"label": "DeepSeek",
|
|
"env": "DEEPSEEK_API_KEY"
|
|
},
|
|
{
|
|
"id": "nvidia-nim",
|
|
"label": "NVIDIA NIM",
|
|
"env": "NVIDIA_API_KEY"
|
|
},
|
|
{
|
|
"id": "openai",
|
|
"label": "OpenAI",
|
|
"env": "OPENAI_API_KEY"
|
|
},
|
|
{
|
|
"id": "openrouter",
|
|
"label": "OpenRouter",
|
|
"env": "OPENROUTER_API_KEY"
|
|
},
|
|
{
|
|
"id": "novita",
|
|
"label": "Novita",
|
|
"env": "NOVITA_API_KEY"
|
|
},
|
|
{
|
|
"id": "fireworks",
|
|
"label": "Fireworks",
|
|
"env": "FIREWORKS_API_KEY"
|
|
},
|
|
{
|
|
"id": "sglang",
|
|
"label": "sglang",
|
|
"env": "SGLANG_API_KEY"
|
|
},
|
|
{
|
|
"id": "vllm",
|
|
"label": "vLLM",
|
|
"env": "VLLM_API_KEY"
|
|
},
|
|
{
|
|
"id": "ollama",
|
|
"label": "Ollama",
|
|
"env": "OLLAMA_API_KEY"
|
|
}
|
|
],
|
|
"defaultModel": "deepseek-v4-pro",
|
|
"nodeEngines": ">=18",
|
|
"toolCount": 61,
|
|
"license": "MIT",
|
|
"latestRelease": null
|
|
};
|