Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/ai/azure-ai-projects/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* Added `sample_agent_insights_on_demand.py` and `sample_agent_insights_scheduled.py` under `samples/agent_insights/` to demonstrate on-demand analysis, insight lifecycle updates, and scheduled monitor setup with temporary external agents, fictional traces, and owned-resource cleanup.
* Added `sample_agent_web_iq.py` under `samples/agents/tools/`, demonstrating a Prompt Agent using the `WebIQPreviewTool`.
* Renamed toolbox tool-search samples `sample_toolboxes_with_search.py` and `sample_toolboxes_with_search_async.py` to `sample_toolbox_with_search.py` and `sample_toolbox_with_search_async.py`.

### Bugs Fixed

Expand Down
2 changes: 1 addition & 1 deletion sdk/ai/azure-ai-projects/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/ai/azure-ai-projects",
"Tag": "python/ai/azure-ai-projects_5c84bd8c06"
"Tag": "python/ai/azure-ai-projects_fe6f9b5bb8"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
DESCRIPTION:
This sample demonstrates how to create an AI agent with Browser Automation capabilities
using the BrowserAutomationPreviewTool and synchronous Azure AI Projects client. The agent can
using the BrowserAutomationTool and synchronous Azure AI Projects client. The agent can
perform automated web browsing tasks and provide responses based on web interactions.

USAGE:
Expand Down Expand Up @@ -34,7 +34,7 @@
from azure.ai.projects import AIProjectClient
from azure.ai.projects.models import (
PromptAgentDefinition,
BrowserAutomationPreviewTool,
BrowserAutomationTool,
BrowserAutomationToolParameters,
BrowserAutomationToolConnectionParameters,
)
Expand All @@ -45,8 +45,8 @@
agent_name = os.environ.get("FOUNDRY_AGENT_NAME") or "MyAgent"


tool = BrowserAutomationPreviewTool(
browser_automation_preview=BrowserAutomationToolParameters(
tool = BrowserAutomationTool(
browser_automation=BrowserAutomationToolParameters(
connection=BrowserAutomationToolConnectionParameters(
project_connection_id=os.environ["BROWSER_AUTOMATION_PROJECT_CONNECTION_ID"],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'project_client.toolboxes'.

USAGE:
python sample_toolboxes_with_search.py
python sample_toolbox_with_search.py

Before running the sample:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'project_client.toolboxes'.

USAGE:
python sample_toolboxes_with_search_async.py
python sample_toolbox_with_search_async.py

Before running the sample:

Expand Down