- 5 knowledge tables (categories, items, chunks, versions, usage) with pgvector + HNSW + GIN indexes - 23+ API routes covering full CRUD, tree-structured categories, version snapshots - Keyword-based search with ILIKE + array match (placeholder for vector search) - Analytics endpoints: overview, trends, top-items, quality, gaps - Markdown-aware content chunking with overlap strategy - Worker dispatch for async embedding generation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
548 B
Rust
30 lines
548 B
Rust
//! ZCLAW SaaS Backend
|
|
//!
|
|
//! 独立的 SaaS 后端服务,提供账号权限管理、模型配置、请求中转和配置迁移。
|
|
|
|
pub mod common;
|
|
pub mod config;
|
|
pub mod crypto;
|
|
pub mod cache;
|
|
pub mod db;
|
|
pub mod error;
|
|
pub mod middleware;
|
|
pub mod models;
|
|
pub mod scheduler;
|
|
pub mod state;
|
|
pub mod tasks;
|
|
pub mod workers;
|
|
|
|
pub mod auth;
|
|
pub mod account;
|
|
pub mod model_config;
|
|
pub mod relay;
|
|
pub mod migration;
|
|
pub mod role;
|
|
pub mod prompt;
|
|
pub mod agent_template;
|
|
pub mod scheduled_task;
|
|
pub mod telemetry;
|
|
pub mod billing;
|
|
pub mod knowledge;
|