pub struct LlmFallback {
pub judge_target: LlmTarget,
pub config: TaskClassifierConfig,
}Expand description
The capability judge a stage router falls through to.
Fields§
§judge_target: LlmTargetTarget the judge model is called through. It is not a routing destination, so it does not belong in the router’s target set.
config: TaskClassifierConfigJudge configuration. recent_turn_window is worth setting to this router’s
recent_window so the judge reads the same span the signal scorer scored.
Note: session_affinity and message_hash_fallback have no effect here —
the judge runs as a cascade classifier, not a standalone algorithm.
Auto Trait Implementations§
impl Freeze for LlmFallback
impl !RefUnwindSafe for LlmFallback
impl Send for LlmFallback
impl Sync for LlmFallback
impl Unpin for LlmFallback
impl UnsafeUnpin for LlmFallback
impl !UnwindSafe for LlmFallback
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