Fam Zheng d9d3bc340c Add global knowledge base with RAG search
- KB module: fastembed (AllMiniLML6V2) for CPU embedding, SQLite for
  vector storage with brute-force cosine similarity search
- Chunking by ## headings, embeddings stored as BLOB in kb_chunks table
- API: GET/PUT /api/kb for full-text read/write with auto re-indexing
- Agent tools: kb_search (top-5 semantic search) and kb_read (full text)
  available in both planning and execution phases
- Frontend: Settings menu in sidebar footer, KB editor as independent
  view with markdown textarea and save button
- Also: extract shared db_err/ApiResult to api/mod.rs, add context
  management design doc

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 08:15:50 +00:00
2026-02-28 18:02:10 +00:00

Tori — AI Agent 工作流管理器

AI agent 驱动的工作流管理 Web 应用。描述需求AI 规划agent 执行,随时通过 comment 反馈。

快速开始

# 开发模式(前后端同时启动)
make dev

# 构建生产版本
make build

# 部署到 OCI ARM 服务器
make deploy

配置

cp config.yaml.example config.yaml
# 编辑 config.yaml填入 LLM API key 等

技术栈

  • 后端: Rust (Axum) + SQLite
  • 前端: Vite + Vue 3 + TypeScript
  • LLM: OpenAI 兼容 APIRequesty.ai 网关)
  • 实时通信: WebSocket
  • 远程执行: SSH
Description
AI Agent Workflow Manager
Readme 441 KiB
Languages
Rust 63.7%
Vue 28.1%
Python 3.4%
TypeScript 2.3%
HTML 1.7%
Other 0.8%