AI Engineering Tools

Generative AI Engineering

Generative AI and LLM Basic Terms

Understand the model, input, context, generation, and operation terms used when working with generative AI and large language models.

12 matching terms

Models

Generative AI

Generative AI

Meaning

AI that creates new text, images, audio, code, or other content from learned patterns.

When to use it

Use the term when distinguishing content-producing systems from classification or prediction systems.

Practical example

Use generative AI to draft three product descriptions, then review them for factual accuracy.

Models

Foundation model

Foundation model

Meaning

A broadly trained model that can be adapted to many downstream tasks.

When to use it

Use it when discussing the base model behind a chatbot, agent, or specialized application.

Practical example

Select a foundation model, then add retrieval and task-specific instructions for customer support.

Models

Large language model (LLM)

Large language model (LLM)

Meaning

A model trained on large text collections to understand and generate language sequences.

When to use it

Use it for text generation, summarization, extraction, translation, and conversational tasks.

Practical example

Ask the LLM to summarize the meeting transcript into decisions, owners, and deadlines.

Models

Multimodal model

Multimodal model

Meaning

A model that can process or produce more than one data type, such as text and images.

When to use it

Use it when a task combines screenshots, documents, audio, video, or text.

Practical example

Provide a chart image and ask the multimodal model to explain the visible trend.

Input and context

Token

Token

Meaning

A unit of text processed by a language model; it may be a word, part of a word, or punctuation.

When to use it

Use token counts to estimate context capacity, latency, and usage cost.

Practical example

Trim repeated instructions when the input approaches the model's token limit.

Input and context

Context window

Context window

Meaning

The maximum amount of input and generated output a model can consider in one request.

When to use it

Use it to decide whether documents should be summarized, chunked, or retrieved selectively.

Caution

A larger context window does not guarantee that every included detail will be used correctly.

Practical example

Retrieve the five most relevant passages instead of placing the entire archive in the context window.

Input and context

System instruction

System instruction

Meaning

A high-priority instruction that defines the model's role, rules, and response behavior.

When to use it

Use it to set durable behavior shared by many user requests.

Practical example

You are a support assistant. Cite the supplied policy and say when evidence is missing.

Operation

Model weights

Model weights

Meaning

Learned numerical values that encode patterns acquired during training.

When to use it

Use the term when comparing base, fine-tuned, quantized, or open-weight models.

Practical example

Load the approved model weights in the isolated inference environment.

Operation

Inference

Inference

Meaning

The process of running a trained model on new input to produce an output.

When to use it

Use it when discussing serving, latency, hardware, or per-request cost.

Practical example

Batch non-urgent inference requests to improve throughput.

Operation

Knowledge cutoff

Knowledge cutoff

Meaning

The latest point in time substantially represented in a model's training knowledge.

When to use it

Check it before asking about recent events, prices, policies, or software versions.

Practical example

Use live search for events that occurred after the model's knowledge cutoff.

Generation

Sampling

Sampling

Meaning

The method used to choose each next token from the model's probability distribution.

When to use it

Adjust sampling when you need more deterministic or more varied outputs.

Practical example

Use conservative sampling for policy extraction and broader sampling for ideation.

Generation

Temperature

Temperature

Meaning

A generation setting that generally controls how concentrated or varied token choices are.

When to use it

Lower it for repeatable structured tasks and raise it cautiously for exploration.

Caution

The exact effect and supported range vary by model and provider.

Practical example

Set a low temperature for converting invoices into a fixed JSON schema.