Glossary
The AI, software engineering, and enterprise platform terms that show up in Prosigns engagements: defined by senior engineers who use them, not by marketing copy. Skim the index, or read the long-form entry for context, common pitfalls, and how we approach each one in production.
AI & Machine Learning
Generative AI is a class of machine learning models that produce new content, text, images, audio, video, code, in response to a prompt. In enterprise settings, it powers chatbots, document analysis, code assistants, and decision support, typically built on top of a foundation model like GPT, Claude, or Gemini.
Read entryMLOps is the engineering discipline that takes machine learning models from notebook prototypes to production systems. It covers CI/CD for ML, model registries, feature stores, monitoring, retraining, and the operational practices that keep AI working after launch.
Read entryProduction AI is artificial intelligence deployed as a real system: running under SLA, monitored, secured, and operated by an on-call team, rather than a notebook prototype or proof-of-concept. The bar is the same as any production software: reliability, security, observability, and accountable ownership.
Read entryRetrieval-Augmented Generation (RAG) is an AI architecture that retrieves relevant documents from a knowledge base before generating an answer with a large language model. It grounds responses in your real data, reduces hallucinations, and lets you cite sources for every answer.
Read entryA vector database stores high-dimensional embeddings: numerical representations of text, images, or other data, and finds the nearest matches by similarity at scale. It's the retrieval layer in most production AI systems, powering semantic search, RAG, recommendation engines, deduplication, and any application that needs to ask 'what's most similar to this?'
Read entry