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

# Internet Search

> Let your PAL answer questions with real-time web search.

The `internet_search` skill lets the PAL answer questions with up-to-date information from the web. With the skill attached, the PAL searches in real time during the conversation instead of being limited to its training data and your [Knowledge Base](/sections/conversational-video-interface/knowledge-base) documents.

## How it works

With the skill attached, the PAL runs a web search on every turn and the results are automatically injected into the conversation context so it can ground its response in the latest information.

## Configuration

None - `internet_search` is a pure on/off toggle. Attaching it enables real-time search on every conversation the PAL has.

## Attach

```bash theme={null}
curl --request PUT \
  --url https://tavusapi.com/v2/pals/{pal_id}/skills/internet_search \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
```

The skill is active on the PAL's next conversation. To turn it off, detach it:

```bash theme={null}
curl --request DELETE \
  --url https://tavusapi.com/v2/pals/{pal_id}/skills/internet_search \
  --header 'x-api-key: <api-key>'
```

See [Skills Overview](/sections/conversational-video-interface/skills/overview) for how attachments work and the full [API reference](/api-reference/pal-skills/attach-skill-to-pal).
