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
The Azure AI Agent Service also supports the following models from the Azure AI Foundry model catalog.
39
39
40
40
* Llama 3.1-70B-instruct
41
41
* Mistral-large-2407
42
42
* Cohere command R+
43
43
44
-
To use these models, you can use Azure AI Foundry portal to make a deployment, and then reference it in your agent.
45
-
46
-
1. Go to the [Azure AI Foundry portal](https://ai.azure.com/) and select **Model catalog** in the left navigation menu, and scroll down to **Meta-Llama-3-70B-Instruct**. You can also find and use one of the models listed previously.
47
-
48
-
1. Select **Deploy**.
49
-
50
-
1. In the Deployment options screen that appears, select **Serverless API** with Azure AI Content Safety.
51
-
52
-
:::image type="content" source="../media/llama/llama-deployment.png" alt-text="An image of the llama model project selection screen.":::
53
-
54
-
1. Select your project and then select **Subscribe and deploy**.
55
-
56
-
:::image type="content" source="../media/llama/llama-deployment-2.png" alt-text="An image of the llama model deployment screen.":::
57
-
58
-
1. Add the serverless connection to your hub/project. The deployment name you choose is the one that you reference in your code.
59
-
60
-
1. When calling agent creation API, set the `models` parameter to your deployment name. For example:
61
-
62
-
# [Python](#tab/python)
63
-
64
-
```python
65
-
agent = project_client.agents.create_agent( model="llama-3", name="my-agent", instructions="You are a helpful agent" )
Copy file name to clipboardExpand all lines: articles/ai-services/agents/how-to/tools/openapi-spec.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ work together, generate client code, create tests, apply design standards, and m
35
35
36
36
## Authenticating with API Key
37
37
38
-
1. Verify that the OpenAPI spec supports API keys: it has `securitySchemes` section and has one scheme of type `apiKey". An example would be:
38
+
1. Verify that the OpenAPI spec supports API keys: it has `securitySchemes` section and has one scheme of type `apiKey`. For example:
39
39
```json
40
40
"securitySchemes": {
41
41
"apiKeyHeader": {
@@ -56,7 +56,7 @@ work together, generate client code, create tests, apply design standards, and m
56
56
57
57
1. Select **+ new connection** in the settings page.
58
58
>[!NOTE]
59
-
> If you re-generate the API key at a later date, you need to update the connection with the new key.
59
+
> If you regenerate the API key at a later date, you need to update the connection with the new key.
60
60
61
61
:::image type="content" source="../../media/tools/bing/project-connections.png" alt-text="A screenshot of the connections screen for the AI project." lightbox="../../media/tools/bing/project-connections.png":::
62
62
@@ -138,7 +138,7 @@ public partial class Sample_Agent_OpenAPI : SamplesBase<AIProjectsTestEnvironmen
Copy file name to clipboardExpand all lines: articles/ai-services/agents/whats-new.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ This article provides a summary of the latest releases and major documentation u
22
22
Azure AI Service is now available in preview. The service builds off of the [Assistants API](../openai/how-to/assistant.md) in Azure OpenAI, and offers several additional features, such as:
23
23
24
24
* Several [additional tools](./how-to/tools/overview.md) to enhance your AI agents' functionality, such as the ability to use Bing and as a knowledge source and call functions.
25
-
* The ability to use non Azure OpenAI [models](./concepts/model-region-support.md#more-models):
25
+
* The ability to use non Azure OpenAI [models](./concepts/model-region-support.md):
0 commit comments