pub struct VisionJudgeRecord {
pub provider: String,
pub model: Option<String>,
pub observations: Option<Vec<String>>,
}Expand description
Identity and self-reported basis of the vision judge that completed a
vision-channel evaluation. Evidence honesty for a pluggable judge:
once the model behind the vision channel is swappable, a verdict
that does not say which model answered — and on what facts it says
it based the answer — cannot be audited, compared across deployments,
or meaningfully re-judged offline.
Fields§
§provider: StringThe verifier implementation family, e.g. anthropic /
openai-compat.
model: Option<String>The model id the verifier requested, when it has one.
observations: Option<Vec<String>>The judge’s self-reported observations: the on-screen facts it listed before answering (the look-then-judge answer protocol). Self-reported — checkable against the archived screenshot, not independently attested. Absent when the model listed none.
Trait Implementations§
Source§impl Clone for VisionJudgeRecord
impl Clone for VisionJudgeRecord
Source§fn clone(&self) -> VisionJudgeRecord
fn clone(&self) -> VisionJudgeRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VisionJudgeRecord
impl Debug for VisionJudgeRecord
Source§impl<'de> Deserialize<'de> for VisionJudgeRecord
impl<'de> Deserialize<'de> for VisionJudgeRecord
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 JsonSchema for VisionJudgeRecord
impl JsonSchema for VisionJudgeRecord
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for VisionJudgeRecord
impl PartialEq for VisionJudgeRecord
Source§impl Serialize for VisionJudgeRecord
impl Serialize for VisionJudgeRecord
impl StructuralPartialEq for VisionJudgeRecord
Auto Trait Implementations§
impl Freeze for VisionJudgeRecord
impl RefUnwindSafe for VisionJudgeRecord
impl Send for VisionJudgeRecord
impl Sync for VisionJudgeRecord
impl Unpin for VisionJudgeRecord
impl UnsafeUnpin for VisionJudgeRecord
impl UnwindSafe for VisionJudgeRecord
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