pub struct PromptMemoryObservability {Show 22 fields
pub project_prompt_injection_enabled: bool,
pub relevant_recall_enabled: bool,
pub relevant_recall_rerank_enabled: bool,
pub project_first_dream_enabled: bool,
pub latest_user_query_present: bool,
pub resolved_project_key: Option<String>,
pub session_notes_status: String,
pub project_memory_index_status: String,
pub relevant_memory_status: String,
pub project_dream_status: String,
pub global_dream_fallback_status: String,
pub dream_source: String,
pub session_topic_count: usize,
pub truncated_session_topic_count: usize,
pub relevant_memory_count: usize,
pub session_note_section_chars: usize,
pub project_memory_index_section_chars: usize,
pub relevant_memory_section_chars: usize,
pub project_dream_section_chars: usize,
pub global_dream_fallback_section_chars: usize,
pub context_pressure_warning_chars: usize,
pub external_memory_section_chars: usize,
}Expand description
Prompt-memory observability summary captured during external-memory injection.
Fields§
§project_prompt_injection_enabled: bool§relevant_recall_enabled: bool§relevant_recall_rerank_enabled: bool§project_first_dream_enabled: bool§latest_user_query_present: bool§resolved_project_key: Option<String>§session_notes_status: String§project_memory_index_status: String§relevant_memory_status: String§project_dream_status: String§global_dream_fallback_status: String§dream_source: String§session_topic_count: usize§truncated_session_topic_count: usize§relevant_memory_count: usize§session_note_section_chars: usize§project_memory_index_section_chars: usize§relevant_memory_section_chars: usize§project_dream_section_chars: usize§global_dream_fallback_section_chars: usize§context_pressure_warning_chars: usize§external_memory_section_chars: usizeTrait Implementations§
Source§impl Clone for PromptMemoryObservability
impl Clone for PromptMemoryObservability
Source§fn clone(&self) -> PromptMemoryObservability
fn clone(&self) -> PromptMemoryObservability
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PromptMemoryObservability
impl Debug for PromptMemoryObservability
Source§impl Default for PromptMemoryObservability
impl Default for PromptMemoryObservability
Source§fn default() -> PromptMemoryObservability
fn default() -> PromptMemoryObservability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PromptMemoryObservability
impl<'de> Deserialize<'de> for PromptMemoryObservability
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PromptMemoryObservability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PromptMemoryObservability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PromptMemoryObservability
impl Serialize for PromptMemoryObservability
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for PromptMemoryObservability
impl StructuralPartialEq for PromptMemoryObservability
Auto Trait Implementations§
impl Freeze for PromptMemoryObservability
impl RefUnwindSafe for PromptMemoryObservability
impl Send for PromptMemoryObservability
impl Sync for PromptMemoryObservability
impl Unpin for PromptMemoryObservability
impl UnsafeUnpin for PromptMemoryObservability
impl UnwindSafe for PromptMemoryObservability
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.