pub struct ModelPolicy {
pub provider: Option<String>,
pub model: Option<String>,
pub model_tier: Option<String>,
pub temperature: Option<f64>,
pub max_tokens: Option<i64>,
pub max_iterations: Option<usize>,
pub max_nudges: Option<usize>,
pub nudge: Option<String>,
pub tool_examples: Option<String>,
pub post_turn_callback: Option<EqIgnored<VmValue>>,
}Fields§
§provider: Option<String>§model: Option<String>§model_tier: Option<String>§temperature: Option<f64>§max_tokens: Option<i64>§max_iterations: Option<usize>Maximum agent_loop iterations for this stage. Overrides the default 16.
max_nudges: Option<usize>Maximum consecutive text-only (no tool call) responses before declaring stuck.
nudge: Option<String>Custom nudge message injected when the model produces text without tool calls. If omitted, the VM uses a generic “Continue — use a tool call” message.
tool_examples: Option<String>Few-shot tool-call examples injected into the tool contract prompt, shown before the tool schema listing. Pipelines provide these — the VM has no hardcoded tool names.
post_turn_callback: Option<EqIgnored<VmValue>>Optional Harn closure called after each tool-calling turn. Receives turn metadata; returns an optional user message to inject. Wrapped in EqIgnored so it doesn’t affect PartialEq derivation.
Trait Implementations§
Source§impl Clone for ModelPolicy
impl Clone for ModelPolicy
Source§fn clone(&self) -> ModelPolicy
fn clone(&self) -> ModelPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 ModelPolicy
impl Debug for ModelPolicy
Source§impl Default for ModelPolicy
impl Default for ModelPolicy
Source§fn default() -> ModelPolicy
fn default() -> ModelPolicy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPolicywhere
ModelPolicy: Default,
impl<'de> Deserialize<'de> for ModelPolicywhere
ModelPolicy: Default,
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 PartialEq for ModelPolicy
impl PartialEq for ModelPolicy
Source§impl Serialize for ModelPolicy
impl Serialize for ModelPolicy
impl StructuralPartialEq for ModelPolicy
Auto Trait Implementations§
impl Freeze for ModelPolicy
impl !RefUnwindSafe for ModelPolicy
impl !Send for ModelPolicy
impl !Sync for ModelPolicy
impl Unpin for ModelPolicy
impl UnsafeUnpin for ModelPolicy
impl !UnwindSafe for ModelPolicy
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