Quick recall mode

Keywords first, details second.

Use this mode when you want memory triggers only: title, summary, tags, and bullet anchors without long answers getting in the way.

Clear

Results update as you type. Press / to jump straight into search.

Quick recall

374 cards

Artificial Intelligence Medium Theory

What is MCP in AI tooling?

MCP is a protocol pattern for connecting models to external tools, resources, and structured context in a standard way.

  • Model talks through a protocol
  • Tools and resources are exposed cleanly
  • Goal is interoperability
Artificial Intelligence Easy Theory

What is model context window?

The context window is the maximum amount of tokenized input and working context a model can handle in one interaction.

  • Includes prompt and retrieved context
  • Longer is useful but not free
  • Too much context can still hurt quality
Artificial Intelligence Medium Theory

What is model routing?

Model routing chooses different models or configurations based on task complexity, latency needs, cost, or safety requirements.

  • Cheaper models for simple tasks
  • Stronger models for harder tasks
  • Routing policy is a product decision
Artificial Intelligence Easy Theory

What is prompt engineering?

Prompt engineering is the practice of structuring instructions and context so a model produces more reliable outputs.

  • Instruction quality matters
  • Examples can shape behavior
  • Evaluation is still required
Artificial Intelligence Medium Theory

What is prompt injection?

Prompt injection is when untrusted input tries to override instructions or manipulate the model into unsafe behavior.

  • Often comes through retrieved or user content
  • Model sees it as text not trusted code
  • Needs system design defenses