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
1 change: 1 addition & 0 deletions content-gen/src/backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
logging.getLogger("azure.core.pipeline.policies.http_logging_policy").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)

# Create Quart app
Expand Down
5 changes: 3 additions & 2 deletions content-gen/src/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ quart-cors>=0.7.0
hypercorn>=0.17.0

# Microsoft Agent Framework
agent-framework==1.0.0b260114 # Pinning this stable version
agent-framework-azure-ai==1.0.0b260114
agent-framework-core==1.0.0b260114

# Azure SDKs
azure-identity>=1.17.0
azure-cosmos>=4.7.0
azure-storage-blob>=12.22.0
azure-ai-contentsafety>=1.0.0
azure-ai-projects>=1.0.0b5 # Azure AI Foundry SDK (optional, for USE_FOUNDRY=true)
azure-ai-projects==2.0.0b3 # Azure AI Foundry SDK (optional, for USE_FOUNDRY=true)

# OpenAI
openai>=1.45.0
Expand Down
1 change: 1 addition & 0 deletions content-gen/src/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ class _AIFoundrySettings(BaseSettings):
env_file=DOTENV_PATH,
extra="ignore",
env_ignore_empty=True,
protected_namespaces=(),
)

use_foundry: bool = Field(default=False, alias="USE_FOUNDRY")
Expand Down
Loading