pub enum ToolDeliveryMode {
Full,
Deferred,
NamesOnly,
}Expand description
How tools are delivered to the LLM in the prompt.
Controls the tradeoff between prompt size and tool discoverability:
Full: All tools get full schemas (classic behavior, largest prompt)Deferred: Core tools get full schemas; others are name+description onlyNamesOnly: Maximum savings — only core tools have schemas
Variants§
Full
All tools get full schemas in the prompt.
Deferred
Core tools get full schemas; others get name+description only (default).
NamesOnly
Only tool names are listed. Model must use tool_search for everything
except core tools. Maximum context savings.
Trait Implementations§
Source§impl Clone for ToolDeliveryMode
impl Clone for ToolDeliveryMode
Source§fn clone(&self) -> ToolDeliveryMode
fn clone(&self) -> ToolDeliveryMode
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 ToolDeliveryMode
impl Debug for ToolDeliveryMode
Source§impl Default for ToolDeliveryMode
impl Default for ToolDeliveryMode
Source§fn default() -> ToolDeliveryMode
fn default() -> ToolDeliveryMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolDeliveryMode
impl<'de> Deserialize<'de> for ToolDeliveryMode
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 ToolDeliveryMode
impl JsonSchema for ToolDeliveryMode
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 ToolDeliveryMode
impl PartialEq for ToolDeliveryMode
Source§impl Serialize for ToolDeliveryMode
impl Serialize for ToolDeliveryMode
impl StructuralPartialEq for ToolDeliveryMode
Auto Trait Implementations§
impl Freeze for ToolDeliveryMode
impl RefUnwindSafe for ToolDeliveryMode
impl Send for ToolDeliveryMode
impl Sync for ToolDeliveryMode
impl Unpin for ToolDeliveryMode
impl UnsafeUnpin for ToolDeliveryMode
impl UnwindSafe for ToolDeliveryMode
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