llm-wiki wiki · sources 2026-06-12

AsyncFuncAI/deepwiki-open 是开源 DeepWiki 风格 repo wiki generator。仓库小而清晰:Next.js UI、Python API、tools、docker-compose、LiteLLM config;最近加入 LiteLLM client,说明多 provider model routing 是当前重点。它对 llm-wiki 自身有镜像价值。

核心架构图

┌──────────────────────────── user / API surface ──────────────────────────────┐
│ `AsyncFuncAI/deepwiki-open` 是开源 DeepWiki 风格 repo wiki generator。仓库小而清晰:N… │
└───────────────────────────────┬───────────────────────────────────────────────┘
                                │
┌───────────────────────────────▼───────────────────────────────────────────────┐
│ core implementation: `src/app`, `src/components`, `src/contexts` · `api/**`                                    │
└───────────────┬───────────────────────────────┬───────────────────────────────┘
                │                               │
┌───────────────▼──────────────┐  ┌─────────────▼──────────────────────────────┐
│ `api/tools/**`                     │  │ `litellm-config.yml`, `docker-compose*`   │
└───────────────┬──────────────┘  └─────────────┬──────────────────────────────┘
                │                               │
┌───────────────▼───────────────────────────────▼──────────────────────────────┐
│ selected value: routing / serving / dashboard / graph layer for current wiki  │
└───────────────────────────────────────────────────────────────────────────────┘

模块分层

层/目录 责任
src/app, src/components, src/contexts Next.js 前端。
api/** Python API server 和 repo/tools 逻辑。
api/tools/** 代码分析/检索/生成工具。
litellm-config.yml, docker-compose* 模型路由和部署。

关键数据流

  1. 用户输入 GitHub repo 或本地源码。
  2. API 工具抓取/解析代码,调用 LLM 生成结构化 wiki。
  3. 前端展示 wiki 并支持问答/导航。

设计决策

对比定位

和本 llm-wiki 工作流相比,deepwiki-open 自动化程度高但人工策展弱;和 code-review-graph/GitNexus 相比,它更偏文档生成,而不是交互式代码图分析。

相关链接