Quick Setup Guide¶
Welcome to the Customer Service AI Agent workshop! Let's get your environment ready for development.
Prerequisites Check (5 minutes)¶
-
Azure Account Setup
-
Python Environment
Project Setup (10 minutes)¶
-
Create AI Foundry Project
from azure.identity import DefaultAzureCredential from azure.ai.resources import AIProjectClient # Initialize client credential = DefaultAzureCredential() client = AIProjectClient( subscription_id="your-subscription-id", resource_group="your-resource-group", credential=credential ) # Create project project = client.projects.create( name="customer-service-agent", description="AI-powered customer service agent" )
-
Verify Access
Environment Variables¶
Set these required variables:
export AZURE_SUBSCRIPTION_ID="your-subscription-id"
export AZURE_RESOURCE_GROUP="your-resource-group"
Interactive Setup Notebook¶
For a hands-on environment setup experience, you can use our interactive Jupyter notebook:
Launch Environment Setup Notebook
This notebook will guide you through: - Installing required packages - Setting up Azure authentication - Initializing the AI Project client - Verifying access to models
What's Next?¶
In this workshop, you'll: 1. Deploy a GPT model for customer service 2. Create an intelligent support agent 3. Evaluate and monitor performance
Let's start by accessing AI Foundry to deploy our model!