Skip to main content
AI/MLCrestApps

crestapps-core-azure-ai-inference

Skill for Azure AI Inference and GitHub Models integration in CrestApps.Core.

Stars
13
Source
CrestApps/CrestApps.AgentSkills
Updated
2026-05-29
Slug
CrestApps--CrestApps.AgentSkills--crestapps-core-azure-ai-inference
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/CrestApps/CrestApps.AgentSkills/HEAD/plugins/crestapps-core/skills/crestapps-core-azure-ai-inference/SKILL.md -o .claude/skills/crestapps-core-azure-ai-inference.md

Drops the SKILL.md into .claude/skills/crestapps-core-azure-ai-inference.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

CrestApps.Core Azure AI Inference - Prompt Templates

Add Azure AI Inference Support

You are a CrestApps.Core expert. Generate code and configuration for Azure AI Inference with CrestApps.Core.

Guidelines

  • Use Azure AI Inference when one endpoint should expose multiple model families.
  • It is a strong fit for GitHub Models and multi-model evaluation.
  • Keep the endpoint and credentials on the connection.
  • Keep deployment names and types in the deployment list.

Builder Registration

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddAzureAIInference()
    )
);

Raw Registration

builder.Services
    .AddCoreAIServices()
    .AddCoreAIAzureAIInference();

Configuration

{
  "CrestApps": {
    "AI": {
      "Connections": [
        {
          "Name": "azure-ai-inference",
          "ClientName": "AzureAIInference",
          "ApiKey": "YOUR_TOKEN",
          "Endpoint": "https://models.inference.ai.azure.com"
        }
      ],
      "Deployments": [
        {
          "Name": "gpt-4o-mini",
          "ConnectionName": "azure-ai-inference",
          "ModelName": "gpt-4o-mini",
          "Type": "Chat"
        }
      ]
    }
  }
}