pub struct AgentFeedbackSummary {
pub agent_id: String,
pub upvotes: u64,
pub downvotes: u64,
pub flags: u64,
pub total_feedback: u64,
pub health_score: f32,
}Expand description
Response from GET /v1/agents/{id}/feedback/summary
Fields§
§agent_id: String§upvotes: u64§downvotes: u64§flags: u64§total_feedback: u64§health_score: f32Weighted-average importance across all non-expired memories (0.0–1.0).
Trait Implementations§
Source§impl Debug for AgentFeedbackSummary
impl Debug for AgentFeedbackSummary
Auto Trait Implementations§
impl Freeze for AgentFeedbackSummary
impl RefUnwindSafe for AgentFeedbackSummary
impl Send for AgentFeedbackSummary
impl Sync for AgentFeedbackSummary
impl Unpin for AgentFeedbackSummary
impl UnsafeUnpin for AgentFeedbackSummary
impl UnwindSafe for AgentFeedbackSummary
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