# Crestapps Core Ollama

> Skill for local Ollama integration in CrestApps.Core for development, privacy-sensitive workloads, and self-hosted models.

- Skill: `crestapps/crestapps-core-ollama` (Agent Skill)
- Install (CLI): `npx skillmds@latest add crestapps/crestapps-core-ollama`
- Raw SKILL.md: https://api.skillmd.com/api/skills/crestapps/crestapps-core-ollama/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: CrestApps (https://skillmd.com/u/crestapps)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/crestapps/crestapps-core-ollama

---


# CrestApps.Core Ollama - Prompt Templates

## Add Ollama Support

You are a CrestApps.Core expert. Generate code and configuration for using local Ollama models with CrestApps.Core.

### Guidelines

- Use Ollama for local development, offline work, and privacy-sensitive scenarios.
- Expect capability differences to be model-dependent.
- Keep the local endpoint on the connection.
- Keep the selected model name on the deployment.

### Builder Registration

```csharp
builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddOllama()
    )
);
```

### Raw Registration

```csharp
builder.Services
    .AddCoreAIServices()
    .AddCoreAIOllama();
```

### Configuration

```json
{
  "CrestApps": {
    "AI": {
      "Connections": [
        {
          "Name": "local-ollama",
          "ClientName": "Ollama",
          "Endpoint": "http://localhost:11434"
        }
      ],
      "Deployments": [
        {
          "Name": "llama3.1",
          "ClientName": "Ollama",
          "ConnectionName": "local-ollama",
          "ModelName": "llama3.1",
          "Purpose": "Chat"
        }
      ]
    }
  }
}
```

