Last active
August 15, 2025 22:57
-
-
Save kyletaylored/848fa8fdf266a1762628684e68ed6d62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------- Azure OpenAI ---------- | |
# Your Azure OpenAI resource endpoint (include trailing slash) | |
AZURE_OPENAI_ENDPOINT=https://<your-resource>.openai.azure.com/ | |
# Your Azure OpenAI API key | |
AZURE_OPENAI_API_KEY=<your-azure-openai-key> | |
# The API version compatible with your deployment | |
AZURE_OPENAI_API_VERSION=2024-10-21 | |
# Your deployment name (e.g., gpt-4o-mini, gpt-4o-mini-2024-07-18, etc.) | |
AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini | |
# ---------- Datadog LLM Observability (Agentless, optional) ---------- | |
# Your Datadog API key | |
DD_API_KEY=<your-datadog-api-key> | |
# Your Datadog site (e.g., datadoghq.com, us3.datadoghq.com, datadoghq.eu) | |
DD_SITE=datadoghq.com | |
# Application name to group traces/metrics in Datadog | |
DD_LLMOBS_ML_APP=quickstart-app | |
# ---------- Notes ---------- | |
# 1) Copy this file to `.env` and fill in the placeholders. | |
# 2) The notebook auto-loads `.env` if present (python-dotenv). | |
# 3) To launch with ddtrace-run instead of embedded init: | |
# DD_LLMOBS_ENABLED=1 DD_LLMOBS_ML_APP=$DD_LLMOBS_ML_APP DD_API_KEY=$DD_API_KEY ddtrace-run jupyter lab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment