pub struct WebSearchTool {
pub type_: WebSearchToolType,
pub filters: Option<Filters>,
pub search_context_size: Option<WebSearchToolSearchContextSize>,
pub user_location: Option<UserLocation>,
}Expand description
Search the Internet for sources related to the prompt.
Fields§
§type_: WebSearchToolTypeThe type of the web search tool.
filters: Option<Filters>Filters for the search.
search_context_size: Option<WebSearchToolSearchContextSize>High level guidance for the amount of context window space to use for the
user_location: Option<UserLocation>The approximate location of the user.
Trait Implementations§
Source§impl Clone for WebSearchTool
impl Clone for WebSearchTool
Source§fn clone(&self) -> WebSearchTool
fn clone(&self) -> WebSearchTool
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 WebSearchTool
impl Debug for WebSearchTool
Source§impl<'de> Deserialize<'de> for WebSearchTool
impl<'de> Deserialize<'de> for WebSearchTool
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 WebSearchTool
impl RefUnwindSafe for WebSearchTool
impl Send for WebSearchTool
impl Sync for WebSearchTool
impl Unpin for WebSearchTool
impl UnsafeUnpin for WebSearchTool
impl UnwindSafe for WebSearchTool
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