@@ -143,7 +143,6 @@ Create `.vscode/settings.json` and copy the following JSON:
143143
144144``` json
145145{
146- "python.defaultInterpreterPath" : " ./.venv/bin/python" ,
147146 "python.terminal.activateEnvironment" : true ,
148147 "python.formatting.provider" : " black" ,
149148 "python.linting.enabled" : true ,
@@ -297,7 +296,7 @@ The `.env` file is loaded from the repository root. It is **auto-generated** whe
297296| ` AZURE_ENV_GPT_MODEL_NAME` | Yes | GPT model deployment name (e.g., ` gpt-5.1` ) |
298297| ` AZURE_ENV_IMAGE_MODEL_NAME` | Yes | Image generation model (e.g., ` gpt-image-1-mini` ) |
299298| ` AZURE_OPENAI_GPT_IMAGE_ENDPOINT` | No | Separate endpoint for image generation (if different from main endpoint) |
300- | ` AZURE_ENV_OPENAI_API_VERSION` | Yes | API version (e.g., ` 2025-01 -01-preview ` ) |
299+ | ` AZURE_ENV_OPENAI_API_VERSION` | Yes | API version (e.g., ` 2024-06 -01` ) |
301300
302301# ## Azure AI Foundry Configuration
303302
@@ -353,7 +352,8 @@ The `.env` file is loaded from the repository root. It is **auto-generated** whe
353352
354353` ` ` bash
355354# Check what's using the port
356- netstat -tulpn | grep :5000 # Linux/macOS
355+ netstat -tulpn | grep :5000 # Linux
356+ lsof -i :5000 # macOS
357357netstat -ano | findstr :5000 # Windows PowerShell
358358
359359# Kill the process if needed (use PID from above command)
0 commit comments