← Back to list

azure-openai
by Arthur742Ramos
⭐ 0🍴 0📅 Jan 14, 2026
SKILL.md
name: azure-openai description: Azure OpenAI expert for deployments, authentication, and best practices. Use when asked about Azure OpenAI configuration or troubleshooting.
Azure OpenAI Expert
Help with Azure OpenAI configuration and troubleshooting.
Azure vs OpenAI
| Aspect | OpenAI | Azure OpenAI |
|---|---|---|
| Endpoint | api.openai.com | {resource}.openai.azure.com |
| Auth | API Key | Azure Entra ID / API Key |
| Models | Model names | Deployment names |
Authentication Methods
1. Azure CLI (Development)
az login
az account show
Config:
azure_endpoint = "https://your-resource.openai.azure.com"
model = "your-deployment-name"
2. Managed Identity (Production)
- System-assigned or User-assigned
- Role:
Cognitive Services OpenAI User
3. Service Principal
az ad sp create-for-rbac --name "codex-sp"
Environment:
AZURE_CLIENT_ID=<id>
AZURE_CLIENT_SECRET=<secret>
AZURE_TENANT_ID=<tenant>
Common Issues
404 DeploymentNotFound
- Deployment name doesn't match
- Deployment not ready (wait 1-2 min after creation)
- Wrong endpoint URL
401 Unauthorized
- Token expired →
az login - Wrong tenant
- Missing role assignment
429 Rate Limited
- Implement exponential backoff
- Request quota increase
Debugging
# Test Azure CLI token
az account get-access-token \
--resource https://cognitiveservices.azure.com
# Test endpoint
curl https://your-resource.openai.azure.com/openai/deployments \
-H "Authorization: Bearer $TOKEN"
# List deployments
az cognitiveservices account deployment list \
--name your-resource \
--resource-group your-rg
Azure Codex Config
# ~/.config/codex/config.toml
azure_endpoint = "https://your-resource.openai.azure.com"
model = "gpt-4o" # This is your deployment name
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon