File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Extropy API Keys
22# These are the only settings that belong in .env (secrets only).
33# For provider/model config, use: extropy config set <key> <value>
4+ # Set at least one of these depending on which provider you use.
45
5- # OpenAI (required if using openai as provider)
6+ # OpenAI
67OPENAI_API_KEY = sk-...
78
89# Anthropic (from https://console.anthropic.com/settings/keys)
910ANTHROPIC_API_KEY = sk-ant-...
11+
12+ # OpenRouter (from https://openrouter.ai/keys)
13+ OPENROUTER_API_KEY = sk-or-...
14+
15+ # DeepSeek (from https://platform.deepseek.com/api_keys)
16+ DEEPSEEK_API_KEY = sk-...
17+
18+ # Azure AI Foundry (AZURE_API_KEY is primary, AZURE_OPENAI_API_KEY is legacy fallback)
19+ AZURE_API_KEY = ...
20+ # Also requires AZURE_ENDPOINT=https://<resource>.services.ai.azure.com/
Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ export OPENAI_API_KEY=sk-...
136136export ANTHROPIC_API_KEY=sk-ant-...
137137export OPENROUTER_API_KEY=sk-or-...
138138export DEEPSEEK_API_KEY=sk-...
139+ export AZURE_API_KEY=...
140+ export AZURE_ENDPOINT=https://< resource> .services.ai.azure.com/
139141```
140142
141143## Global Flags
You can’t perform that action at this time.
0 commit comments