Skip to content

Commit 2f43aa6

Browse files
fix: Update API version in documentation and refine local_dev script output
1 parent 0e8f833 commit 2f43aa6

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

docs/LocalDevelopmentSetup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
357357
netstat -ano | findstr :5000 # Windows PowerShell
358358
359359
# Kill the process if needed (use PID from above command)

scripts/local_dev.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ generate_env() {
343343
if [ ! -f ".env" ] && [ -f ".env.sample" ]; then
344344
cp .env.sample .env
345345
print_info "Created .env from .env.sample"
346-
print_info "Created .env from template"
347346
fi
348347
fi
349348

0 commit comments

Comments
 (0)