Files
hms/crates/erp-ai/src/lib.rs
iven 75a70d2e46
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled
feat(ai): 添加知识库 trait 和 DTO — KnowledgeSource/PatientSummary/Reference
Phase 3 Task 19: 定义统一知识获取接口,支持未来向量检索扩展
2026-05-05 15:50:57 +08:00

17 lines
287 B
Rust

pub mod config;
pub mod dto;
pub mod entity;
pub mod error;
pub mod handler;
pub mod knowledge;
pub mod module;
pub mod prompt;
pub mod provider;
pub mod sanitization;
pub mod service;
pub mod state;
pub use error::{AiError, AiResult};
pub use module::AiModule;
pub use state::AiState;