pub struct WebSearchOptions {
pub search_context_size: Option<WebSearchContextSize>,
pub user_location: Option<WebSearchUserLocation>,
}
Expand description
Options for the web search tool.
Fields§
§search_context_size: Option<WebSearchContextSize>
High level guidance for the amount of context window space to use for the search. One of low
, medium
, or high
. medium
is the default.
user_location: Option<WebSearchUserLocation>
Approximate location parameters for the search.
Trait Implementations§
Source§impl Clone for WebSearchOptions
impl Clone for WebSearchOptions
Source§fn clone(&self) -> WebSearchOptions
fn clone(&self) -> WebSearchOptions
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 WebSearchOptions
impl Debug for WebSearchOptions
Source§impl Default for WebSearchOptions
impl Default for WebSearchOptions
Source§fn default() -> WebSearchOptions
fn default() -> WebSearchOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebSearchOptions
impl<'de> Deserialize<'de> for WebSearchOptions
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 WebSearchOptions
impl PartialEq for WebSearchOptions
Source§impl Serialize for WebSearchOptions
impl Serialize for WebSearchOptions
impl StructuralPartialEq for WebSearchOptions
Auto Trait Implementations§
impl Freeze for WebSearchOptions
impl RefUnwindSafe for WebSearchOptions
impl Send for WebSearchOptions
impl Sync for WebSearchOptions
impl Unpin for WebSearchOptions
impl UnwindSafe for WebSearchOptions
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