azure-ai-foundry
Installation
SKILL.md
Azure AI Foundry
Master building AI agents and automation workflows on Microsoft Azure AI Foundry platform.
Quick Start
from azure.ai.projects import AIProjectClient
from azure.identity import DefaultAzureCredential
# Initialize AI Foundry client
client = AIProjectClient(
credential=DefaultAzureCredential(),
subscription_id="your-subscription-id",
resource_group_name="your-resource-group",
project_name="your-project"
)