You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Invoke an OpenAPI App Service web app from Azure AI Agent Service
13
13
14
-
[Azure AI Agent Service](https://learn.microsoft.com/azure/ai-services/agents/overview) allows you to create AI agents tailored to your needs through custom instructions and augmented by advanced tools like code interpreter, and custom functions. You can now connect your Azure AI Agent to an external API using an [OpenAPI 3.0](https://www.openapis.org/what-is-openapi) specified tool, allowing for scalable interoperability with various applications. In the following tutorial, you're using an Azure AI Agent to invoke an API hosted on Azure App Service.
14
+
[Azure AI Agent Service](https://learn.microsoft.com/azure/ai-services/agents/overview) allows you to create AI agents tailored to your needs through custom instructions and augmented by advanced tools like code interpreter, and custom functions. You can now connect your Azure AI Agent to an external API using an [OpenAPI 3.0](https://www.openapis.org/what-is-openapi) specified tool, allowing for scalable interoperability with various applications.
15
+
16
+
Azure App Service is a fully managed platform for building, deploying, and scaling web apps and APIs. If your API is hosted on Azure App Service, you can connect your AI Agent to the API using the OpenAPI specification. The OpenAPI specification defines the API and how to interact with it. You can then use natural language to invoke the API through your AI Agent.
17
+
18
+
In the following tutorial, you're using an Azure AI Agent to invoke an API hosted on Azure App Service.
15
19
16
20
## Prerequisites
17
21
@@ -344,14 +348,13 @@ Now that you have the required infrastructure, you can put it all together and s
344
348
# Create Auth object for the OpenApiTool (note that connection or managed identity auth setup requires additional setup in Azure)
345
349
auth = OpenApiAnonymousAuthDetails()
346
350
347
-
# Initialize agent OpenAPI tool using the read in OpenAPI spec
0 commit comments