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
2 changes: 1 addition & 1 deletion cli/azd/cmd/testdata/TestFigSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ const completionSpec: Fig.Spec = {
},
{
name: ['--protocol'],
description: 'Protocols supported by the agent (e.g., \'responses\', \'invocations\'). Can be specified multiple times.',
description: 'Protocols supported by the agent (responses, invocations, invocations_ws, activity). Can be specified multiple times.',
isRepeatable: true,
args: [
{
Expand Down
86 changes: 86 additions & 0 deletions cli/azd/extensions/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -5563,6 +5563,92 @@
"version": "~1.0.0-beta.1"
}
]
},
{
"version": "1.0.0-beta.7",
"requiredAzdVersion": ">=1.27.1",
"capabilities": [
"custom-commands",
"lifecycle-events",
"mcp-server",
"service-target-provider",
"metadata"
],
"providers": [
{
"name": "azure.ai.agent",
"type": "service-target",
"description": "Deploys agents to the Foundry Agent Service"
}
],
"usage": "azd ai agent <command> [options]",
"examples": [
{
"name": "init",
"description": "Initialize a new AI agent project.",
"usage": "azd ai agent init"
}
],
"artifacts": {
"darwin/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "e6c74f67391dfd3177a7faea0bba535c96f2a241cbe1900ab988263e54b042cf"
},
"entryPoint": "azure-ai-agents-darwin-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-amd64.zip"
},
"darwin/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "86054e5bc2b81a15122b4ea9372bb99b006676a75b1245d122d960e6b48d0810"
},
"entryPoint": "azure-ai-agents-darwin-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-arm64.zip"
},
"linux/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "94426cc5667d12f24dfb5a4c26635f7f0bd16ca8a74a4b5b17c3ad0f6b5870d0"
},
"entryPoint": "azure-ai-agents-linux-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-amd64.tar.gz"
},
"linux/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "e0ffb21d7ae525174425c5d9bfc0f0ac06137d82740b2a0e89099e84c31da5ad"
},
"entryPoint": "azure-ai-agents-linux-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-arm64.tar.gz"
},
"windows/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "219cad26c2629c4b3411da7d9bfd8d9b17ba147c2fa6d3a44e56265bb6036abc"
},
"entryPoint": "azure-ai-agents-windows-amd64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-amd64.zip"
},
"windows/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "8651044a1c03e34baa3fdb9daf5c957d5ddbe86e50ca08ce32cd4b230ad4416c"
},
"entryPoint": "azure-ai-agents-windows-arm64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-arm64.zip"
}
},
"dependencies": [
{
"id": "azure.ai.inspector",
"version": "~1.0.0-beta.1"
},
{
"id": "azure.ai.projects",
"version": "~1.0.0-beta.3"
Comment thread
huimiu marked this conversation as resolved.
}
]
}
]
},
Expand Down
Loading