Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/CustomizingAzdParameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ By default this template will use the environment name as the prefix to prevent

| Name | Type | Default Value | Purpose |
| ------------------------------- | ------ | ----------------- | --------------------------------------------------------------------------------------------------- |
| `AZURE_ENV_DEPLOYMENT_FLAVOR` | string | `bicep` | Used for different deployment flavor, accepted values `bicep`, `avm`, `avm-waf` |
| `AZURE_ENV_NAME` | string | `macae` | Used as a prefix for all resource names to ensure uniqueness across environments. |
| `AZURE_LOCATION` | string | `<User selects during deployment>` | Location of the Azure resources. Controls where the infrastructure will be deployed. |
| `AZURE_ENV_AI_SERVICE_LOCATION` | string | `<User selects during deployment>` | Specifies the region for OpenAI resource deployment. |
Expand All @@ -18,8 +19,7 @@ By default this template will use the environment name as the prefix to prevent
| `AZURE_ENV_MODEL_5_4_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
| `AZURE_ENV_MODEL_5_4_NAME` | string | `gpt-5.4` | Specifies the name of the GPT model to be deployed. |
| `AZURE_ENV_MODEL_5_4_VERSION` | string | `2026-03-05` | Version of the GPT model to be used for deployment. |
| `AZURE_ENV_MODEL_5_4_CAPACITY` | int | `150` | Sets the GPT model capacity. |
| `AZURE_ENV_IMAGE_TAG` | string | `latest_v5` | Docker image tag used for container deployments. |
| `AZURE_ENV_MODEL_5_4_CAPACITY` | int | `150` | Sets the GPT model capacity. | |
| `AZURE_ENV_ENABLE_TELEMETRY` | bool | `true` | Enables telemetry for monitoring and diagnostics. |
| `AZURE_EXISTING_AIPROJECT_RESOURCE_ID` | string | `<Existing Workspace Id>` | Set this if you want to reuse an AI Foundry Project instead of creating a new one. |
| `AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID` | string | Guide to get your [Existing Workspace ID](re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
Expand Down
114 changes: 0 additions & 114 deletions docs/ManualAzureDeployment.md

This file was deleted.

114 changes: 0 additions & 114 deletions docs/feature-changelog.md

This file was deleted.

1 change: 0 additions & 1 deletion infra/scripts/post-provision/upload_team_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import os
import time
import requests
import json

HTTP_TIMEOUT = 120 # seconds per request
MAX_RETRIES = 5
Expand Down
4 changes: 1 addition & 3 deletions src/tests/backend/common/utils/test_team_utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
"""Unit tests for team_utils module."""

import logging
import os
import sys
import uuid
from unittest.mock import AsyncMock, MagicMock, Mock, patch
from unittest.mock import AsyncMock, Mock, patch

import pytest

Expand Down
Loading