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

# Trip Planning - Tools

> Configure tools for fetching weather and attraction data

### 2. Tools Configuration

Next, we define the external tools our task will use:

```yaml theme={"dark"}
- name: weather
  type: integration
  integration:
    provider: weather
    setup:
      openweathermap_api_key: YOUR_OPENWEATHERMAP_API_KEY

- name: internet_search
  type: integration
  integration:
    provider: brave
    setup:
      brave_api_key: "YOUR_BRAVE_API_KEY"
```

We're using two integrations:

* The `weather` integration to fetch current weather conditions
* The `brave` search integration to find tourist attractions

## Next Step

* [Workflow Steps](./trip-planning-workflow)

## Related Concepts

* [Tools](/concepts/tools)
