llama-stack-mirror/docs/docs/providers/tool_runtime/remote_bing-search.mdx
Sébastien Han 4af141292f
chore: use empty SecretStr values as default
Better than using SecretStr | None so we centralize the null handling.

Signed-off-by: Sébastien Han <seb@redhat.com>
2025-09-29 09:55:00 +02:00

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:}
```