Skip to content

Commit 3b525ba

Browse files
committed
2 parents 27bc158 + 6c76281 commit 3b525ba

File tree

11 files changed

+20
-8
lines changed

11 files changed

+20
-8
lines changed

samples/microsoft/infrastructure-setup/41-standard-agent-setup/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
See Instructions: https://microsoft-my.sharepoint.com/:w:/p/fosteramanda/ES-0A2WpCgVLrK3SH_7gT9YBBb8SZk639kKmU1AIpoeDJg?e=npAZWP
88

9-
9+
[![Deploy To Azure](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/deploytoazure.svg?sanitize=true)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fazure-ai-foundry%2Ffoundry-samples%2Frefs%2Fheads%2Fmain%2Fsamples%2Fmicrosoft%2Finfrastructure-setup%2F41-standard-agent-setup%2Fazuredeploy.json)
1010
1. Create new (or use existing) resource group:
1111

1212
```bash

samples/microsoft/javascript/mslearn-resources/quickstart/src/quickstart.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { DefaultAzureCredential } from '@azure/identity';
22
import { AIProjectClient } from '@azure/ai-projects';
33
import { AgentsClient } from '@azure/ai-agents';
44
import { config } from 'dotenv';
5-
config();
5+
config();
66

77
async function chatCompletion() {
88
// <chat_completion>
@@ -19,7 +19,7 @@ async function chatCompletion() {
1919
{ role: "user", content: "Write me a poem about flowers" },
2020
],
2121
});
22-
22+
2323
console.log("response = ", JSON.stringify(chatCompletion, null, 2));
2424
// </chat_completion>
2525
}
@@ -63,6 +63,12 @@ async function runAgent() {
6363
await client.deleteAgent(agent.id);
6464
console.log(`Deleted Agent, Agent ID: ${agent.id}`);
6565
// </create_and_run_agent>
66+
67+
// <create_filesearch_agent>
68+
69+
// Create the file search agent
70+
71+
// </create_filesearch_agent>
6672
}
6773

6874
runAgent().catch(console.error);

samples/microsoft/python/getting-started-agents/3p-tools/PartnerContributingGuide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# 3p Tool Partner Contributing Guide
22

33
## Who should read this?
4-
This contributing guide is designed for partners who want to bring their APIs as part of the **Azure AI Foundry Tool Catalog** so that customers can integrate your APIs with Azure AI Agent service through a tool to retrieve data or integrating with a workflow.
4+
This contributing guide is designed for partners who want to bring their APIs as part of the **Azure AI Agent Service non-Microsoft tools** so that customers can integrate your APIs with Azure AI Agent service through a tool to retrieve data or integrating with a workflow.
55

6-
## Prepare your PR
6+
## Prepare your Pull Request (PR)
77
Your PR needs to create a new folder with the tool name and include the following information:
88
- `README.md` (required): follow this [template](./README_template_for_parter.md) as an example and this README file will serve as public documentation for help customers set up and use the tool with your API through Azure AI Agent service
99
- The name, logo, and description in this README file will be used in the Azure AI Foundry Portal user experience and marketing materials.

samples/microsoft/python/getting-started-agents/3p-tools/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# Connect with partner-authored tools in Azure AI Agent Service
1+
# Connect with non-Microsoft tools in Azure AI Agent Service
22

33
## Overview
4-
The tool catalog in Azure AI Foundry portal is the hub to discover and use a wide range of tools for building AI agents with Azure AI Agent Service. The tool catalog features tools for extending your agents' abilities using hosted tools, and ones offered from partners such as Tripadvisor, and Morningstar. You can discover all tools offered by **partners** in this folder.
4+
To empower your AI agent with grounded data or the capability to take actions and automating workflows, the Foundry Agent service provides a wide range of built-in tools, such as Grounding with Bing Search, Azure AI Search, Azure Logic Apps, as well as third-party parter tools, such as Tripadvisor. This page is designed to provide an overview of tools provided in the AI Agent Service.
5+
6+
The following tools are authored by **third-party partners**. Use the links below to view the documentation and code samples.
57

68
> [!IMPORTANT]
79
> * Your use of connected non-Microsoft services is subject to the terms between you and the service provider. By connecting to a non-Microsoft service, you acknowledge that some of your data, such as prompt content, is passed to the non-Microsoft service, and/or your application might receive data from the non-Microsoft service. You're responsible for your use of non-Microsoft data.
8-
> * Using tools from tool catalog may incur usage with tool providers, review the pricing plan with your selected tool data providers.
10+
> * Using tools from non-Microsoft tools may incur usage with tool providers, review the pricing plan with your selected tool data providers.
911
> * Code samples and OpenAPI spec are provided by partners as-is. **need help from CELA to rewrite this**
1012
1113
## Get Started
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)