mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
Better than using SecretStr | None so we centralize the null handling. Signed-off-by: Sébastien Han <seb@redhat.com>
24 lines
595 B
Text
24 lines
595 B
Text
---
|
|
description: "Bing Search tool for web search capabilities using Microsoft's search engine."
|
|
sidebar_label: Remote - Bing-Search
|
|
title: remote::bing-search
|
|
---
|
|
|
|
# remote::bing-search
|
|
|
|
## Description
|
|
|
|
Bing Search tool for web search capabilities using Microsoft's search engine.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `api_key` | `<class 'pydantic.types.SecretStr'>` | No | | The Bing API key |
|
|
| `top_k` | `<class 'int'>` | No | 3 | |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
api_key: ${env.BING_API_KEY:}
|
|
```
|