Skip to main content

ImageAnalysisTask

Struct ImageAnalysisTask 

Source
pub struct ImageAnalysisTask { /* private fields */ }
Expand description

The scene-analysis task. Construct via ImageAnalysisTask::new.

Implementations§

Source§

impl ImageAnalysisTask

Source

pub fn new() -> Self

Construct with accept_empty = false (a payload that lacks the required indexable content — description AND tags both populated, OR at least one of the substantive detection buckets subjects / objects / actions non-empty — is treated as a model regression and rejected; see Self::with_accept_empty for the full predicate and the opt-in alternative).

Source

pub const fn accept_empty(&self) -> bool

Returns whether the parser accepts payloads that lack the required indexable content (description AND tags both non-empty). See Self::with_accept_empty for the trade-off.

Source

pub const fn with_accept_empty(self, val: bool) -> Self

Builder-style setter for accept_empty.

When false (default), the parser rejects payloads that lack the required indexable content as JsonParseError::NoUsableFields. The composite threshold accepts a payload when either:

  • description AND tags are both populated (the prose + keyword path; matches the integration-test smoke criterion), OR
  • at least one of the substantive detection buckets — subjects, objects, or actions — is non-empty (the substantive-detection path; preserves who/what/where search metadata even when the model fails to summarize).

Style/attribute buckets (mood, lighting) and single-label fields (scene, shot_type) are intentionally NOT in the substantive path. A payload like lighting: ["natural light"] or mood: ["calm"] alone (description and tags empty, no substantive detections) is more often a regression than a legitimate weak-but-real scene; rejecting it surfaces the failure instead of writing a single-attribute stub to the search index.

Tags-only, scene-only, description-only, shot_type-only, mood/lighting-only, and fully-empty payloads all fail both paths and are rejected. This is the right setting for indexing pipelines: it surfaces decoder/model regressions that would otherwise silently overwrite real metadata with sparse search records.

When true, the parser bypasses the indexable-content check and returns whatever round-trips through the schema. IMAGE_ANALYSIS_PROMPT explicitly tells the model to “Use empty arrays or empty strings when a field is unknown”, so on truly low-information frames (blank, fade-to-black, plain color) compliant model output can legitimately be sparse or fully-empty. Use this knob if your pipeline distinguishes “low-information scene” from “no useful content” via something other than the parser (e.g. scenesdetect’s keyframe scoring).

Source

pub const fn set_accept_empty(&mut self, val: bool) -> &mut Self

In-place setter for accept_empty. See Self::with_accept_empty for the trade-off.

Trait Implementations§

Source§

impl Clone for ImageAnalysisTask

Source§

fn clone(&self) -> ImageAnalysisTask

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for ImageAnalysisTask

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Task for ImageAnalysisTask

Source§

type Output = ImageAnalysis

The typed result of a successful run.
Source§

type Value = Value

The schema/grammar value the Task carries. Typically: Read more
Source§

type ParseError = JsonParseError

The error type returned by Task::parse. JSON-parsing Tasks typically use crate::JsonParseError (behind the json feature).
Source§

fn prompt(&self) -> &str

The user-message prompt sent alongside the images.
Source§

fn schema(&self) -> &Value

Borrow the schema/grammar value. Zero-cost typed access for engines that bind Task::Value to a concrete type. Engines that need a unified Grammar enum should call Task::grammar instead. Read more
Source§

fn grammar(&self) -> Grammar

Constrained-decoding grammar for this task, wrapped in the engine-agnostic Grammar enum. Read more
Source§

fn parse(&self, raw: &str) -> Result<Self::Output, JsonParseError>

Parse the model’s raw text output into a typed Output.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more