/install azure-bing-grounding
Azure Bing Grounding
Use the bundled Python script to perform grounded searches using Azure Foundry's Agent Service and the Bing Grounding Search Tool.
Requirements
-
Required Python packages:
pip install azure-identity azure-ai-agents -
Authentication:
- Ensure Azure CLI is logged in (
az login), OR - Set Azure Service Principal / Managed Identity credentials compatible with
DefaultAzureCredentialorClientSecretCredential.
- Ensure Azure CLI is logged in (
-
Environment Variables: Add the following to your
~/.openclaw/.envfile or export them in your shell:# Your Azure AI Foundry project endpoint FOUNDRY_PROJECT_ENDPOINT="https://\x3Cyour-resource>.ai.azure.com/api/projects/\x3Cyour-project>" # The ID of the Bing Grounding connection in your Azure AI Foundry Project BING_PROJECT_CONNECTION_ID="\x3Cyour-connection-id>" # Default model deployment name (optional, defaults to gpt-4o) FOUNDRY_MODEL_DEPLOYMENT_NAME="gpt-4o" # (Optional) Service Principal Credentials if not using DefaultAzureCredential AZURE_TENANT_ID="\x3Ctenant-id>" AZURE_CLIENT_ID="\x3Cclient-id>" AZURE_CLIENT_SECRET="\x3Cclient-secret>"
Commands
Run from the OpenClaw workspace:
# Raw JSON output (default)
python3 {baseDir}/scripts/bing_grounding.py --query "What is the latest AI news today?"
# Markdown human-readable output
python3 {baseDir}/scripts/bing_grounding.py --query "What is the latest AI news today?" --format md
# Use a specific model deployment (default is gpt-4o)
python3 {baseDir}/scripts/bing_grounding.py --query "Weather in Seattle?" --model "gpt-4o-mini"
Output
Returns a generated response synthesized by the Azure AI Agent based on Bing Search results, along with the source URL citations.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install azure-bing-grounding - 安装完成后,直接呼叫该 Skill 的名称或使用
/azure-bing-grounding触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Azure Bing Grounding 是什么?
Web search grounding via Azure Foundry and Bing Grounding Search tool. Use when the user needs up-to-date information searched from the web via Azure AI Agen... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 92 次。
如何安装 Azure Bing Grounding?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install azure-bing-grounding」即可一键安装,无需额外配置。
Azure Bing Grounding 是免费的吗?
是的,Azure Bing Grounding 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Azure Bing Grounding 支持哪些平台?
Azure Bing Grounding 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Azure Bing Grounding?
由 BoWang306(@bowang306)开发并维护,当前版本 v1.0.0。