Files
2026-07-13 12:59:43 +08:00

30 lines
1.3 KiB
Bash

# Microsoft Foundry Project (Required for most lessons)
# Your Microsoft Foundry project endpoint
AZURE_AI_PROJECT_ENDPOINT="https://..."
# Model deployment name in your Foundry project (e.g., gpt-4o)
AZURE_AI_MODEL_DEPLOYMENT_NAME="gpt-4o"
# Azure OpenAI (Responses API - used by lessons that call the model directly)
# The Responses API uses the stable /openai/v1/ endpoint - no api_version needed.
# NOTE: GitHub Models is deprecated (retiring July 2026) and does NOT support the
# Responses API. All samples now use Azure OpenAI with the Responses API instead.
AZURE_OPENAI_ENDPOINT="https://<your-resource>.openai.azure.com"
AZURE_OPENAI_DEPLOYMENT="gpt-4o-mini"
# Optional: use a key instead of Entra ID / AzureCliCredential
AZURE_OPENAI_API_KEY="..."
# Azure AI Search (Required for Lesson 05 - Agentic RAG)
AZURE_SEARCH_SERVICE_ENDPOINT="https://..."
AZURE_SEARCH_API_KEY="..."
# Azure AI Bing Connection (Required for Lesson 08 - Bing grounding workflow)
BING_CONNECTION_ID="..."
# MiniMax (Alternative OpenAI-compatible provider)
# MiniMax offers large-context models (up to 204K tokens) via an OpenAI-compatible API.
# Get your API key from https://platform.minimaxi.com/
MINIMAX_API_KEY="..."
MINIMAX_BASE_URL="https://api.minimax.io/v1"
MINIMAX_MODEL_ID="MiniMax-M3"