pub struct RecallResponse {
pub memories: Vec<RecallResult>,
pub query_embedding_time_ms: u64,
pub search_time_ms: u64,
pub associated_memories: Option<Vec<RecallResult>>,
}Expand description
Response from recall
Fields§
§memories: Vec<RecallResult>§query_embedding_time_ms: u64§search_time_ms: u64§associated_memories: Option<Vec<RecallResult>>COG-2: memories linked to recalled memories via KG depth-1 traversal.
Only populated when include_associated: true in the request.
Trait Implementations§
Source§impl Debug for RecallResponse
impl Debug for RecallResponse
Auto Trait Implementations§
impl Freeze for RecallResponse
impl RefUnwindSafe for RecallResponse
impl Send for RecallResponse
impl Sync for RecallResponse
impl Unpin for RecallResponse
impl UnsafeUnpin for RecallResponse
impl UnwindSafe for RecallResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more