WebSearch

Struct WebSearch 

Source
pub struct WebSearch {
    pub search_engine: SearchEngine,
    pub enable: Option<bool>,
    pub search_query: Option<String>,
    pub search_intent: Option<bool>,
    pub count: Option<u32>,
    pub search_domain_filter: Option<String>,
    pub search_recency_filter: Option<SearchRecencyFilter>,
    pub content_size: Option<ContentSize>,
    pub result_sequence: Option<ResultSequence>,
    pub search_result: Option<bool>,
    pub require_search: Option<bool>,
    pub search_prompt: Option<String>,
}
Expand description

This structure represents a web search tool that can perform internet searches. Fields mirror the external web_search schema.

Fields§

§search_engine: SearchEngine

Search engine type (required). Supported: search_std, search_pro, search_pro_sogou, search_pro_quark.

§enable: Option<bool>

Whether to enable web search. Default is false.

§search_query: Option<String>

Force-triggered search query string.

§search_intent: Option<bool>

Whether to perform search intent detection. true: execute only when intent is detected; false: skip detection and search directly.

§count: Option<u32>

Number of results to return (1-50).

§search_domain_filter: Option<String>

Whitelist domain filter, e.g., “www.example.com”.

§search_recency_filter: Option<SearchRecencyFilter>

Time range filter.

§content_size: Option<ContentSize>

Snippet summary size: medium or high.

§result_sequence: Option<ResultSequence>

Return sequence for search results: before or after.

§search_result: Option<bool>

Whether to include detailed search source information.

§require_search: Option<bool>

Whether an answer requires search results to be returned.

§search_prompt: Option<String>

Custom prompt to post-process search results.

Implementations§

Source§

impl WebSearch

Source

pub fn new(search_engine: SearchEngine) -> Self

Create a WebSearch config with the required search engine; other fields are optional.

Source

pub fn with_enable(self, enable: bool) -> Self

Enable or disable web search.

Source

pub fn with_search_query(self, query: impl Into<String>) -> Self

Set a forced search query.

Source

pub fn with_search_intent(self, search_intent: bool) -> Self

Set search intent detection behavior.

Source

pub fn with_count(self, count: u32) -> Self

Set results count (1-50).

Source

pub fn with_search_domain_filter(self, domain: impl Into<String>) -> Self

Restrict to a whitelist domain.

Source

pub fn with_search_recency_filter(self, filter: SearchRecencyFilter) -> Self

Set time range filter.

Source

pub fn with_content_size(self, size: ContentSize) -> Self

Set content size.

Source

pub fn with_result_sequence(self, seq: ResultSequence) -> Self

Set result sequence.

Source

pub fn with_search_result(self, enable: bool) -> Self

Toggle returning detailed search source info.

Require search results for answering.

Source

pub fn with_search_prompt(self, prompt: impl Into<String>) -> Self

Set a custom prompt to post-process search results.

Trait Implementations§

Source§

impl Clone for WebSearch

Source§

fn clone(&self) -> WebSearch

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WebSearch

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for WebSearch

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Validate for WebSearch

Source§

impl<'v_a> ValidateArgs<'v_a> for WebSearch

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,