e768098d0e
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
27 lines
1.6 KiB
Bash
27 lines
1.6 KiB
Bash
# Copy this file to .env and fill in your values.
|
||
# cp .env.example .env
|
||
# Never commit .env to source control — it is in .gitignore.
|
||
|
||
# ── Microsoft Foundry ─────────────────────────────────────────────────────────
|
||
# All phase-2 samples and the deployment use FoundryChatClient with these variables.
|
||
# Endpoint format: https://<resource>.services.ai.azure.com
|
||
FOUNDRY_PROJECT_ENDPOINT=https://<resource>.services.ai.azure.com
|
||
FOUNDRY_MODEL=
|
||
|
||
# ── Azure OpenAI (parity evaluation only) ────────────────────────────────────
|
||
# Used by the SimilarityEvaluator in phase-3-validate/.
|
||
AZURE_OPENAI_API_KEY=
|
||
AZURE_OPENAI_ENDPOINT=https://<resource>.openai.azure.com/
|
||
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME=
|
||
|
||
# ── Azure AI Search ───────────────────────────────────────────────────────────
|
||
# Required for RAG sample only (phase-2-rebuild/05_rag_flow.py).
|
||
AZURE_AI_SEARCH_ENDPOINT=https://<search-resource>.search.windows.net
|
||
AZURE_AI_SEARCH_INDEX_NAME=
|
||
AZURE_AI_SEARCH_API_KEY=
|
||
|
||
# ── Application Insights (optional) ──────────────────────────────────────────
|
||
# Tracing is optional — phases 1–3 work without it.
|
||
# Required only for phase-4-migrate-ops/4a-tracing/ and the deployment score.py.
|
||
# APPLICATIONINSIGHTS_CONNECTION_STRING=
|