Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
B15/B11: streamStore onAgentStream 添加 activeRunId 过滤,移除降级匹配, hand/workflow 消息追加前验证 runId 归属;chatStore 切换/新建对话时 先 cancelStream 终止旧流;ChatArea hand-execution-complete 事件 添加 isStreaming 守卫 B4/B5: ChatArea 模型列表过滤 embedding 模型,provider 设为 undefined 隐藏 UUID B2/B3: streamStore onError 添加 formatUserError 函数,将原始 JSON 错误转换为中文友好提示 B1: SuggestionChips onSelect 延迟调用 handleSend 自动发送建议 fix(runtime): test_util.rs with_error 添加 mut self,with_stream_chunks 移除多余 mut fix(saas): lib.rs 添加 Result/SaasError re-export
33 lines
637 B
Rust
33 lines
637 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 industry;
|
|
pub mod knowledge;
|
|
|
|
pub use error::{SaasError, SaasError as Error, SaasResult as Result};
|