# Ingest MVP

最小闭环：

* `config/sources.json` 维护白名单来源
* `scripts/run_ingest.py` 执行采集
* `inbox/stream` 存放定时采集结果
* `inbox/topics` 存放手动专题采集结果
* `state/seen.json` 维护全局去重状态

本地运行：

```bash
PYTHONPATH=v2.0/workspace python3 v2.0/workspace/scripts/run_ingest.py
```

手动专题采集：

```bash
PYTHONPATH=v2.0/workspace python3 v2.0/workspace/scripts/run_ingest.py --query rust --ignore-seen
```
