- 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).
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
/// HTTP Handler Helpers
|
|
///
|
|
/// Extracted from http_server.rs to reduce complexity.
|
|
/// Each handler has its own params struct with validation.
|
|
|
|
pub mod query;
|
|
pub mod ingest;
|
|
pub mod learn;
|
|
pub mod visualize;
|
|
pub mod visualize_sse;
|
|
pub mod compact;
|
|
pub mod middleware;
|
|
pub mod response_builder;
|
|
pub mod semantic;
|
|
pub mod unified_query;
|
|
pub mod synthesis;
|
|
pub mod unified_synthesis;
|
|
pub mod agent_handler;
|
|
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::*;
|
|
pub use learn::*;
|
|
pub use visualize::*;
|
|
pub use visualize_sse::*;
|
|
pub use compact::*;
|
|
pub use middleware::*;
|
|
pub use response_builder::*;
|
|
pub use semantic::*;
|
|
pub use unified_query::*;
|
|
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::*;
|