origin_mcp/types.rs
1//! Wire types for the Origin HTTP API.
2//!
3//! All types live in the published `origin-types` crate. This module exists
4//! only to provide a stable import path (`crate::types::...`) during the
5//! cross-repo refactor; later PRs may remove the module entirely and import
6//! `origin_types::*` at call sites directly.
7
8pub use origin_types::memory::SearchResult;
9pub use origin_types::requests::{ChatContextRequest, SearchMemoryRequest, StoreMemoryRequest};
10pub use origin_types::responses::{
11 ChatContextResponse, DeleteResponse, SearchMemoryResponse, StoreMemoryResponse,
12};