pub struct JudgeConfig {
pub model: String,
pub double_score: bool,
pub rubric: String,
pub required_fields: Vec<String>,
}Expand description
LLM-as-judge configuration.
Fields§
§model: StringDefault judge model. Overridable via --judge-model.
double_score: boolRun the judge twice per transcript for inter-rater reliability.
rubric: StringRubric prompt. The judge receives this plus the transcript.
required_fields: Vec<String>Fields the judge MUST populate in its JSON response.
Trait Implementations§
Source§impl Clone for JudgeConfig
impl Clone for JudgeConfig
Source§fn clone(&self) -> JudgeConfig
fn clone(&self) -> JudgeConfig
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 JudgeConfig
impl Debug for JudgeConfig
Source§impl<'de> Deserialize<'de> for JudgeConfig
impl<'de> Deserialize<'de> for JudgeConfig
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
Auto Trait Implementations§
impl Freeze for JudgeConfig
impl RefUnwindSafe for JudgeConfig
impl Send for JudgeConfig
impl Sync for JudgeConfig
impl Unpin for JudgeConfig
impl UnsafeUnpin for JudgeConfig
impl UnwindSafe for JudgeConfig
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