{
  "@context": "https://schema.org",
  "@type": "DefinedTermSet",
  "@id": "https://www.slavin.ai/data/ai-glossary-network.json",
  "name": "SLAtech Network AI & Compliance Glossary",
  "description": "Cross-network glossary of 100 essential AI architecture, governance, compliance, web infrastructure, Israeli tech ecosystem, and Russian compliance terms. Each term has a stable @id, a 1-2 sentence definition, alternate names where common, and may cite the network page where the term is treated in depth. Citation-grade - every term is a single source of truth across the SLAtech network.",
  "url": "https://www.slavin.ai/data/ai-glossary-network.json",
  "license": "https://creativecommons.org/licenses/by/4.0/",
  "publisher": {
    "@type": "Organization",
    "name": "Slavin AI (SLAtech LTD)",
    "url": "https://www.slavin.ai"
  },
  "datePublished": "2026-06-20",
  "dateModified": "2026-06-21",
  "version": "1.0.0",
  "hasDefinedTerm": [
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#rag",
      "name": "Retrieval-Augmented Generation (RAG)",
      "alternateName": [
        "RAG",
        "RAG pipeline",
        "retrieval augmented generation"
      ],
      "termCode": "rag",
      "description": "An architecture pattern where an LLM's response is grounded in documents retrieved at query time from a vector index, rather than relying solely on the model's training data. Used for hallucination control, source citation, and freshness without retraining.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.pro/en/Article-RAG-Architecture",
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fine-tuning",
      "name": "Fine-tuning",
      "alternateName": [
        "model fine-tuning",
        "supervised fine-tuning",
        "SFT"
      ],
      "termCode": "fine-tuning",
      "description": "Adapting a pre-trained model's weights on a smaller, domain-specific dataset to improve task accuracy. Higher quality than RAG for behavioral patterns but slower to update; locks you to the model version trained.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vector-database",
      "name": "Vector Database",
      "alternateName": [
        "vector DB",
        "vector store",
        "embedding store"
      ],
      "termCode": "vector-database",
      "description": "A database optimized for similarity search over high-dimensional vectors (typically embeddings). Used in RAG and recommendation systems. Examples: Pinecone, Weaviate, PGVector, Milvus, Qdrant.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#embedding",
      "name": "Embedding",
      "alternateName": [
        "text embedding",
        "vector embedding",
        "embedding vector"
      ],
      "termCode": "embedding",
      "description": "A numerical vector representation of text (or other modality) where semantic similarity corresponds to vector proximity. Foundation for RAG, semantic search, and clustering.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#prompt-injection",
      "name": "Prompt Injection",
      "alternateName": [
        "prompt injection attack",
        "indirect prompt injection"
      ],
      "termCode": "prompt-injection",
      "description": "A class of attacks where malicious instructions are smuggled into LLM input via user data, retrieved documents, or tool outputs - overriding the system prompt. Distinct from jailbreaking (which targets the model directly).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.pro/en/Article-AI-Security"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hallucination",
      "name": "Hallucination",
      "alternateName": [
        "AI hallucination",
        "confabulation"
      ],
      "termCode": "hallucination",
      "description": "An LLM output that is fluent, plausible, and factually wrong - often presented with high confidence. Distinct from refusal (the model declines to answer). Mitigated by RAG + citation enforcement + LLM-as-judge sampling.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#agent",
      "name": "AI Agent",
      "alternateName": [
        "LLM agent",
        "agentic AI"
      ],
      "termCode": "agent",
      "description": "An LLM-driven loop that plans, calls tools, observes results, and iterates toward a goal. Distinct from a single-shot prompt or a fixed chain. Operationally higher-risk: longer context windows, more tool failures, harder to evaluate.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Chatbot-vs-RAG-vs-Agent"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#context-window",
      "name": "Context Window",
      "alternateName": [
        "context length",
        "context size"
      ],
      "termCode": "context-window",
      "description": "Maximum number of tokens an LLM can attend to in a single forward pass. Hard limit on combined system prompt + retrieved context + user message + assistant output. Frontier models in 2026: 1M-2M tokens.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/data/ai-model-capability-matrix.json"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#prompt-caching",
      "name": "Prompt Caching",
      "alternateName": [
        "prefix cache",
        "KV cache reuse"
      ],
      "termCode": "prompt-caching",
      "description": "Provider-side reuse of cached prefix tokens (system prompt + RAG context) across requests, charging at a discounted rate (10-75% off depending on vendor). Reduces cost for repeat-prefix workflows like RAG and agents.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#function-calling",
      "name": "Function Calling",
      "alternateName": [
        "tool use",
        "tool calling"
      ],
      "termCode": "function-calling",
      "description": "LLM capability to emit structured JSON describing a function invocation (name + arguments) that the host application then executes. Foundation for agentic systems and integrations.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mcp",
      "name": "Model Context Protocol (MCP)",
      "alternateName": [
        "MCP",
        "Anthropic MCP"
      ],
      "termCode": "mcp",
      "description": "Open protocol introduced by Anthropic (2024) for connecting LLMs to data sources and tools via standardized JSON-RPC messages. Transport: stdio or HTTP+SSE. Adopted by Claude Desktop, Smithery, and growing list of agent runtimes.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#eu-ai-act",
      "name": "EU AI Act",
      "alternateName": [
        "EU AI Act 2024/1689",
        "Artificial Intelligence Act"
      ],
      "termCode": "eu-ai-act",
      "description": "European Union regulation establishing risk-based obligations for AI systems placed on or used in the EU market. Tiers: prohibited, high-risk, limited-risk, minimal. Phased effective dates 2025-02 (prohibitions) through 2027-08 (legacy GPAI).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/EU-AI-Act-Checklist",
        "https://www.slavin.ai/AI-Compliance-Calendar"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#152-fz",
      "name": "152-FZ (Russian Federal Law on Personal Data)",
      "alternateName": [
        "152-ФЗ",
        "Russia Personal Data Law",
        "Russia 152-FZ"
      ],
      "termCode": "152-fz",
      "description": "Russian Federation federal law governing collection, processing, storage, and cross-border transfer of personal data of Russian citizens. 2025 amendments added explicit AI-processing notice obligations and tighter localization rules.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/152-FZ-Compliance-Checklist"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#gpai",
      "name": "General-Purpose AI (GPAI)",
      "alternateName": [
        "GPAI model",
        "foundation model"
      ],
      "termCode": "gpai",
      "description": "EU AI Act category: AI model with significant generality, capable of performing a wide range of distinct tasks. Includes most frontier LLMs. Systemic-risk threshold triggers additional obligations (evaluations, red-teaming, incident reporting).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dpia",
      "name": "Data Protection Impact Assessment (DPIA)",
      "alternateName": [
        "DPIA",
        "Privacy Impact Assessment",
        "PIA"
      ],
      "termCode": "dpia",
      "description": "GDPR Article 35 process for assessing privacy risks of high-risk processing. Required for systematic, large-scale processing of personal data - typical for production AI/RAG systems handling user data.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#multi-tenant",
      "name": "Multi-Tenant Architecture",
      "alternateName": [
        "multitenancy",
        "multi-tenant SaaS"
      ],
      "termCode": "multi-tenant",
      "description": "Single application instance serving multiple isolated customers (tenants). For AI workloads: per-tenant context isolation, cost attribution, rate-limit partitioning, data-residency without infrastructure duplication.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.pro/en/Article-Multi-Tenant-SaaS"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#observability",
      "name": "AI Observability",
      "alternateName": [
        "LLM observability",
        "AI monitoring"
      ],
      "termCode": "observability",
      "description": "Production monitoring for AI systems across 4 layers: performance (latency, throughput), quality (correctness, hallucination rate), cost (per-tenant per-provider), drift (input distribution, output distribution).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.pro/en/Article-AI-Observability"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vertical-ai",
      "name": "Vertical AI",
      "alternateName": [
        "industry AI",
        "domain-specific AI"
      ],
      "termCode": "vertical-ai",
      "description": "AI products built for a specific industry (legal, medical, hospitality) rather than broad horizontal use. Higher quality per task, narrower market, harder to commoditize. Common winner in 2025-2026 SaaS landscape.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.pro/en/Article-Vertical-AI"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#guardrails",
      "name": "AI Guardrails",
      "alternateName": [
        "LLM guardrails",
        "output filtering"
      ],
      "termCode": "guardrails",
      "description": "Pre-output and post-output filtering layers that block, redirect, or modify LLM responses based on policy (PII redaction, prompt injection detection, output schema enforcement, toxicity filtering).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#evaluation",
      "name": "AI Evaluation (eval)",
      "alternateName": [
        "LLM eval",
        "eval set",
        "eval harness"
      ],
      "termCode": "evaluation",
      "description": "Process of measuring AI system quality against a labeled dataset or LLM-as-judge benchmark. Required to detect regressions when changing prompts, models, or retrieval. Common tools: ragas, deepeval, promptfoo.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#adr",
      "name": "Architecture Decision Record (ADR)",
      "alternateName": [
        "ADR",
        "architectural decision record"
      ],
      "termCode": "adr",
      "description": "Lightweight document capturing a single architectural decision, its context, the alternatives considered, the chosen option, and consequences. For AI: critical to record vendor choice, RAG topology, fine-tuning vs RAG decision.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hreflang",
      "name": "hreflang",
      "alternateName": [
        "hreflang attribute",
        "rel=alternate hreflang"
      ],
      "termCode": "hreflang",
      "description": "HTML link attribute declaring the language and regional targeting of an alternate URL. BCP-47 codes (e.g. en-US, he-IL, ru-RU). Used by Google + Yandex to serve the right localized version in SERP.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#csp",
      "name": "Content Security Policy (CSP)",
      "alternateName": [
        "CSP header",
        "Content-Security-Policy"
      ],
      "termCode": "csp",
      "description": "HTTP response header restricting which sources of scripts, styles, images, fonts, frames a browser will load. Defense-in-depth against XSS. `Report-Only` mode audits violations without blocking; `Enforce` mode actually blocks.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hsts",
      "name": "HTTP Strict Transport Security (HSTS)",
      "alternateName": [
        "HSTS",
        "Strict-Transport-Security"
      ],
      "termCode": "hsts",
      "description": "HTTP response header that tells browsers to only connect to a host over HTTPS for a specified duration. With `preload` directive, the host is shipped in Chrome/Firefox/Safari HSTS preload lists.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#core-web-vitals",
      "name": "Core Web Vitals",
      "alternateName": [
        "Web Vitals",
        "CWV"
      ],
      "termCode": "core-web-vitals",
      "description": "Google's standardized page-experience metrics. LCP (Largest Contentful Paint - loading), INP (Interaction to Next Paint - responsiveness, replaced FID in 2024), CLS (Cumulative Layout Shift - visual stability). Confirmed ranking factors.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#llms-txt",
      "name": "llms.txt",
      "alternateName": [
        "llms-full.txt",
        "LLM crawler instructions"
      ],
      "termCode": "llms-txt",
      "description": "Emerging convention (proposed 2024) for sites to publish LLM-friendly content boundaries and citation guidance at /llms.txt or /llms-full.txt. Analogous to robots.txt but oriented to AI training and runtime crawlers.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#schema-org",
      "name": "Schema.org",
      "alternateName": [
        "JSON-LD schema",
        "structured data"
      ],
      "termCode": "schema-org",
      "description": "Shared vocabulary (W3C-endorsed, founded by Google/Microsoft/Yahoo/Yandex) for structured data on the web. Implemented via JSON-LD, Microdata, or RDFa. Foundation for SERP rich results and Knowledge Graph extraction.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dcat",
      "name": "Data Catalog Vocabulary (DCAT)",
      "alternateName": [
        "DCAT-AP",
        "W3C DCAT"
      ],
      "termCode": "dcat",
      "description": "W3C standard vocabulary for describing data catalogs and datasets. Used by EU Open Data Portal, Google Dataset Search, OpenAIRE for harvesting. DCAT-AP is the European Application Profile.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/data/catalog.json"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#age-verification",
      "name": "Age Verification",
      "alternateName": [
        "age gate",
        "highly-effective age assurance",
        "HEAA"
      ],
      "termCode": "age-verification",
      "description": "Process of confirming user is above an age threshold before granting access. UK OSA mandates 'highly-effective' methods (verified ID, AI-based age estimation with audit, credit-card check) for porn / gambling sites.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dmca",
      "name": "DMCA (Digital Millennium Copyright Act)",
      "alternateName": [
        "DMCA takedown",
        "Section 512"
      ],
      "termCode": "dmca",
      "description": "US federal law (1998) regulating copyright on the internet. Section 512 'safe harbor' protects platforms from liability for user-uploaded content if they comply with takedown notices. Foundation for content-moderation pipelines.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mehina",
      "name": "Mechina (Mechina Kdam-Akademit)",
      "alternateName": [
        "Mechina",
        "מכינה",
        "Pre-Academic Program"
      ],
      "termCode": "mehina",
      "description": "Israeli pre-academic preparatory program (1 year) bridging the gap between high-school Bagrut and university admission. Used by olim (new immigrants), candidates lacking specific subject Bagrut, and students aiming for elite programs.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.education/Schools"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#bagrut",
      "name": "Bagrut",
      "alternateName": [
        "בגרות",
        "Israeli Matriculation Certificate"
      ],
      "termCode": "bagrut",
      "description": "Israeli matriculation certificate awarded for completing high-school with passing scores in mandatory and elective subjects. Required (or alternative path) for university admission in Israel.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.education/Diplomas"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#psychometry",
      "name": "Psychometric Exam (Psychometry)",
      "alternateName": [
        "Psychometry",
        "Psychometric Entrance Test",
        "פסיכומטרי"
      ],
      "termCode": "psychometry",
      "description": "Standardized exam (Quantitative, Verbal, English) used as an admissions metric for Israeli universities. Combined with Bagrut into a composite score. Comparable in role to SAT/ACT in the US.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.education/About"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#aliyah",
      "name": "Aliyah",
      "alternateName": [
        "עלייה",
        "immigration to Israel"
      ],
      "termCode": "aliyah",
      "description": "Hebrew term (literally 'ascent') for Jewish immigration to Israel. Carries legal/citizenship process via Law of Return and integration considerations (language, education, employment).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#chargeback",
      "name": "Chargeback",
      "alternateName": [
        "payment chargeback",
        "card dispute"
      ],
      "termCode": "chargeback",
      "description": "Forced reversal of a card transaction initiated by the cardholder via their issuing bank. High chargeback ratio triggers MATCH list placement, processor termination, or reserve requirements. Critical risk for adult, gaming, and subscription verticals.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#high-risk-merchant",
      "name": "High-Risk Merchant Category",
      "alternateName": [
        "high-risk MCC",
        "high-risk vertical"
      ],
      "termCode": "high-risk-merchant",
      "description": "Payment processor classification for merchants with elevated chargeback risk, regulatory exposure, or reputational concerns (adult, gambling, CBD, dating, supplements). Subject to higher fees, reserves, and tighter compliance terms.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#openapi",
      "name": "OpenAPI Specification",
      "alternateName": [
        "Swagger",
        "OAS"
      ],
      "termCode": "openapi",
      "description": "Open standard for describing REST APIs in machine-readable form (JSON or YAML). Enables client codegen, documentation rendering, mock servers, and AI-agent discovery (ChatGPT Custom GPTs, Claude tools).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://api.slatech.co.il/openapi/v1.json"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#knowledge-graph",
      "name": "Knowledge Graph",
      "alternateName": [
        "entity graph",
        "semantic knowledge graph"
      ],
      "termCode": "knowledge-graph",
      "description": "Structured representation of real-world entities and their relationships, often using URIs as stable identifiers. Google Knowledge Graph powers Knowledge Panels; site-level KG endpoints (JSON-LD) feed citation engines and Wikidata extractors.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/.well-known/knowledge-graph.json"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#orcid",
      "name": "ORCID iD",
      "alternateName": [
        "ORCID identifier",
        "Open Researcher and Contributor ID"
      ],
      "termCode": "orcid",
      "description": "Persistent unique identifier for researchers (format 0000-0000-0000-000X). Free, non-proprietary, used by academic publishers, funders, and now LLM citation engines to disambiguate authors with common names.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#attention",
      "name": "Attention Mechanism",
      "alternateName": [
        "attention",
        "self-attention",
        "attention head"
      ],
      "termCode": "attention",
      "description": "Neural-network operation that lets a model dynamically weight which input tokens to focus on when producing each output token. Self-attention (within one sequence) and cross-attention (between two sequences) are the building blocks of the transformer.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#transformer",
      "name": "Transformer Architecture",
      "alternateName": [
        "transformer",
        "transformer network"
      ],
      "termCode": "transformer",
      "description": "Neural-network architecture introduced in 'Attention Is All You Need' (Vaswani et al., 2017) built on stacked self-attention + feed-forward blocks. Foundation of essentially every frontier LLM in 2026 (GPT, Claude, Gemini, Llama, Mistral).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tokenization",
      "name": "Tokenization",
      "alternateName": [
        "tokenizer",
        "BPE",
        "byte-pair encoding",
        "tiktoken"
      ],
      "termCode": "tokenization",
      "description": "Process of splitting text into integer 'token' IDs the model actually consumes. Byte-Pair Encoding (BPE) and SentencePiece are the dominant 2026 approaches. Tokenization affects cost (tokens billed), context-window math, and sometimes correctness for non-Latin scripts.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#kv-cache",
      "name": "KV Cache",
      "alternateName": [
        "KV cache",
        "attention cache",
        "key-value cache"
      ],
      "termCode": "kv-cache",
      "description": "In-memory cache of key + value tensors computed during transformer inference, so that each new output token only does work proportional to the new token rather than re-attending to the full prefix. Bigger KV cache = lower latency but higher VRAM cost.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#speculative-decoding",
      "name": "Speculative Decoding",
      "alternateName": [
        "speculative decoding",
        "speculative sampling",
        "draft model"
      ],
      "termCode": "speculative-decoding",
      "description": "Inference-time technique where a small draft model proposes the next N tokens and the target model verifies them in a single batched forward pass. Yields 1.5-3x throughput gains without sacrificing output distribution.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#moe",
      "name": "Mixture of Experts (MoE)",
      "alternateName": [
        "MoE",
        "mixture-of-experts",
        "sparse model"
      ],
      "termCode": "moe",
      "description": "Architecture pattern that routes each token to a subset of expert sub-networks instead of running the entire model. Increases total parameter count cheaply but adds routing overhead. Used in Mixtral, DeepSeek, GPT-4-class models.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#quantization",
      "name": "Quantization",
      "alternateName": [
        "quantization",
        "INT8 quantization",
        "GGUF",
        "AWQ",
        "GPTQ"
      ],
      "termCode": "quantization",
      "description": "Compressing model weights from float32/16 to lower-precision formats (INT8, INT4, FP8) to fit larger models on smaller hardware. Trade-off: small quality loss for 2-4x memory + throughput gain. Standard 2026: AWQ for serving, GGUF for llama.cpp.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#distillation",
      "name": "Knowledge Distillation",
      "alternateName": [
        "distillation",
        "model distillation",
        "teacher-student"
      ],
      "termCode": "distillation",
      "description": "Training a smaller 'student' model on a larger 'teacher' model's outputs (logits or generated text) to approximate teacher quality at a fraction of the inference cost. Foundation of cheaper hosted variants (Haiku, Mini, Flash).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#lora",
      "name": "LoRA / QLoRA",
      "alternateName": [
        "LoRA",
        "QLoRA",
        "low-rank adaptation"
      ],
      "termCode": "lora",
      "description": "Parameter-efficient fine-tuning that adds tiny low-rank matrices to a frozen base model. Trains in hours not weeks; adapters are MB not GB. QLoRA = LoRA on top of a 4-bit quantized base, runs on a single consumer GPU.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#rlhf",
      "name": "RLHF / RLAIF",
      "alternateName": [
        "RLHF",
        "RLAIF",
        "reinforcement learning from human feedback"
      ],
      "termCode": "rlhf",
      "description": "Post-training stage where a reward model trained on human (RLHF) or AI (RLAIF) preference labels shapes the LLM via reinforcement learning. Source of behavior like refusal patterns, helpfulness tone, and instruction-following.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dpo",
      "name": "Direct Preference Optimization (DPO)",
      "alternateName": [
        "DPO",
        "Direct Preference Optimization"
      ],
      "termCode": "dpo",
      "description": "Simplified alternative to RLHF: directly optimizes the policy against preference pairs without an explicit reward model. Easier to implement, more sample-efficient, dominant post-training method in 2025-2026 open-source releases.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#instruction-tuning",
      "name": "Instruction Tuning",
      "alternateName": [
        "instruction tuning",
        "SFT instruction phase"
      ],
      "termCode": "instruction-tuning",
      "description": "Supervised fine-tuning phase where a base model is trained on (instruction, ideal response) pairs to make it follow commands rather than just complete text. Always comes before RLHF/DPO.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#chain-of-thought",
      "name": "Chain-of-Thought (CoT)",
      "alternateName": [
        "CoT",
        "chain-of-thought",
        "chain of thought"
      ],
      "termCode": "chain-of-thought",
      "description": "Prompting technique where the model is asked to show step-by-step reasoning before the final answer. Improves accuracy on multi-step problems. Now baked into reasoning models (o1, Claude thinking, Gemini deep-think) at training time.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#few-shot",
      "name": "Few-Shot Prompting",
      "alternateName": [
        "few-shot",
        "in-context learning",
        "ICL"
      ],
      "termCode": "few-shot",
      "description": "Including 2-10 input/output examples in the prompt so the model can pattern-match the task. Compared to fine-tuning: cheaper but uses tokens every call. Sweet spot for tasks with limited training data and tolerable per-call cost.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#reasoning-model",
      "name": "Reasoning Model",
      "alternateName": [
        "reasoning model",
        "thinking model",
        "extended-thinking model"
      ],
      "termCode": "reasoning-model",
      "description": "LLM trained to spend additional inference-time compute on internal step-by-step reasoning before emitting the final answer (o1, Claude with extended thinking, Gemini Deep Think). Higher accuracy on math/code/logic; higher latency + cost.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#model-card",
      "name": "Model Card",
      "alternateName": [
        "model card",
        "model documentation"
      ],
      "termCode": "model-card",
      "description": "Standardized documentation describing a model's intended use, training data, performance characteristics, limitations, and risks. Required artifact under EU AI Act Article 13 for high-risk systems. Origin: Mitchell et al. 2018 'Model Cards for Model Reporting'.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#system-card",
      "name": "System Card",
      "alternateName": [
        "system card",
        "AI system card"
      ],
      "termCode": "system-card",
      "description": "Documentation of a deployed AI SYSTEM (not just a model) - including model versions used, system prompt, retrieval sources, guardrails, monitoring setup. Larger scope than a model card, addresses what regulators care about.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#aibom",
      "name": "AI Bill of Materials (AIBOM)",
      "alternateName": [
        "AIBOM",
        "AI BOM",
        "AI bill of materials"
      ],
      "termCode": "aibom",
      "description": "Inventory of all components in an AI system: base model, fine-tunes, datasets, retrieval sources, prompts, guardrails, tools. Analogous to SBOM (Software BOM). Emerging requirement under NIST AI RMF + sector regulators (FDA, FINRA).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#aia",
      "name": "Algorithmic Impact Assessment",
      "alternateName": [
        "AIA",
        "algorithmic impact assessment"
      ],
      "termCode": "aia",
      "description": "Structured pre-deployment review of an AI system's impact on individuals, groups, and society. Canada Treasury Board's AIA, NYC AEDT bias audit, EU AI Act fundamental rights assessment are jurisdiction-specific instances of this category.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#lia",
      "name": "Legitimate Interest Assessment",
      "alternateName": [
        "LIA",
        "legitimate interest assessment"
      ],
      "termCode": "lia",
      "description": "GDPR Article 6(1)(f) balancing-test document showing that a data controller's legitimate interest in a processing activity outweighs the data subject's privacy interest. Required documentation when relying on legitimate interest as the legal basis.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#controller-processor",
      "name": "Data Controller vs Processor",
      "alternateName": [
        "controller",
        "processor",
        "data controller",
        "data processor"
      ],
      "termCode": "controller-processor",
      "description": "GDPR roles: controller decides why and how data is processed; processor only processes on the controller's instructions. AI vendor is usually processor; customer (deployer) is usually controller. Contract Article 28 DPA governs.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#right-to-explanation",
      "name": "Right to Explanation",
      "alternateName": [
        "right to explanation",
        "right of explanation"
      ],
      "termCode": "right-to-explanation",
      "description": "GDPR Article 22 right of data subjects subject to solely-automated decisions producing legal or similarly significant effects to obtain 'meaningful information about the logic involved'. Sets the bar for AI explainability obligations.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#differential-privacy",
      "name": "Differential Privacy",
      "alternateName": [
        "differential privacy",
        "DP",
        "privacy budget",
        "epsilon"
      ],
      "termCode": "differential-privacy",
      "description": "Mathematical framework for measuring how much an individual's data influences an aggregate output. Quantified by epsilon (privacy budget). Foundational for privacy-preserving training (DP-SGD) and analytics on sensitive datasets.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#watermarking",
      "name": "AI Watermarking",
      "alternateName": [
        "watermark",
        "AI watermarking",
        "synthid"
      ],
      "termCode": "watermarking",
      "description": "Techniques for embedding detectable signals in AI-generated content (text via token distribution, images via spatial-frequency patterns) so downstream tools can identify it as AI-generated. SynthID (Google), C2PA (cross-vendor) are standard 2026 approaches.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#nist-airmf",
      "name": "NIST AI Risk Management Framework",
      "alternateName": [
        "NIST AI RMF",
        "AI RMF",
        "NIST AI Risk Management Framework"
      ],
      "termCode": "nist-airmf",
      "description": "US National Institute of Standards and Technology framework (AI RMF 1.0, 2023; GenAI Profile, 2024) for managing AI risks. Voluntary, but used as de-facto baseline by US sectoral regulators (FDA, FINRA, FTC).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#jailbreak",
      "name": "Jailbreaking",
      "alternateName": [
        "jailbreak",
        "jailbreaking",
        "model jailbreak"
      ],
      "termCode": "jailbreak",
      "description": "Class of attacks targeting the model directly (via system-prompt overrides, role-play scenarios, encoding tricks, persuasion techniques) to bypass safety training and elicit forbidden output. Distinct from prompt injection (which targets system data flow).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#model-extraction",
      "name": "Model Extraction Attack",
      "alternateName": [
        "model extraction",
        "model stealing"
      ],
      "termCode": "model-extraction",
      "description": "Attack where an adversary queries a hosted model and uses outputs to train a copy locally. Mitigation: query rate limits, output-distortion noise, watermarking. Real-world cases involve API providers being copied by competitors.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#membership-inference",
      "name": "Membership Inference Attack",
      "alternateName": [
        "membership inference attack",
        "MIA"
      ],
      "termCode": "membership-inference",
      "description": "Attack inferring whether a specific data point was in the model's training set, given black-box query access. Privacy concern for medical, financial, biometric models. Differential privacy bounds the attack's success probability.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#data-poisoning",
      "name": "Data Poisoning",
      "alternateName": [
        "data poisoning",
        "training data poisoning"
      ],
      "termCode": "data-poisoning",
      "description": "Adversary injects malicious examples into training or fine-tuning data to insert backdoors or bias the model. Defense: data provenance tracking, anomaly detection on training set, third-party data auditing.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#adversarial-example",
      "name": "Adversarial Example",
      "alternateName": [
        "adversarial example",
        "adversarial input"
      ],
      "termCode": "adversarial-example",
      "description": "Input crafted to look benign to humans but cause the model to misclassify or misbehave. Classical CV examples (pixel perturbations) plus LLM analogues (unicode tricks, invisible tokens, encoded payloads in image inputs).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#alignment",
      "name": "AI Alignment",
      "alternateName": [
        "alignment",
        "AI alignment",
        "value alignment"
      ],
      "termCode": "alignment",
      "description": "Research field aimed at building AI systems whose behaviors match human values + intent. Spans technical (RLHF, DPO, scalable oversight, interpretability) and conceptual (specification, corrigibility, mesa-optimization) tracks.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#red-team",
      "name": "AI Red Teaming",
      "alternateName": [
        "red team",
        "red-teaming",
        "AI red teaming"
      ],
      "termCode": "red-team",
      "description": "Structured adversarial testing of an AI system: jailbreak attempts, bias probing, dual-use elicitation, prompt-injection vectors. Required by EU AI Act for GPAI systemic-risk models. Practiced by every frontier lab.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#prompt-leakage",
      "name": "Prompt Leakage",
      "alternateName": [
        "prompt leakage",
        "system prompt leakage"
      ],
      "termCode": "prompt-leakage",
      "description": "Attack/observation where the system prompt is extracted from the model via crafted queries. Confidentiality concern for proprietary prompt-engineering work. Defenses are partial; assume system prompt is eventually public.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#model-sandboxing",
      "name": "AI Sandboxing",
      "alternateName": [
        "sandboxing",
        "AI sandboxing",
        "tool sandboxing"
      ],
      "termCode": "model-sandboxing",
      "description": "Constraining what an LLM agent can actually DO: file-system isolation, network egress rules, tool capability allow-lists. Critical when agents have code-execution or browser-use tools. Pattern: deny-by-default + explicit allow-list.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#supply-chain-ai",
      "name": "AI Supply Chain Security",
      "alternateName": [
        "AI supply chain",
        "ML supply chain"
      ],
      "termCode": "supply-chain-ai",
      "description": "Risk surface around AI components: malicious pre-trained weights, compromised datasets, dependency attacks on ML frameworks, model-registry tampering. Defense: cryptographic signing (Sigstore for models), AIBOM, vendor due diligence.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#webauthn",
      "name": "WebAuthn / Passkeys",
      "alternateName": [
        "WebAuthn",
        "passkey",
        "passkeys",
        "FIDO2"
      ],
      "termCode": "webauthn",
      "description": "W3C standard for public-key authentication, replacing passwords with cryptographic key pairs bound to a device or password manager. Phishing-resistant by design. Passkeys are the user-facing brand (Apple, Google, Microsoft synced).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#oauth2",
      "name": "OAuth 2.0 + OIDC",
      "alternateName": [
        "OAuth",
        "OAuth 2.0",
        "OpenID Connect",
        "OIDC"
      ],
      "termCode": "oauth2",
      "description": "OAuth 2.0 delegates authorization (access tokens); OIDC adds authentication (ID tokens) on top. Standard for 'Sign in with X' flows + agent-to-API auth. PKCE is the recommended public-client flow in 2026.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mtls",
      "name": "Mutual TLS (mTLS)",
      "alternateName": [
        "mTLS",
        "mutual TLS",
        "client-cert authentication"
      ],
      "termCode": "mtls",
      "description": "TLS handshake where BOTH sides present + verify certificates. Common pattern for service-to-service authentication inside a zero-trust mesh. Often combined with SPIFFE/SPIRE for workload identity.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#service-worker",
      "name": "Service Worker",
      "alternateName": [
        "service worker",
        "PWA service worker"
      ],
      "termCode": "service-worker",
      "description": "Background JavaScript context in the browser intercepting network requests, enabling offline-first PWAs and push notifications. Lifecycle: install → activate → fetch. Foundation of modern Progressive Web Apps.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#wasm",
      "name": "WebAssembly (WASM)",
      "alternateName": [
        "WebAssembly",
        "WASM",
        "Wasm"
      ],
      "termCode": "wasm",
      "description": "Binary instruction format for a stack-based VM, designed as a portable compilation target for languages like Rust, Go, C++. Runs in browsers AND server-side (Wasmtime, WasmEdge). Used in edge functions and sandboxed plugin systems.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#http3",
      "name": "HTTP/3 + QUIC",
      "alternateName": [
        "HTTP/3",
        "QUIC",
        "h3"
      ],
      "termCode": "http3",
      "description": "Latest major HTTP version, running over QUIC (UDP-based transport) instead of TCP. Eliminates head-of-line blocking, faster handshake, better mobile-network performance. ~75% of Cloudflare traffic in 2026.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#doh",
      "name": "DNS over HTTPS (DoH)",
      "alternateName": [
        "DoH",
        "DNS over HTTPS",
        "DoT"
      ],
      "termCode": "doh",
      "description": "DNS resolution carried over HTTPS instead of UDP plaintext (RFC 8484). Prevents ISP DNS snooping + manipulation. Companion: DoT (DNS over TLS). Both increase user privacy at the cost of centralization concerns.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#cdn",
      "name": "Content Delivery Network (CDN)",
      "alternateName": [
        "CDN",
        "content delivery network",
        "edge network"
      ],
      "termCode": "cdn",
      "description": "Geographically-distributed cache layer that serves static assets (and increasingly dynamic content) from a Point of Presence (PoP) close to the user. Cloudflare, Fastly, AWS CloudFront, Akamai are the 2026 leaders.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#edge-compute",
      "name": "Edge Compute",
      "alternateName": [
        "edge compute",
        "edge functions",
        "Cloudflare Workers",
        "Vercel Edge"
      ],
      "termCode": "edge-compute",
      "description": "Running application code at CDN PoPs (Cloudflare Workers, Vercel Edge, Fastly Compute@Edge, AWS Lambda@Edge) instead of a central data center. Sub-50ms latency globally; constrained runtime (no Node, V8 isolates) is the tradeoff.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#waf",
      "name": "Web Application Firewall (WAF)",
      "alternateName": [
        "WAF",
        "web application firewall"
      ],
      "termCode": "waf",
      "description": "Network appliance / cloud service inspecting HTTP traffic for OWASP-Top-10 attack patterns. Modern WAFs (Cloudflare, AWS WAF, Imperva) layer rate limiting, bot management, and AI-output guardrails on top of classic rule engines.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#unit-8200",
      "name": "Unit 8200",
      "alternateName": [
        "8200",
        "Unit 8200",
        "יחידה 8200"
      ],
      "termCode": "unit-8200",
      "description": "Israeli Defense Forces signals-intelligence unit, alma mater of a disproportionate share of Israeli cybersecurity + AI founders (Check Point, Palo Alto Networks, Wiz, NSO, CyberArk). 'Ex-8200' is shorthand for elite technical-military background.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mamram",
      "name": "Mamram",
      "alternateName": [
        "Mamram",
        "ממר\"ם",
        "Center of Computing and Information Systems"
      ],
      "termCode": "mamram",
      "description": "IDF Center of Computing and Information Systems (Merkaz Mahshvim u'Rishumim Memuhshavim). Trains software engineers + sysadmins on internal systems. Mamram alumni dominate Israeli enterprise software and SRE.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#talpiot",
      "name": "Talpiot",
      "alternateName": [
        "Talpiot",
        "תלפיות"
      ],
      "termCode": "talpiot",
      "description": "Elite 9-year IDF program combining a BSc (physics + math + CS) at Hebrew University with R&D officer service in technology units. Highly competitive (~50 cadets/year). Alumni include founders of Trax, Compass Security, multiple defense-tech firms.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#ima",
      "name": "Israel Innovation Authority (IIA)",
      "alternateName": [
        "IIA",
        "Israel Innovation Authority",
        "OCS",
        "רשות החדשנות"
      ],
      "termCode": "ima",
      "description": "Israeli government agency (formerly Office of the Chief Scientist) administering R&D grants to startups + multinationals. Headline programs: Tnufa, Magnet, Yozma successor funds. Grants typically 20-50% of approved R&D budget.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#yozma",
      "name": "Yozma Fund",
      "alternateName": [
        "Yozma",
        "יוזמה"
      ],
      "termCode": "yozma",
      "description": "1993 Israeli government VC matching program that catalyzed the Israeli venture-capital industry. Government invested $100M alongside private VCs; resulted in 10 funds that returned $7B+. Template later copied by South Korea, Singapore, Russia.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#olim",
      "name": "Olim / Aliyah Industry",
      "alternateName": [
        "olim",
        "אולים",
        "Nefesh B'Nefesh"
      ],
      "termCode": "olim",
      "description": "Olim = new immigrants to Israel. Specific tech-employability programs for olim from FSU/Western markets via Nefesh B'Nefesh + Israeli Ministry of Aliyah. Tech industry actively recruits olim with Russian/English language assets.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#kupot-aliyah",
      "name": "Kupot Aliyah / Aliyah Basket",
      "alternateName": [
        "kupot aliyah",
        "סל אליה",
        "absorption basket"
      ],
      "termCode": "kupot-aliyah",
      "description": "Israeli government financial + service package for new olim: monthly stipend (6 months), Hebrew ulpan (5 months free), tax exemptions (10 years), professional retraining benefits. Significantly affects net comp expectations of olim hires.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hebrew-utf8",
      "name": "Bidi + Hebrew UTF-8 Web Compliance",
      "alternateName": [
        "Hebrew Unicode",
        "Hebrew bidi",
        "Hebrew RTL"
      ],
      "termCode": "hebrew-utf8",
      "description": "Right-to-left rendering of Hebrew text in web UIs requires per-element direction:rtl + Unicode bidirectional algorithm awareness. Common gotcha: mixed-direction strings (Hebrew + Latin numbers). Bidi-aware fonts: Heebo, Rubik, Assistant.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#roskomnadzor",
      "name": "Roskomnadzor (РКН)",
      "alternateName": [
        "Roskomnadzor",
        "РКН",
        "RKN"
      ],
      "termCode": "roskomnadzor",
      "description": "Russian federal regulator overseeing communications, IT, media. Enforces 152-FZ (data localization), blocks websites violating Russian law, registers data-processing operators. Notifications + reports filed via the РКН personal-data-operator registry.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fns",
      "name": "ФНС (Federal Tax Service)",
      "alternateName": [
        "ФНС",
        "FNS",
        "Federal Tax Service"
      ],
      "termCode": "fns",
      "description": "Russian federal tax authority. Registers legal entities, issues ИНН (taxpayer ID) + КПП codes, runs the EGRYUL/EGRIP registries. Tech companies operating in RF interact via the К1+ digital reporting channels.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#inn-kpp",
      "name": "ИНН / КПП Codes",
      "alternateName": [
        "ИНН",
        "КПП",
        "INN",
        "KPP"
      ],
      "termCode": "inn-kpp",
      "description": "ИНН (Individual Taxpayer Number) is a 10-digit (legal entity) or 12-digit (individual) ID assigned by ФНС. КПП (Reason-for-Registration Code) is a 9-digit company classifier. Together they uniquely identify a Russian legal entity branch.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#okved",
      "name": "ОКВЭД Codes",
      "alternateName": [
        "ОКВЭД",
        "OKVED",
        "Russian industry codes"
      ],
      "termCode": "okved",
      "description": "All-Russian Classifier of Economic Activities. 5-digit hierarchical codes assigned to a legal entity at registration, declaring its primary + secondary activities. Required field on contracts + invoices. AI/IT companies typically code 62.01 / 62.02 / 62.09.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#gosuslugi",
      "name": "Госуслуги (Gosuslugi)",
      "alternateName": [
        "Госуслуги",
        "Gosuslugi",
        "ЕСИА"
      ],
      "termCode": "gosuslugi",
      "description": "Unified Russian government digital services portal. Powered by ЕСИА (Unified Identification and Authentication System) - the federal SSO. Citizens, legal entities, foreign nationals use it for tax, immigration, business filings.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#nalogru",
      "name": "ФНС API + СБИС",
      "alternateName": [
        "nalog.ru API",
        "СБИС",
        "API ФНС"
      ],
      "termCode": "nalogru",
      "description": "Programmatic interfaces to Russian tax service. Public endpoints (egrul.nalog.ru) for company lookup; auth'd channels (СБИС, Контур, 1C-Отчётность) for filings + EDI. Most production B2B SaaS in RF integrates here.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fz-242",
      "name": "152-FZ Localization (242-FZ amendment)",
      "alternateName": [
        "242-FZ",
        "Russian data localization"
      ],
      "termCode": "fz-242",
      "description": "2014 amendment to 152-FZ requiring INITIAL collection of personal data of Russian citizens in databases physically located in Russia. Foundation of all Russian cloud-residency requirements; reinforced by 2022-2025 amendments.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#ki",
      "name": "Critical Information Infrastructure (КИИ / 187-FZ)",
      "alternateName": [
        "КИИ",
        "187-FZ",
        "Russian critical infrastructure"
      ],
      "termCode": "ki",
      "description": "Russian federal law on Critical Information Infrastructure security. Subjects (banks, telecom, healthcare, energy, transport) categorize their assets, deploy ГосСОПКА incident-reporting, may face FSTEC import restrictions on hardware/software.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#constitutional-ai",
      "name": "Constitutional AI (CAI)",
      "alternateName": [
        "CAI",
        "constitutional-ai",
        "RLAIF"
      ],
      "termCode": "constitutional-ai",
      "description": "Anthropic's training method where an LLM is fine-tuned against a written set of principles (the 'constitution') rather than against pairwise human preference labels alone. The model critiques and revises its own outputs under each principle, producing a synthetic preference dataset that supplements RLHF.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#flash-attention",
      "name": "FlashAttention",
      "alternateName": [
        "flash attention",
        "flash-attention-2"
      ],
      "termCode": "flash-attention",
      "description": "Memory-efficient attention implementation that fuses softmax and matmul into a single GPU kernel and tiles operations to SRAM, dramatically reducing the activation-memory footprint of long-context transformers. Practical enabler of 100K+ context windows on consumer-grade GPUs.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#rope",
      "name": "Rotary Position Embedding (RoPE)",
      "alternateName": [
        "RoPE",
        "rotary position embeddings"
      ],
      "termCode": "rope",
      "description": "Position-encoding scheme that rotates query and key vectors in pairs by an angle proportional to token position, encoding relative position without learned position tables. Used by Llama, Mistral, Qwen and most modern open-weight models; supports context-length extension by interpolating or extending the rotation base.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#rerank",
      "name": "Cross-Encoder Reranking",
      "alternateName": [
        "reranking",
        "cross-encoder rerank",
        "two-stage retrieval"
      ],
      "termCode": "rerank",
      "description": "Second pass in a RAG retrieval pipeline: a small cross-encoder model scores each (query, candidate-document) pair jointly and reorders the top-K retrieved chunks before they are passed to the LLM. Lifts answer relevance well above pure vector similarity at modest latency cost.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx",
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#bm25",
      "name": "BM25 (Best Matching 25)",
      "alternateName": [
        "BM25",
        "Okapi BM25",
        "sparse retrieval"
      ],
      "termCode": "bm25",
      "description": "Probabilistic sparse-retrieval scoring function based on term-frequency and inverse-document-frequency with length normalization. Decades-old baseline still competitive with vector search on exact-match keyword queries; commonly combined with dense retrieval in hybrid search systems.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hybrid-search",
      "name": "Hybrid Search",
      "alternateName": [
        "hybrid retrieval",
        "dense + sparse search"
      ],
      "termCode": "hybrid-search",
      "description": "Retrieval architecture that runs a sparse method (BM25, SPLADE) and a dense vector method in parallel, then fuses results via reciprocal-rank fusion or learned weighting. Outperforms either alone on most enterprise corpora because sparse catches exact identifiers and dense catches paraphrases.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#chunking-strategy",
      "name": "Chunking Strategy",
      "alternateName": [
        "document chunking",
        "chunking",
        "splitter"
      ],
      "termCode": "chunking-strategy",
      "description": "Algorithm that splits source documents into retrievable units before embedding. Choices include fixed-size character/token windows, sentence-boundary splitting, recursive structural splitting, and semantic chunking driven by an embedding-similarity boundary. Wrong chunking is the single largest source of RAG quality regressions.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#react-pattern",
      "name": "ReAct (Reason + Act)",
      "alternateName": [
        "ReAct",
        "reason-and-act",
        "thought-action-observation"
      ],
      "termCode": "react-pattern",
      "description": "Agentic prompting pattern that interleaves natural-language reasoning steps with tool calls and observations, letting an LLM plan, execute, and update its plan in a single loop. Foundation of most modern function-calling agent frameworks (LangChain agents, OpenAI tool-use loop, Anthropic computer-use).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tree-of-thought",
      "name": "Tree of Thought (ToT)",
      "alternateName": [
        "ToT",
        "tree-of-thoughts"
      ],
      "termCode": "tree-of-thought",
      "description": "Reasoning method that extends chain-of-thought by exploring multiple candidate intermediate steps in parallel, scoring branches with a verifier, and backtracking when promising paths collapse. Higher quality than CoT on complex planning tasks at significantly higher inference cost.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#judge-llm",
      "name": "LLM-as-Judge",
      "alternateName": [
        "judge LLM",
        "LLM-as-a-judge",
        "model-graded eval"
      ],
      "termCode": "judge-llm",
      "description": "Evaluation pattern where a stronger LLM scores outputs from a target system against a rubric, replacing crowdsourced human raters. Cost- and time-efficient but introduces judge bias (positional, length, model-family preference); production use requires audit against a small human-graded gold set.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#perplexity",
      "name": "Perplexity",
      "alternateName": [
        "PPL",
        "language-model perplexity"
      ],
      "termCode": "perplexity",
      "description": "Information-theoretic measure of how surprised a language model is by a held-out text - exponential of the average per-token negative log-likelihood. Lower is better. Standard intrinsic metric for base LMs but a weak proxy for downstream usefulness on instruction-tuned chat models.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dpr",
      "name": "Dense Passage Retrieval (DPR)",
      "alternateName": [
        "DPR",
        "dense passage retrieval",
        "bi-encoder retrieval"
      ],
      "termCode": "dpr",
      "description": "Two-tower retrieval architecture with separate BERT-style encoders for queries and passages, trained with contrastive loss on (question, positive-passage, hard-negatives) triples. Established the dense-retrieval baseline that contemporary embedding models (E5, BGE, GTE, OpenAI text-embedding-3) extend.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#coop",
      "name": "Cross-Origin-Opener-Policy (COOP)",
      "alternateName": [
        "COOP",
        "Cross-Origin-Opener-Policy"
      ],
      "termCode": "coop",
      "description": "HTTP response header that isolates a document's browsing context group from cross-origin openers, neutralizing window.opener-based attacks (tabnabbing, side-channel leaks) and unlocking access to high-resolution timers and SharedArrayBuffer. Pair with COEP for cross-origin isolation.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#coep",
      "name": "Cross-Origin-Embedder-Policy (COEP)",
      "alternateName": [
        "COEP",
        "Cross-Origin-Embedder-Policy"
      ],
      "termCode": "coep",
      "description": "HTTP response header that requires every cross-origin subresource (images, scripts, fonts) to opt into being embedded via CORS or CORP. Required alongside COOP to activate cross-origin isolation and re-enable powerful APIs (SharedArrayBuffer, performance.measureUserAgentSpecificMemory).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#corp",
      "name": "Cross-Origin-Resource-Policy (CORP)",
      "alternateName": [
        "CORP",
        "Cross-Origin-Resource-Policy"
      ],
      "termCode": "corp",
      "description": "Per-resource HTTP header that declares which origins may load the resource (same-origin, same-site, cross-origin). Defends against Spectre-class side-channel attacks by preventing other origins from reading the response body even when it would have been a no-cors request.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#trusted-types",
      "name": "Trusted Types",
      "alternateName": [
        "Trusted Types API",
        "trustedTypes"
      ],
      "termCode": "trusted-types",
      "description": "Browser API plus CSP directive that makes DOM XSS sinks (innerHTML, script src, eval) refuse plain strings - they accept only typed objects produced by named policies. Reduces DOM XSS at the engine level instead of relying on developer discipline; supported in Chromium, behind a flag in Firefox.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#permissions-policy",
      "name": "Permissions-Policy",
      "alternateName": [
        "Permissions-Policy header",
        "Feature-Policy successor"
      ],
      "termCode": "permissions-policy",
      "description": "HTTP response header that allows or blocks browser feature access (camera, geolocation, fullscreen, payment, autoplay) per origin and per iframe. Successor to the deprecated Feature-Policy header; mandatory baseline for any site embedding third-party content.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#indirect-prompt-injection",
      "name": "Indirect Prompt Injection (IPI)",
      "alternateName": [
        "IPI",
        "indirect prompt injection",
        "tool-mediated prompt injection"
      ],
      "termCode": "indirect-prompt-injection",
      "description": "Attack class where adversarial instructions are smuggled into a retrieved document, web page, or tool output that a downstream LLM agent later reads. Distinct from direct prompt injection because the attacker never speaks to the LLM directly. Foundational threat in agentic systems that browse the open web.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#training-data-leak",
      "name": "Training-Data Leak",
      "alternateName": [
        "training data leakage",
        "memorization extraction"
      ],
      "termCode": "training-data-leak",
      "description": "Attack class where carefully-crafted prompts induce an LLM to verbatim regurgitate sensitive content it memorized at training time - PII, copyrighted text, license keys, private code. Amplified by larger models and repeated training samples; defended via data deduplication, differential privacy, and output filters.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mmlu",
      "name": "MMLU (Massive Multitask Language Understanding)",
      "alternateName": [
        "MMLU",
        "Massive Multitask Language Understanding"
      ],
      "termCode": "mmlu",
      "description": "57-subject multiple-choice benchmark covering humanities, STEM, professional exams (law, medicine, accounting) at high-school through graduate difficulty. Standard reference for general knowledge across frontier LLMs; saturated near 90%+ by GPT-4-class and Claude-3-class models so MMLU-Pro and MMLU-Redux are the current discriminating variants.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#humaneval",
      "name": "HumanEval",
      "alternateName": [
        "HumanEval benchmark",
        "OpenAI HumanEval"
      ],
      "termCode": "humaneval",
      "description": "164-problem Python function-completion benchmark from OpenAI. Each problem has a docstring and unit tests; the LLM's output is run against the tests and scored pass@k. Limited by small size and Python-only scope; SWE-Bench and LiveCodeBench are the modern successors for evaluating coding ability at scale.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mt-bench",
      "name": "MT-Bench (Multi-Turn Benchmark)",
      "alternateName": [
        "MT-Bench",
        "Multi-Turn Benchmark"
      ],
      "termCode": "mt-bench",
      "description": "80-question multi-turn benchmark from LMSYS, graded by a judge LLM (GPT-4 in the canonical paper). Each question is a 2-turn conversation across writing, reasoning, math, coding, extraction, STEM, humanities, role-play. Lightweight enough to run during model development; superseded for production by Arena-Hard.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#swe-bench",
      "name": "SWE-Bench",
      "alternateName": [
        "SWE-Bench",
        "SWE-Bench Verified"
      ],
      "termCode": "swe-bench",
      "description": "Benchmark of real GitHub issues from 12 mature Python repositories - the model must produce a patch that passes the project's actual test suite. SWE-Bench Verified is a 500-issue human-validated subset that filters ambiguous or impossible issues. Headline coding-agent benchmark for 2025-2026 frontier model releases.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#arena-hard",
      "name": "Arena-Hard",
      "alternateName": [
        "Arena-Hard",
        "Chatbot Arena Hard",
        "Arena Hard Auto"
      ],
      "termCode": "arena-hard",
      "description": "500-prompt hard subset distilled from Chatbot Arena human-preference data, graded by a judge LLM with style controls to remove length and markdown biases. Cheaper proxy for live Arena Elo than running a full human-preference study; the default LMSYS-style head-to-head benchmark for chat models in 2025-2026.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#helm",
      "name": "HELM (Holistic Evaluation of Language Models)",
      "alternateName": [
        "HELM",
        "Holistic Evaluation of Language Models",
        "Stanford HELM"
      ],
      "termCode": "helm",
      "description": "Stanford CRFM evaluation framework that scores LLMs across 16 core scenarios and 7 metrics (accuracy, calibration, robustness, fairness, bias, toxicity, efficiency) simultaneously. Designed to surface trade-offs invisible in single-metric leaderboards; HELM Lite and HELM Safety are the active subsets.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#direct-preference-optimization",
      "name": "Direct Preference Optimization (DPO training)",
      "alternateName": [
        "DPO training",
        "direct preference optimization"
      ],
      "termCode": "direct-preference-optimization",
      "description": "Reference-free training method that fine-tunes an LLM directly on (prompt, chosen, rejected) preference triples by maximizing the log-likelihood-ratio between chosen and rejected continuations under the trained vs reference policy. Simpler and more stable than PPO-style RLHF; default alignment recipe for open-weight models in 2024-2026. (Not to be confused with the GDPR Data Protection Officer role - see term 'dpo'.)",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#ourcrowd",
      "name": "OurCrowd",
      "alternateName": [
        "OurCrowd VC",
        "OurCrowd Israel"
      ],
      "termCode": "ourcrowd",
      "description": "Jerusalem-headquartered equity crowdfunding venture-capital platform founded 2013 by Jon Medved. Globally one of the largest by deal-flow volume; a primary VC distribution channel for Israeli AI, cybersecurity, and deep-tech startups, and a routine name on Israeli-tech-ecosystem investor lists.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/about"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#scaleup",
      "name": "Scaleup (Israeli tech context)",
      "alternateName": [
        "scale-up",
        "Israeli scaleup"
      ],
      "termCode": "scaleup",
      "description": "Israeli industry term for a post-startup company past product-market fit and scaling internationally - typically Series B+ with >$10M ARR and a non-Israeli sales presence. Distinct from 'unicorn' (>$1B valuation); the Start-Up Nation Central scaleup database is the canonical Israeli reference.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/about"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#export-control-il",
      "name": "Israeli Export Control (Defense Export Controls Agency / DECA)",
      "alternateName": [
        "DECA",
        "Israeli export control",
        "Defense Export Controls Agency"
      ],
      "termCode": "export-control-il",
      "description": "Israeli Ministry of Defense regime governing export of dual-use and military-graded software, cryptography, and cybersecurity products. Specific AI use cases (face recognition, intrusion software, surveillance) may require an export license. Relevant to Israeli AI vendors exporting to non-allied jurisdictions.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/security-compliance"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#idf-cyber",
      "name": "IDF Cyber Defense Directorate (לוט\"ם / J6)",
      "alternateName": [
        "IDF cyber",
        "C4I and Cyber Defense Directorate",
        "Lotem",
        "J6"
      ],
      "termCode": "idf-cyber",
      "description": "Israeli Defense Forces directorate covering all military command, control, communications, computing, and cyber defense. Source of much of the talent that founds Israeli cybersecurity and AI companies (alongside Unit 8200 and Talpiot). Often appears on founder bios as 'served in IDF cyber units'.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/about"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fstec",
      "name": "ФСТЭК России (FSTEC of Russia)",
      "alternateName": [
        "FSTEC",
        "Federal Service for Technical and Export Control"
      ],
      "termCode": "fstec",
      "description": "Russian federal agency for technical and export control. Maintains the certified-software registry, the threat database (БДУ), and the protection-class hierarchy (К1-К4, УЗ-1 to УЗ-4) for information systems handling personal data and state secrets. Mandatory reference point for any AI/IT system processing PII under 152-FZ.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/ru/152-FZ-Checklist"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#gossopka",
      "name": "ГосСОПКА (State System for Detection, Prevention and Mitigation of Computer Attacks)",
      "alternateName": [
        "GosSOPKA",
        "State System for Detection of Computer Attacks"
      ],
      "termCode": "gossopka",
      "description": "Russian state cybersecurity incident-reporting system operated by FSB Center 8. Critical Information Infrastructure subjects (КИИ) must register with GosSOPKA and report computer incidents within statutory windows under 187-FZ. Applies to AI/IT systems classified as КИИ in healthcare, finance, energy, transport, telecoms.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/ru/152-FZ-Checklist"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#kii",
      "name": "Критическая Информационная Инфраструктура (КИИ)",
      "alternateName": [
        "KII",
        "Critical Information Infrastructure",
        "187-FZ subject"
      ],
      "termCode": "kii",
      "description": "Russian regulatory category under federal law 187-FZ covering information systems whose disruption would harm 14 critical sectors (healthcare, finance, energy, transport, telecoms, defense industry, science, banking, fuel-and-energy, mining, metallurgy, chemical, rocket-and-space, nuclear). Operators must classify their systems into significance categories 1-3 and register with FSTEC + GosSOPKA.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slatech.co.il/ru/152-FZ-Checklist"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vllm",
      "name": "vLLM",
      "alternateName": [
        "vLLM",
        "vLLM serving engine"
      ],
      "termCode": "vllm",
      "description": "Open-source high-throughput LLM inference and serving engine from UC Berkeley. Centered on PagedAttention (memory-efficient KV cache management) and continuous batching. Default self-hosted serving choice for Llama, Mistral, Qwen, Mixtral classes in production.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tgi",
      "name": "Text Generation Inference (TGI)",
      "alternateName": [
        "TGI",
        "HF Text Generation Inference"
      ],
      "termCode": "tgi",
      "description": "Hugging Face's production-ready LLM serving Rust toolkit. Streaming token output, dynamic batching, tensor parallelism, quantization (GPTQ, AWQ, bitsandbytes). Default Hugging Face Inference Endpoints backend; comparable to vLLM with tighter HF Hub integration.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#ollama",
      "name": "Ollama",
      "alternateName": [
        "Ollama",
        "ollama.com"
      ],
      "termCode": "ollama",
      "description": "Local LLM runner that wraps llama.cpp with a developer-friendly REST API and model library (curl-able pulls of Llama, Mistral, Qwen, Phi, Gemma, DeepSeek). Default tool for desktop / laptop LLM development and air-gapped POCs.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#llama-cpp",
      "name": "llama.cpp",
      "alternateName": [
        "llama.cpp",
        "ggerganov/llama.cpp"
      ],
      "termCode": "llama-cpp",
      "description": "C/C++ reference implementation for running quantized transformer models on CPU and consumer GPUs without a Python stack. Source of the GGUF quantization format; powers Ollama, LM Studio, GPT4All, and many embedded LLM deployments.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#gguf",
      "name": "GGUF",
      "alternateName": [
        "GGUF",
        "GGUF format"
      ],
      "termCode": "gguf",
      "description": "Single-file quantized model format defined by llama.cpp. Carries weights, tokenizer, prompt template, and metadata together so a model can be loaded with one file path. Standard distribution format on Hugging Face for self-hosted Llama/Mistral/Qwen/Gemma builds.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tensorrt-llm",
      "name": "TensorRT-LLM",
      "alternateName": [
        "TensorRT-LLM",
        "NVIDIA TensorRT-LLM"
      ],
      "termCode": "tensorrt-llm",
      "description": "NVIDIA's LLM-optimized inference compiler/runtime built on TensorRT. Aggressive fusion of attention kernels, in-flight batching, FP8 / INT4 quantization. Highest throughput option on H100/H200/Blackwell hardware; required for many cloud GPU vendor SLA commitments.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#pgvector",
      "name": "pgvector",
      "alternateName": [
        "pgvector",
        "PostgreSQL pgvector extension"
      ],
      "termCode": "pgvector",
      "description": "PostgreSQL extension that adds a vector column type plus HNSW and IVFFlat indexes. Default 'we already run Postgres' choice for embedding storage; supports hybrid SQL+vector queries without a separate datastore. The pivot point in RAG architecture for sub-100M-vector deployments.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#qdrant",
      "name": "Qdrant",
      "alternateName": [
        "Qdrant",
        "qdrant.tech"
      ],
      "termCode": "qdrant",
      "description": "Open-source vector database written in Rust. Rich payload-filtering, sparse-vector support, gRPC-first protocol. Single-binary self-host or Qdrant Cloud; one of the three dominant self-host vector stores alongside Milvus and Weaviate.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#weaviate",
      "name": "Weaviate",
      "alternateName": [
        "Weaviate",
        "weaviate.io"
      ],
      "termCode": "weaviate",
      "description": "Open-source vector database written in Go with built-in embedding-model modules (text2vec-openai, text2vec-cohere, multi2vec-clip). GraphQL query layer; strong fit when you want the DB to also call the embedder so application code only sees text or images.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#milvus",
      "name": "Milvus",
      "alternateName": [
        "Milvus",
        "milvus.io",
        "Zilliz Cloud"
      ],
      "termCode": "milvus",
      "description": "Open-source distributed vector database designed for billion-scale workloads. Decoupled storage / compute architecture, multiple index types (HNSW, IVF, DiskANN, SCANN). Default choice for very-large-scale (>100M vectors) self-host deployments; managed via Zilliz Cloud.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#pinecone",
      "name": "Pinecone",
      "alternateName": [
        "Pinecone",
        "pinecone.io"
      ],
      "termCode": "pinecone",
      "description": "Closed-source managed vector database. Fully serverless, no index management, fast time-to-first-query; trade-off is no self-host option and per-pod pricing that scales steeply for high QPS. Common starter choice for teams that don't want operational overhead.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#sri",
      "name": "Subresource Integrity (SRI)",
      "alternateName": [
        "SRI",
        "Subresource Integrity"
      ],
      "termCode": "sri",
      "description": "Browser security mechanism that pins a cryptographic hash of an external script or stylesheet in its integrity attribute. The browser refuses to execute the resource if the fetched bytes don't match. Defense against compromised CDNs and third-party supply-chain attacks.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#referrer-policy",
      "name": "Referrer-Policy",
      "alternateName": [
        "Referrer-Policy header"
      ],
      "termCode": "referrer-policy",
      "description": "HTTP response header that controls how much of the originating URL is sent in the Referer request header on subsequent navigations and resource loads. Default browser policy is strict-origin-when-cross-origin since 2020; tighter values (no-referrer, same-origin) recommended for privacy-sensitive pages.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#x-frame-options",
      "name": "X-Frame-Options",
      "alternateName": [
        "X-Frame-Options",
        "XFO"
      ],
      "termCode": "x-frame-options",
      "description": "Legacy HTTP response header (DENY / SAMEORIGIN / ALLOW-FROM) that prevents the page from being framed by other origins, defending against clickjacking. Superseded by the more flexible CSP frame-ancestors directive but still emitted as a fallback for older browsers.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#websocket",
      "name": "WebSocket",
      "alternateName": [
        "WebSocket",
        "WS protocol",
        "RFC 6455"
      ],
      "termCode": "websocket",
      "description": "Persistent full-duplex TCP-style messaging protocol over HTTP upgrade handshake (RFC 6455). Standard transport for low-latency streaming UI (chat, live trading, agent token-stream UIs). Server-Sent Events and HTTP/2-streaming are the two common alternatives.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dsar",
      "name": "Data Subject Access Request (DSAR)",
      "alternateName": [
        "DSAR",
        "SAR",
        "Article 15 request"
      ],
      "termCode": "dsar",
      "description": "Formal request under GDPR Article 15 (and equivalents in CCPA, LGPD, UK-DPA 2018) requiring the controller to disclose what personal data is held about the requester, why, with whom shared, and for how long. Statutory response window 1 month under GDPR; AI systems must include inference outputs in the response.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#right-to-be-forgotten",
      "name": "Right to Erasure (Right to be Forgotten)",
      "alternateName": [
        "right to erasure",
        "right to be forgotten",
        "Article 17"
      ],
      "termCode": "right-to-be-forgotten",
      "description": "GDPR Article 17 right requiring the controller to delete the data subject's personal data under specified conditions (no longer needed, consent withdrawn, unlawfully processed, etc.). For LLM training corpora, fulfilment is contested - unlearning research is active but no production-grade method exists; mitigations focus on retrieval-side filtering.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#schrems-ii",
      "name": "Schrems II",
      "alternateName": [
        "Schrems II",
        "C-311/18"
      ],
      "termCode": "schrems-ii",
      "description": "2020 Court of Justice of the EU ruling that invalidated the EU-US Privacy Shield and tightened Standard Contractual Clauses with mandatory Transfer Impact Assessments. Drove relocation of EU customer data to EU regions for major US clouds; superseded for US transfers by the Data Privacy Framework (2023+) but the assessment obligation persists for other jurisdictions.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dpf",
      "name": "EU-US Data Privacy Framework (DPF)",
      "alternateName": [
        "DPF",
        "EU-US Data Privacy Framework"
      ],
      "termCode": "dpf",
      "description": "2023 successor to Privacy Shield. US companies self-certify with the Department of Commerce to receive EU adequacy-decision protection on transfers from EU/EEA. Limits US-intelligence-agency access to what is necessary and proportionate; enforceable via the Data Protection Review Court.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#consent-management-platform",
      "name": "Consent Management Platform (CMP)",
      "alternateName": [
        "CMP",
        "consent management platform"
      ],
      "termCode": "consent-management-platform",
      "description": "Software layer (OneTrust, Cookiebot, Didomi, etc.) that captures user consent decisions for cookies, trackers, AI features, and propagates them to downstream tools via the IAB Transparency and Consent Framework (TCF v2.2) or Google Consent Mode v2. Mandatory baseline for EU/UK commercial sites.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#soc2",
      "name": "SOC 2",
      "alternateName": [
        "SOC 2",
        "AICPA SOC 2"
      ],
      "termCode": "soc2",
      "description": "AICPA attestation report covering controls relevant to Security, Availability, Processing Integrity, Confidentiality, and Privacy (the Trust Services Criteria). Type I is point-in-time; Type II covers a 6-12 month window. The default 'enterprise-ready' signal demanded in B2B SaaS procurement, including AI vendors.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#iso27001",
      "name": "ISO/IEC 27001",
      "alternateName": [
        "ISO 27001",
        "ISO/IEC 27001:2022"
      ],
      "termCode": "iso27001",
      "description": "International standard for an Information Security Management System (ISMS). Risk-based control-selection framework (Annex A, 93 controls in the 2022 edition). Certified by accredited bodies on a 3-year cycle; the global counterpart to SOC 2 for non-US markets and the substrate for ISO 42001 AI management systems.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hipaa",
      "name": "HIPAA",
      "alternateName": [
        "HIPAA",
        "Health Insurance Portability and Accountability Act"
      ],
      "termCode": "hipaa",
      "description": "US federal law (1996) and its Privacy + Security + Breach Notification rules governing Protected Health Information (PHI). Covered Entities and Business Associates must sign BAAs and implement administrative, physical, technical safeguards. Foundational to healthcare-AI procurement in the US.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#pci-dss",
      "name": "PCI DSS",
      "alternateName": [
        "PCI DSS",
        "Payment Card Industry Data Security Standard"
      ],
      "termCode": "pci-dss",
      "description": "PCI Security Standards Council requirements for any entity that stores, processes, or transmits cardholder data. PCI DSS v4.0 (mandatory from 2025) introduced customized approach and stronger MFA. Compliance level (1-4) depends on annual transaction volume; AI features that touch card numbers fall in scope.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fedramp",
      "name": "FedRAMP",
      "alternateName": [
        "FedRAMP",
        "Federal Risk and Authorization Management Program"
      ],
      "termCode": "fedramp",
      "description": "US federal program standardizing cloud service authorization for federal agency use. Impact levels Low / Moderate / High; FedRAMP Moderate authorization is the de facto floor for selling SaaS to civilian agencies. Long, expensive certification process - typical reason cloud vendors maintain a separate GovCloud region.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#nis2",
      "name": "NIS2 Directive",
      "alternateName": [
        "NIS2",
        "Directive (EU) 2022/2555"
      ],
      "termCode": "nis2",
      "description": "Updated EU directive on the security of network and information systems, in force from October 2024. Expanded sector coverage (cloud, datacenters, managed services, public administration), 24-hour incident reporting, and personal liability for senior management. Important compliance gate for any EU-facing SaaS or AI infrastructure provider.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dora",
      "name": "DORA",
      "alternateName": [
        "DORA",
        "Digital Operational Resilience Act",
        "Regulation (EU) 2022/2554"
      ],
      "termCode": "dora",
      "description": "EU regulation on digital operational resilience for the financial sector, applicable from January 2025. ICT risk management, incident reporting, resilience testing, and oversight of critical ICT third-party providers (including AI vendors). Material for any AI service sold into EU banks, insurers, or asset managers.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#structured-output",
      "name": "Structured Output",
      "alternateName": [
        "structured output",
        "schema-constrained output"
      ],
      "termCode": "structured-output",
      "description": "LLM generation mode where the output is constrained by a JSON Schema (or grammar, or regex). Implemented via constrained decoding so the model literally cannot emit non-conforming tokens. OpenAI Structured Outputs and the equivalent in Anthropic / Vertex AI / open-weights llama.cpp-grammars are the production-grade alternatives to retry-on-parse-error patterns.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#json-mode",
      "name": "JSON Mode",
      "alternateName": [
        "JSON mode",
        "response_format json_object"
      ],
      "termCode": "json-mode",
      "description": "Lighter-weight LLM API option (response_format: json_object) that biases decoding toward valid JSON but does not enforce a specific schema. Replaced in practice by Structured Output (with explicit JSON Schema) for production use because JSON Mode alone still requires defensive parsing.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tool-use",
      "name": "Tool Use (function calling)",
      "alternateName": [
        "tool use",
        "function calling",
        "tools API"
      ],
      "termCode": "tool-use",
      "description": "LLM API surface where the developer declares typed functions and the model decides when to emit a tool_call instead of plain text. Replaced ad-hoc ReAct prompting with a structured protocol; the foundation under which most agentic frameworks (LangGraph, Anthropic agents, Vertex AI agent harness, MCP clients) operate.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#computer-use",
      "name": "Computer Use",
      "alternateName": [
        "computer use",
        "browser use",
        "GUI agent"
      ],
      "termCode": "computer-use",
      "description": "Agent capability where the LLM controls a virtualized desktop or browser via screenshots + mouse / keyboard actions instead of structured APIs. Released as production beta by Anthropic (2024) and OpenAI (2025); high security risk surface - prompt injection over arbitrary on-screen text is the dominant defense problem.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mechanistic-interpretability",
      "name": "Mechanistic Interpretability",
      "alternateName": [
        "mech interp",
        "MI",
        "mechanistic interpretability"
      ],
      "termCode": "mechanistic-interpretability",
      "description": "Research program aimed at reverse-engineering trained neural networks into human-readable algorithms - identifying circuits, attention heads, and features that implement specific behaviors. Core to Anthropic and DeepMind safety work; produces evidence used in alignment evaluations rather than user-facing features.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#activation-patching",
      "name": "Activation Patching",
      "alternateName": [
        "activation patching",
        "causal tracing"
      ],
      "termCode": "activation-patching",
      "description": "Interpretability technique that runs a model twice with different inputs and swaps internal activations between runs to isolate which components causally produce a behavior. Foundational tool in mechanistic-interpretability papers for circuit discovery.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#sparse-autoencoder",
      "name": "Sparse Autoencoder (SAE)",
      "alternateName": [
        "SAE",
        "sparse autoencoder"
      ],
      "termCode": "sparse-autoencoder",
      "description": "Interpretability tool that learns an over-complete sparse dictionary of features over a transformer's residual stream. Used by Anthropic and DeepMind to extract monosemantic features from polysemantic neurons; the leading 2024-2026 approach to interpreting frontier model internals.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#circuit-discovery",
      "name": "Circuit Discovery",
      "alternateName": [
        "circuit discovery",
        "neural circuit analysis"
      ],
      "termCode": "circuit-discovery",
      "description": "Sub-discipline of mechanistic interpretability that identifies small subgraphs of attention heads and MLPs implementing a specific algorithm (induction heads, indirect-object-identification, modular-arithmetic). Method-of-record for empirical interpretability claims about transformer behavior.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dictionary-learning",
      "name": "Dictionary Learning (interpretability)",
      "alternateName": [
        "dictionary learning"
      ],
      "termCode": "dictionary-learning",
      "description": "Classical signal-processing technique adapted by interpretability research to decompose neural activations into a sum of human-meaningful basis features. Implemented in modern AI safety work via sparse autoencoders trained on residual streams.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vision-language-model",
      "name": "Vision-Language Model (VLM)",
      "alternateName": [
        "VLM",
        "vision-language model",
        "multimodal LLM"
      ],
      "termCode": "vision-language-model",
      "description": "Model trained to consume both images and text and produce text. Modern frontier examples: GPT-4o, Claude 3.5 Sonnet (vision), Gemini Pro Vision, Qwen-VL, Pixtral. Default architecture for document understanding, screenshot reasoning, and OCR-replacement tasks.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#clip",
      "name": "CLIP (Contrastive Language-Image Pretraining)",
      "alternateName": [
        "CLIP",
        "Contrastive Language-Image Pretraining"
      ],
      "termCode": "clip",
      "description": "OpenAI 2021 model that jointly trains an image encoder and a text encoder in a shared embedding space using contrastive loss on web image-caption pairs. Foundation under most multimodal embedding workflows, zero-shot image classification, and multimodal vector search.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#multimodal-rag",
      "name": "Multimodal RAG",
      "alternateName": [
        "multimodal RAG",
        "vision RAG",
        "image+text RAG"
      ],
      "termCode": "multimodal-rag",
      "description": "RAG variant where the retrieval corpus contains images, tables, or document layouts in addition to text, indexed with multimodal embeddings (CLIP, SigLIP, ColPali). Required for document QA over PDFs whose information lives in diagrams or scanned forms rather than extractable text.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#query-rewriting",
      "name": "Query Rewriting",
      "alternateName": [
        "query rewriting",
        "query transformation"
      ],
      "termCode": "query-rewriting",
      "description": "RAG pre-retrieval stage where the user query is reformulated by a small LLM into one or more search-engine-style queries before hitting the vector index. Standard fix for sparse retrieval misses when users ask in conversational style; pairs with HyDE and multi-query expansion.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hyde",
      "name": "HyDE (Hypothetical Document Embeddings)",
      "alternateName": [
        "HyDE",
        "Hypothetical Document Embeddings"
      ],
      "termCode": "hyde",
      "description": "Query-side RAG technique: prompt an LLM to write a hypothetical answer to the query, embed that answer, and use its embedding as the retrieval key instead of the original question's embedding. Closes the query-document distribution gap that plagues dense retrieval.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#recursive-retrieval",
      "name": "Recursive Retrieval",
      "alternateName": [
        "recursive retrieval",
        "iterative retrieval"
      ],
      "termCode": "recursive-retrieval",
      "description": "Multi-pass RAG pattern where retrieved chunks are summarized and the summary is re-used as the next retrieval query, drilling down through document hierarchies (summary chunk → section chunk → paragraph chunk). Improves answer quality on long documents at the cost of additional LLM calls per query.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#multi-vector-retrieval",
      "name": "Multi-Vector Retrieval",
      "alternateName": [
        "multi-vector retrieval",
        "ColBERT-style retrieval"
      ],
      "termCode": "multi-vector-retrieval",
      "description": "Retrieval architecture (ColBERT, ColPali) that stores one embedding per token instead of one per document and scores with MaxSim. Higher recall on long documents than single-vector retrieval; cost is index size O(doc_tokens × dim) vs O(doc × dim).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#h100",
      "name": "NVIDIA H100",
      "alternateName": [
        "H100",
        "NVIDIA H100 Tensor Core GPU"
      ],
      "termCode": "h100",
      "description": "Hopper-architecture data-center GPU. 80GB HBM3, fourth-gen Tensor Cores with FP8 (Transformer Engine), 3TB/s bandwidth, NVLink 4. Backbone of frontier LLM training and serving 2023-2025; baseline for capacity planning in any LLM cost model.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#h200",
      "name": "NVIDIA H200",
      "alternateName": [
        "H200",
        "NVIDIA H200 Tensor Core GPU"
      ],
      "termCode": "h200",
      "description": "Hopper-refresh data-center GPU. 141GB HBM3e (up from 80GB on H100), 4.8TB/s bandwidth. Drop-in pin-compatible with H100; the bigger memory pool extends per-GPU context length and unlocks bigger models without tensor parallelism.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#blackwell",
      "name": "NVIDIA Blackwell (B100 / B200 / GB200)",
      "alternateName": [
        "Blackwell",
        "B100",
        "B200",
        "GB200"
      ],
      "termCode": "blackwell",
      "description": "NVIDIA architecture announced 2024 succeeding Hopper. Two-die GPU with NVLink5 chip-to-chip, FP4 Tensor Cores, second-gen Transformer Engine. GB200 NVL72 rack ties 72 Blackwell GPUs into one NVLink domain; the platform for 2025-2027 frontier training and very-large-model inference.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mi300",
      "name": "AMD Instinct MI300",
      "alternateName": [
        "MI300",
        "MI300X",
        "MI300A"
      ],
      "termCode": "mi300",
      "description": "AMD's first competitive data-center AI accelerator family. MI300X has 192GB HBM3 (more per-GPU memory than H100/H200) at competitive FP16 throughput. Adopted by Microsoft, Meta, OpenAI as a second-source to Hopper / Blackwell.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tpu",
      "name": "Tensor Processing Unit (TPU)",
      "alternateName": [
        "TPU",
        "Tensor Processing Unit",
        "Google TPU"
      ],
      "termCode": "tpu",
      "description": "Google-designed ASIC for matrix-multiply-heavy workloads (transformer training and inference). TPU v5p (training) and v5e (inference) are the production generations; TPU v6 'Trillium' announced 2024. Only available on Google Cloud Platform.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#aws-govcloud",
      "name": "AWS GovCloud (US)",
      "alternateName": [
        "AWS GovCloud",
        "AWS GovCloud (US)"
      ],
      "termCode": "aws-govcloud",
      "description": "Isolated AWS partition operated by US-cleared personnel that supports FedRAMP High, DoD IL2/IL4/IL5, ITAR, and CJIS workloads. Separate billing, separate IAM, no peering to commercial regions. Required for US federal civilian and defense AI workloads handling controlled data.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#azure-government",
      "name": "Azure Government",
      "alternateName": [
        "Azure Government",
        "Azure Gov"
      ],
      "termCode": "azure-government",
      "description": "Microsoft Azure regions physically isolated from commercial regions and staffed by screened US personnel. Authorizations: FedRAMP High, DoD IL2-IL6, CJIS, IRS-1075. Azure OpenAI Service in Government regions is the preferred path for federal customers wanting GPT-4-class models under those compliance regimes.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/security-compliance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#huggingface",
      "name": "Hugging Face",
      "alternateName": [
        "Hugging Face",
        "HF Hub",
        "huggingface.co"
      ],
      "termCode": "huggingface",
      "description": "Open ML platform - model hub, dataset hub, Inference Endpoints, AutoTrain, Spaces. De facto distribution channel for open-weight LLMs; the canonical citation target for model cards and dataset cards. Hub URL pattern hf.co/<org>/<model> serves both interactive UI and git-LFS for weights.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#transformers-library",
      "name": "Hugging Face transformers library",
      "alternateName": [
        "transformers library",
        "huggingface/transformers",
        "transformers.AutoModel"
      ],
      "termCode": "transformers-library",
      "description": "Hugging Face's Python framework for loading, training, and serving transformer models. Uniform AutoModel / AutoTokenizer API across 100k+ Hub models; foundation under fine-tuning recipes (TRL, PEFT) and most academic baselines.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-OpenAI-vs-Anthropic-vs-OpenSource.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dataset-card",
      "name": "Dataset Card",
      "alternateName": [
        "dataset card",
        "datasheet for datasets"
      ],
      "termCode": "dataset-card",
      "description": "Markdown sidecar at the root of a Hugging Face dataset describing provenance, collection method, intended use, known biases, and licensing. Operational counterpart to Model Card for training data; supported by the AI BoM / SBOM workflow for documenting what fed a model.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dollars-per-mtoken",
      "name": "$/MTok (dollars per million tokens)",
      "alternateName": [
        "$/MTok",
        "USD per million tokens",
        "cost per million tokens"
      ],
      "termCode": "dollars-per-mtoken",
      "description": "Standard unit for LLM API pricing. Input and output tokens are usually priced separately (output typically 3-5x input). The LLM-Cost-Calculator on slavin.ai uses this unit; vendor pricing pages all denominate in $/MTok or equivalent per-thousand-token figures (×1000 to compare).",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#throughput-tps",
      "name": "Throughput (Tokens per Second)",
      "alternateName": [
        "TPS",
        "tokens per second",
        "throughput"
      ],
      "termCode": "throughput-tps",
      "description": "Inference performance metric - number of output tokens generated per second per request, or aggregate across concurrent requests. Distinct from per-request latency; vendors and serving stacks (vLLM, TGI, TensorRT-LLM) report sustained TPS at various concurrency levels in their benchmarks.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#ttft",
      "name": "TTFT (Time to First Token)",
      "alternateName": [
        "TTFT",
        "time to first token"
      ],
      "termCode": "ttft",
      "description": "Latency from request submission to the first output token streaming back. Dominated by prompt-fill time (KV-cache build), so scales with input length and concurrency. UX-critical metric for chat applications and a primary tuning target for inference platforms.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#tpot",
      "name": "TPOT (Time Per Output Token)",
      "alternateName": [
        "TPOT",
        "time per output token",
        "inter-token latency"
      ],
      "termCode": "tpot",
      "description": "Average latency between consecutive output tokens during streaming generation. Reciprocal of per-request throughput; together with TTFT it characterises real-time UX. Often quoted at p50 and p99 for SLA contracts on serving platforms.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#robots-meta",
      "name": "Robots meta tag",
      "alternateName": [
        "robots meta tag",
        "<meta name=robots>"
      ],
      "termCode": "robots-meta",
      "description": "Per-page directive (index/noindex, follow/nofollow, noarchive, max-snippet, etc.) telling search-engine crawlers what to do with the page. Lives in <head> and applies only to that document; the granular complement to site-wide robots.txt.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#x-robots-tag",
      "name": "X-Robots-Tag (HTTP header)",
      "alternateName": [
        "X-Robots-Tag"
      ],
      "termCode": "x-robots-tag",
      "description": "HTTP response-header version of the robots meta directive. Necessary for non-HTML resources (PDFs, images, JSON datasets) where you can't embed a meta tag. Used across the SLAtech network to allow LLM-crawler ingest of datasets while keeping admin pages out of search.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#indexnow",
      "name": "IndexNow",
      "alternateName": [
        "IndexNow",
        "indexnow.org"
      ],
      "termCode": "indexnow",
      "description": "Open protocol (Bing, Yandex, Naver, Seznam) where a site pings search engines with the URLs it just published or updated, eliminating discovery latency vs. relying on crawl cadence. Implemented across the SLAtech network at /IndexNow.aspx with a per-site secret key.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Methodology.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#jsonrpc",
      "name": "JSON-RPC 2.0",
      "alternateName": [
        "JSON-RPC",
        "JSON-RPC 2.0"
      ],
      "termCode": "jsonrpc",
      "description": "Lightweight RPC protocol layered over JSON. Stateless request/response (with optional batching and notifications). The wire protocol underneath the Model Context Protocol (MCP); used at api.slatech.co.il/mcp.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://api.slatech.co.il/mcp/info"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#sse",
      "name": "Server-Sent Events (SSE)",
      "alternateName": [
        "SSE",
        "Server-Sent Events",
        "text/event-stream"
      ],
      "termCode": "sse",
      "description": "One-way HTTP streaming protocol (Content-Type: text/event-stream) where the server pushes named events to the browser. Foundation under most LLM streaming-token UIs and one of the supported MCP transports.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://api.slatech.co.il/mcp/info"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#graphql",
      "name": "GraphQL",
      "alternateName": [
        "GraphQL",
        "graphql.org"
      ],
      "termCode": "graphql",
      "description": "Query language and runtime where the client specifies exactly which fields of a typed schema it wants in one request, instead of multiple REST round-trips. Native query layer of Weaviate, GitHub API v4, Shopify Storefront; less common as a public API surface for AI services.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#grpc",
      "name": "gRPC",
      "alternateName": [
        "gRPC",
        "grpc.io"
      ],
      "termCode": "grpc",
      "description": "High-performance RPC framework over HTTP/2 with protocol buffers as the IDL. Default internal-service protocol at Google and adopted by Qdrant, Milvus, Weaviate, NVIDIA Triton for low-latency client/server communication where REST overhead matters.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/Compare-Vector-Databases.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#multi-agent-system",
      "name": "Multi-Agent System (MAS)",
      "alternateName": [
        "MAS",
        "multi-agent system",
        "agent ensemble"
      ],
      "termCode": "multi-agent-system",
      "description": "Architecture where multiple LLM-driven agents collaborate on a task - each with its own role, tool set, and memory - coordinated by a planner or via direct message passing. Productionized by AutoGen, CrewAI, LangGraph, Anthropic Computer Use orchestrator.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#swarm-pattern",
      "name": "Swarm (agent pattern)",
      "alternateName": [
        "Swarm",
        "OpenAI Swarm",
        "lightweight agent handoff"
      ],
      "termCode": "swarm-pattern",
      "description": "Lightweight multi-agent pattern (popularized by OpenAI's Swarm cookbook) where each agent can hand the conversation off to a peer specialized for a subtask via tool-call. Stateless control flow - no central planner - relying on the LLM to choose handoff targets.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/AI-Governance.aspx"
      ]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#batch-inference",
      "name": "Batch Inference",
      "alternateName": [
        "batch inference",
        "OpenAI Batch API",
        "Anthropic batch"
      ],
      "termCode": "batch-inference",
      "description": "Asynchronous LLM API mode where the client submits a JSON Lines file of requests and the provider returns results within a longer SLA window (typically 24h) at ~50% discounted token pricing. Used for bulk classification, summarization, dataset re-scoring, eval runs.",
      "inDefinedTermSet": {
        "@id": "https://www.slavin.ai/data/ai-glossary-network.json"
      },
      "sameAs": [
        "https://www.slavin.ai/LLM-Cost-Calculator.aspx"
      ]
    }
  ],
  "totalTerms": 200,
  "lastReview": "2026-06-21",
  "nextReviewDate": "2026-12-20",
  "feedback": "Term incorrect or missing? Contact info@slavin.ai"
}
