> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Web Search Call • Rust AI Agent SDK

> WebSearchCall: Represents a web search call made during research

# WebSearchCall

> Defined in the [**extras**](../modules/extras) module.

<Badge color="orange">Rust AI Agent SDK</Badge>

Represents a web search call made during research

## Fields

| Name     | Type     | Description          |
| -------- | -------- | -------------------- |
| `query`  | `String` | The search query     |
| `status` | `String` | Status of the search |

## Methods

### `new`

```rust theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
fn new(query: impl Into<String>, status: impl Into<String>) -> Self
```

Create a new web search call

**Parameters:**

| Name     | Type                      |
| -------- | ------------------------- |
| `query`  | `impl Into&lt;String&gt;` |
| `status` | `impl Into&lt;String&gt;` |

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-rust/praisonai/src/parity/extras.rs#L73">
  `praisonai/src/parity/extras.rs` at line 73
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Rust Web" icon="globe" href="/docs/rust/web" />

  <Card title="Rust Web Search" icon="search" href="/docs/rust/web-search" />

  <Card title="Rust Query" icon="magnifying-glass" href="/docs/rust/query" />
</CardGroup>
