All cards
Data source active local-only

data-ollama

Local Ollama LLM runtime on Beacon loopback 11434, one small model loaded

Endpoint
http://127.0.0.1:11434
Packaging
systemd
Owner
operator
Version
v1
Updated
2026-06-26
Health check
curl -fsS http://127.0.0.1:11434/api/tags

Purpose

Local LLM inference runtime. One small model loaded. Unclear which downstream services consume it. Handoff flagged: keep if a service uses it, decommission if experimental to free RAM.

Capabilities 2

llm-inference
Local LLM inference via Ollama API
model-registry
Model registry, currently one small model

History 1

Createdai2026-06-26
Card created by AI session (audit 2786).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "data-ollama",
  "kind": "data-source",
  "summary": "Local Ollama LLM runtime on Beacon loopback 11434, one small model loaded",
  "purpose": "Local LLM inference runtime. One small model loaded. Unclear which downstream services consume it. Handoff flagged: keep if a service uses it, decommission if experimental to free RAM.",
  "endpoint": "http://127.0.0.1:11434",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"llm-inference\", \"description\": \"Local LLM inference via Ollama API\"}, {\"name\": \"model-registry\", \"description\": \"Model registry, currently one small model\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://127.0.0.1:11434/api/tags",
  "credential_alias": "",
  "packaging": "systemd",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"data-source\", \"docs\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-06-26T23:53:32.826192+00:00",
  "updated_at": "2026-06-26T23:53:32.826192+00:00"
}

API examples

curl, Python, JavaScript
# curl
curl -H "Authorization: Bearer $UAI_EXPLORER_AI_API_KEY" \
     https://explorer.united-ai.ca/api/ai/capability/data-ollama
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/data-ollama",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/data-ollama",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();