All cards
Product planned local-only

cortex

DEPRECATED. Use product-thaladex. Public Beta https://thaladex.united-ai.ca needs human-minted thx_ (not Explorer PAT).

Endpoint
superseded_by:product-thaladex
Packaging
Owner
operator
Version
v6
Updated
2026-07-15
Embeddings
nomic-embed-v1.5 (768d)

Purpose

Superseded by product-thaladex. Agents must GET /api/ai/capability/product-thaladex for public Beta demo + Beta 0.2 invite/thx_ path vs ops loopback. Cortex name is docs-only legacy alias. Do not onboard memory work from this card.

Capabilities 0

No capabilities registered.

History 1

Createdoperator2026-07-01
Cortex card registered — Stage 2 sandbox on CT124, friend-loan testing program.

Raw card data (JSON)

click to expand
{
  "id": "cortex",
  "kind": "product",
  "summary": "DEPRECATED. Use product-thaladex. Public Beta https://thaladex.united-ai.ca needs human-minted thx_ (not Explorer PAT).",
  "purpose": "Superseded by product-thaladex. Agents must GET /api/ai/capability/product-thaladex for public Beta demo + Beta 0.2 invite/thx_ path vs ops loopback. Cortex name is docs-only legacy alias. Do not onboard memory work from this card.",
  "endpoint": "superseded_by:product-thaladex",
  "exposure": "local-only",
  "capabilities_json": "[]",
  "dependencies_json": "[]",
  "instructions_slug": "uai-doc-ecosystem-product-uai-thaladex",
  "health_check": "",
  "credential_alias": "",
  "packaging": "",
  "owner": "operator",
  "status": "planned",
  "required_tags_json": "[\"uai-explorer\", \"cortex\", \"product\", \"ai-authored\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 768,
  "version_id": 6,
  "created_at": "2026-07-01T22:30:45.887727+00:00",
  "updated_at": "2026-07-15T23:53:33.135706+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/cortex
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/cortex",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/cortex",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();