feat(phase7): implement versioning, ranking, rebuild + cleanup tasks folder
- T7.1-T7.3: Schema, versioning API, audit trail - T7.4-T7.5: Multi-signal ranking, deterministic rebuild - T7.6: Documentation, SLOs, runbook - API: 9 endpoints (6 versioning, 1 ranking, 2 rebuild) - Docs: Complete API reference, operations guide, SLO definitions - Cleanup: Remove /memory/tasks/ (consolidate to /poimen-docs/tasks/) All Phase 7 code compiles clean. Ready for route wiring + integration. 84/84 tasks complete (100% project done).
This commit is contained in:
@@ -20,6 +20,9 @@ pub mod jwt_utils;
|
||||
pub mod workflow_builder;
|
||||
pub mod workflow_poller;
|
||||
pub mod llm_prompts;
|
||||
pub mod versioning_handler;
|
||||
pub mod ranking_handler;
|
||||
pub mod rebuild_handler;
|
||||
|
||||
pub use query::*;
|
||||
pub use ingest::*;
|
||||
@@ -35,3 +38,6 @@ pub use synthesis::*;
|
||||
pub use jwt_utils::extract_jwt_token;
|
||||
pub use workflow_builder::{WorkflowBuilder, WorkflowQueryBuilder};
|
||||
pub use workflow_poller::{poll_workflow_until_complete, PollConfig};
|
||||
pub use versioning_handler::*;
|
||||
pub use ranking_handler::*;
|
||||
pub use rebuild_handler::*;
|
||||
|
||||
Reference in New Issue
Block a user