pub struct AiPolicy {
pub embed: Option<EmbedPolicy>,
pub moderate: Option<ModeratePolicy>,
pub vision: Option<VisionPolicy>,
}Expand description
Per-collection AI policy declared via DDL WITH (...) (PRD #1267,
issue #1271). Each modality block is optional; an absent block means
the collection opts out of that modality. Persisted in the
CollectionContract (versioned/migrated with the schema) and surfaced
via introspection.
This slice carries the declaration only — no enrichment/gating behaviour. Provider/model capability validation against the matrix (#1269) happens at DDL execution time in the server, where the capability registry lives.
Fields§
§embed: Option<EmbedPolicy>EMBED (...) — which fields embed into which provider/model.
moderate: Option<ModeratePolicy>MODERATE (...) — content moderation gate.
vision: Option<VisionPolicy>VISION (...) — image-reference understanding.
Implementations§
Trait Implementations§
impl StructuralPartialEq for AiPolicy
Auto Trait Implementations§
impl Freeze for AiPolicy
impl RefUnwindSafe for AiPolicy
impl Send for AiPolicy
impl Sync for AiPolicy
impl Unpin for AiPolicy
impl UnsafeUnpin for AiPolicy
impl UnwindSafe for AiPolicy
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request