AI Wiki
Plain-English definitions of the AI terms that show up in pricing pages, model cards and agent docs. Each entry is short, opinionated and links to relevant tools on SoftPerceptron.
- TermLarge Language Model (LLM)
A neural network trained on massive text corpora to predict the next token, used for chat, coding, reasoning and as the brain inside AI agents.
- TermAI Agent
An LLM-based system that can plan, use tools and take multi-step actions toward a goal — not just answer a single prompt.
- TermAgentic AI
AI systems that act autonomously over many steps to achieve a goal, combining planning, tool use and memory.
- TermRetrieval-Augmented Generation (RAG)
A technique that retrieves relevant documents at query time and feeds them into the LLM's prompt, so the model can answer from your data instead of memorising it.
- TermFine-Tuning
Continuing to train a pre-trained model on your own data to specialise its behaviour, tone or domain knowledge.
- TermContext Window
The maximum number of tokens an LLM can read in a single request, including the prompt, retrieved documents and the model's own reply.
- TermTokens
The atomic units that LLMs read and write — sub-word pieces produced by a tokenizer. Pricing and context limits are measured in tokens, not words.
- TermPrompt Engineering
The practice of designing inputs to LLMs to reliably produce useful outputs — through structure, examples, role-setting and constraints.
- TermMultimodal AI
AI models that natively accept and/or produce more than one modality — text, image, audio, video — in a single model.
- TermTransformer
The neural-network architecture (Vaswani et al., 2017) that powers virtually every modern LLM, based on self-attention instead of recurrence.
- TermModel Context Protocol (MCP)
An open standard from Anthropic for connecting LLMs to external tools and data sources through a uniform server interface.
- TermPerceptron
The first algorithmically trained neural network, invented by Frank Rosenblatt in 1957, and the foundational unit that sparked the deep-learning revolution.
- TermSoft-Perceptron
The conceptual bridge between Rosenblatt's hard binary perceptron and modern, differentiable, probabilistic neural networks — the soft engine that powers today's AI.