Skip to content

#architecture

4 approved public terms with this tag.

API-First

/eɪ piː aɪ fɜːrst/adjective
Technology

A design philosophy where the API contract is defined and agreed upon before any implementation begins. API-first teams treat the API as the product — writing the specification first (e.g., in OpenAPI), getting feedback from consumers, then building both client and server simultaneously against the agreed contract.

Their API-first approach meant the mobile app team could start building against the spec before the backend was done.

Neural Network

/ˈnjʊərəl ˈnetwɜːk/noun
AI & Technology

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.

RAG

/ræɡ/noun
AI & Technology

Retrieval-Augmented Generation - An AI architecture pattern that combines a language model with external knowledge retrieval to provide more accurate and up-to-date responses.

We implemented RAG to give our chatbot access to the latest product documentation.

Transformer

/trænsˈfɔːrmər/noun
AI & Technology

A neural network architecture introduced in 2017 ("Attention Is All You Need") that underlies virtually all modern language models. Transformers use self-attention mechanisms to process entire sequences in parallel, capturing long-range dependencies that earlier recurrent architectures struggled with.

Every major LLM from GPT to Claude is built on the transformer architecture.