This commit is contained in:
Wenjie Zhang 2026-01-12 17:10:03 +08:00
commit 9470b15e29
3 changed files with 23 additions and 0 deletions

View File

@ -180,6 +180,17 @@ services:
- app-network
restart: unless-stopped
sqlite-web:
image: coleifer/sqlite-web:latest
container_name: sqlite-web
volumes:
- ./saves/database:/data
ports:
- "9092:8080"
environment:
SQLITE_DATABASE: server.db
restart: unless-stopped
# lastest version: wget https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/docker/compose.yaml
mineru-vllm-server:
build:

View File

@ -41,6 +41,7 @@
- 优化 RAG 检索,支持根据文件 pattern 来检索Agentic Mode
- 重构智能体对于“工具变更/模型变更”的处理逻辑,无需导入更复杂的中间件
- 重构知识库的 Agentic 配置逻辑,与 Tools 解耦
- 新增Sqlite Web UI 方便通过Web页面管理数据库中数据[#463](https://github.com/xerrors/Yuxi-Know/pull/463)
### 修复

View File

@ -110,6 +110,17 @@
访问
</a-button>
</div>
<div class="service-link-card">
<div class="service-info">
<h4>SQLite WebUI</h4>
<p>SQLite 数据库管理界面</p>
</div>
<a-button type="default" @click="openLink('http://localhost:9092/')" :icon="h(GlobalOutlined)">
访问
</a-button>
</div>
</div>
</div>
</div>