pub enum MonitoringScope {
Hybrid,
InputOnly,
OutputOnly,
}Expand description
Controls which parts of an LLM interaction are stored/queried for a tenant.
Variants§
Hybrid
Store both prompt and response (default).
InputOnly
Store prompt only (do not store response).
OutputOnly
Store response only (do not store prompt).
Trait Implementations§
Source§impl Clone for MonitoringScope
impl Clone for MonitoringScope
Source§fn clone(&self) -> MonitoringScope
fn clone(&self) -> MonitoringScope
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 ComposeSchema for MonitoringScope
impl ComposeSchema for MonitoringScope
Source§impl Debug for MonitoringScope
impl Debug for MonitoringScope
Source§impl Default for MonitoringScope
impl Default for MonitoringScope
Source§fn default() -> MonitoringScope
fn default() -> MonitoringScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringScope
impl<'de> Deserialize<'de> for MonitoringScope
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MonitoringScope
impl Display for MonitoringScope
Source§impl FromStr for MonitoringScope
impl FromStr for MonitoringScope
Source§impl PartialEq for MonitoringScope
impl PartialEq for MonitoringScope
Source§impl Serialize for MonitoringScope
impl Serialize for MonitoringScope
Source§impl ToSchema for MonitoringScope
impl ToSchema for MonitoringScope
impl Copy for MonitoringScope
impl Eq for MonitoringScope
impl StructuralPartialEq for MonitoringScope
Auto Trait Implementations§
impl Freeze for MonitoringScope
impl RefUnwindSafe for MonitoringScope
impl Send for MonitoringScope
impl Sync for MonitoringScope
impl Unpin for MonitoringScope
impl UnsafeUnpin for MonitoringScope
impl UnwindSafe for MonitoringScope
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.