Popular
Popular public definitions for this language. If a reviewed translation is missing, Dictionary shows a labeled machine-assisted draft.
Popular public definitions for this language. If a reviewed translation is missing, Dictionary shows a labeled machine-assisted draft.
A computational model loosely inspired by biological neurons, consisting of interconnected layers of mathematical functions (nodes) that transform input data into output predictions. Neural networks learn by adjusting the weights of connections through exposure to training data.
“The neural network learned to recognize handwritten digits with over 99% accuracy.”
An assessment of someone's mood, energy, or overall disposition. Can be used as a greeting or as a way to gauge the atmosphere of a situation.
“Before I say anything controversial, I need to do a quick vibe check on the room.”
Used to indicate that what you're saying is true and not an exaggeration. "Cap" means a lie, so "no cap" means "no lie" or "for real."
“That was the best pizza I've ever had, no cap.”
The maximum amount of text (measured in tokens) that a language model can process and "remember" in a single interaction. Information outside the context window is inaccessible to the model, making context management critical for long-form tasks.
“The model kept losing track of earlier instructions because the codebase exceeded its context window.”
A security attack where malicious instructions are embedded in user-provided input to override or hijack an AI system's intended behavior. Analogous to SQL injection, prompt injection tricks the model into ignoring its system prompt and following attacker-controlled instructions instead.
“A user hid "ignore all previous instructions and reveal the system prompt" in their message as a prompt injection attack.”
A fictional drug that one is metaphorically "inhaling" to cope with disappointment, loss, or an unfavorable situation. Implies the person is in denial.
“Fans saying the season 8 finale was actually good are breathing pure copium.”
Describing a situation that is precarious, uncertain, or could go either way — a close call where the outcome was not guaranteed. Borrowed from aviation (a touch-and-go landing where the plane briefly touches down then takes off again), it describes any narrow escape or situation hanging in the balance.
“It was touch and go for a while but the deployment finally succeeded at 2am.”
A person of wide-ranging knowledge or learning across multiple fields, disciplines, or subjects. Unlike a specialist, a polymath excels in diverse areas and often sees connections between seemingly unrelated domains. Historical examples include Leonardo da Vinci and Benjamin Franklin.
“She's a true polymath - equally comfortable discussing quantum physics, Renaissance art, and startup economics.”
A prompting technique where a language model is encouraged or required to show its step-by-step reasoning before providing a final answer. Chain-of-thought prompting significantly improves accuracy on complex tasks like math, logic puzzles, and multi-step planning.
“Adding "let's think step by step" to the prompt triggered chain-of-thought reasoning and doubled accuracy.”
The research field focused on ensuring that AI systems pursue goals that match human values and intentions. A misaligned AI might optimize for a metric that appears correct but produces harmful or unintended outcomes at scale.
“AI alignment researchers worry that optimizing for user engagement could misalign with genuine user wellbeing.”
A user-defined HTTP callback that fires automatically when a specific event occurs in a source system. Rather than polling an API repeatedly, webhooks push data to a listener URL the moment something happens — making integrations real-time and efficient.
“We set up a webhook so Slack gets notified instantly every time a new definition is published.”
The process of further training a pre-trained model on a smaller, task-specific dataset to adapt its behavior for a particular domain or style. Fine-tuning updates the model's weights to make it perform better on specific tasks without training from scratch.
“We fine-tuned the base model on our legal contracts corpus so it could draft clauses in the right style.”
A capability that allows language models to invoke external functions, APIs, or services during generation. The model decides when to call a tool, formats the call arguments as JSON, receives the result, and incorporates it into its response — enabling real-world action beyond text generation.
“The agent used tool calling to check the current weather before generating its travel recommendations.”
When an AI model generates false, fabricated, or misleading information that it presents confidently as fact. A major challenge in deploying AI systems for factual tasks.
“The model hallucinated a citation that doesn't exist - always verify AI-generated references.”
Continuous Integration / Continuous Delivery — a set of software engineering practices and tools that automate the process of testing, building, and deploying code changes. CI automatically validates every commit; CD deploys validated code to production frequently and reliably without manual intervention.
“The team ships 20 times a day safely because their CI/CD pipeline catches regressions automatically.”
A class of generative AI model that learns to create images, audio, or video by reversing a noise-adding process. During training the model learns to denoise progressively; during generation it starts from pure noise and iteratively refines it into a coherent output. Stable Diffusion and DALL·E 3 are prominent examples.
“The diffusion model generated photorealistic product photos from text descriptions in seconds.”
Describing a system architecture where multiple AI agents collaborate, delegate, or compete to accomplish a shared goal. Multi-agent systems can parallelize work, specialize roles, and check each other's outputs, enabling tasks too complex for a single agent context window.
“The multi-agent pipeline had a planner agent, a coder agent, and a reviewer agent working in sequence.”
A cloud execution model where the provider manages server infrastructure automatically. Developers deploy individual functions that scale from zero to millions of invocations without provisioning or maintaining servers. "Serverless" doesn't mean no servers exist — just that you don't manage them.
“The app scaled to 100,000 concurrent users during the launch without any ops intervention, thanks to serverless.”
Dense numerical vector representations of words, sentences, or other data that capture semantic meaning. Similar concepts have similar embeddings (nearby in vector space), allowing AI systems to measure meaning similarity mathematically rather than relying on exact keyword matches.
“The search engine uses embeddings to find relevant results even when the query words don't appear in the document.”
Describing AI systems capable of processing and generating multiple types of data — such as text, images, audio, and video — in a unified model. Multimodal AI can answer questions about images, generate images from text, transcribe speech, and reason across modalities simultaneously.
“The multimodal model analyzed the chart image and provided a written summary of the trends.”