All cards
Data source planned local-only

data-thaladex-vector-boundary

Thaladex/Diffuser vector data boundary — Qdrant on Beacon loopback 6333. Metadata and health only; supersedes planned data-cortex-qdrant-or-vector-api ghost.

Endpoint
http://127.0.0.1:6333
Packaging
Owner
operator
Version
v1
Updated
2026-07-09
Health check
curl -s http://127.0.0.1:6333/healthz

Purpose

Explicit data boundary for Thaladex memory embed and vector integration. Allowed: service health and collection metadata checks on loopback only. Denied: payloads, vectors, raw memory, secrets, production row reads. Canonical live vector store card is data-qdrant.

Capabilities 1

health-metadata
Qdrant health and collection metadata probes only

History 1

Createdai2026-07-09
Card created by AI session (audit 3611).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "data-thaladex-vector-boundary",
  "kind": "data-source",
  "summary": "Thaladex/Diffuser vector data boundary \u2014 Qdrant on Beacon loopback 6333. Metadata and health only; supersedes planned data-cortex-qdrant-or-vector-api ghost.",
  "purpose": "Explicit data boundary for Thaladex memory embed and vector integration. Allowed: service health and collection metadata checks on loopback only. Denied: payloads, vectors, raw memory, secrets, production row reads. Canonical live vector store card is data-qdrant.",
  "endpoint": "http://127.0.0.1:6333",
  "exposure": "local-only",
  "capabilities_json": "[{\"name\": \"health-metadata\", \"description\": \"Qdrant health and collection metadata probes only\"}]",
  "dependencies_json": "[\"data-qdrant\", \"thaladex-vps-loopback\"]",
  "instructions_slug": "",
  "health_check": "curl -s http://127.0.0.1:6333/healthz",
  "credential_alias": "",
  "packaging": "",
  "owner": "operator",
  "status": "planned",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"data-source\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-07-09T22:54:29.065487+00:00",
  "updated_at": "2026-07-09T22:54:29.065487+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-thaladex-vector-boundary
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/data-thaladex-vector-boundary",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/data-thaladex-vector-boundary",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();