No term matches your search.
AI — Fundamentals
15 termsArtificial intelligence (AI)
AI — Fundamentals
A set of techniques enabling machines to perform tasks that normally require human intelligence: language understanding, pattern recognition, decision-making. Modern AI is based on machine learning.
LLM (Large Language Model)
AI — Fundamentals
A large-scale language model trained on vast text corpora. LLMs understand and generate natural language with remarkable quality. Examples: GPT-4o (OpenAI), Claude 3.5 (Anthropic), Llama 3 (Meta), Mistral (Mistral AI).
See also: GPT-4oClaudeMistralLlama
Retrieval-Augmented Generation (RAG)
AI — Fundamentals
An architecture where the LLM is augmented by a search in an external document database. Rather than answering from its training memory, the model consults your specific documents and generates a response based on those sources. This enables precise, traceable and up-to-date answers.
See also: Intelligent document searchVector databaseEmbeddings
Prompt
AI — Fundamentals
An instruction or question submitted to an LLM to obtain a response. The quality of the prompt directly influences the quality of the response. Prompt engineering is the art of formulating optimal instructions to get the best behaviour from a model.
See also: Prompt engineeringPrompt injection
Tokens
AI — Fundamentals
The processing unit of an LLM. One token corresponds approximately to 3/4 of a word in English. LLMs have a limited context window (e.g. 128,000 tokens for GPT-4o) that determines how much text they can process in a single request.
Context window
AI — Fundamentals
The maximum amount of text an LLM can process in a single interaction, measured in tokens. The larger the window, the more text the model can analyse simultaneously. GPT-4o supports 128,000 tokens (~96,000 words), roughly 200 pages.
See also: Tokens
Hallucination
AI — Fundamentals
A phenomenon where an LLM generates a plausible but factually incorrect response. It is one of the main challenges of generative AI. SkaLean's RAG pipeline mitigates this risk by grounding every response in your verified source documents.
See also: RAGSource citations
Fine-tuning
AI — Fundamentals
The process of re-training a pre-trained LLM on a specific dataset to improve its performance in a particular domain. Allows the model to adapt to specialized terminology, a writing style or precise business rules.
See also: Custom language modelBase model
Inference
AI — Fundamentals
The process by which an AI model generates a prediction or response from an input. Requires significant computing power. SkaLean runs inference on local sovereign GPUs to ensure your data never leaves your country.
See also: Sovereign GPUOptimized inference engine
AI agent
AI — Fundamentals
An autonomous AI system capable of planning and executing a sequence of actions to achieve a goal. Unlike a simple chatbot, an agent can call tools, consult external data, and chain multiple reasoning steps (ReAct loop).
See also: ReAct LoopMCPOrchestration
Embeddings (Vectors)
AI — Fundamentals
A mathematical representation of the semantic meaning of a text as a high-dimensional numerical vector. Two texts with similar meaning will have similar vectors. Embeddings are the foundation of semantic searches in the RAG pipeline.
See also: Vector databaseRAGChunking
Chunking
AI — Fundamentals
The splitting of a document into optimally sized fragments (chunks) before indexing in the vector database. Smart chunking preserves context: not too small (loses meaning) nor too large (dilutes precision). SkaLean uses adaptive semantic chunking.
See also: RAGEmbeddingsVector database
Temperature
AI — Fundamentals
A parameter that controls the creativity of an LLM's responses. Temperature 0 = deterministic and precise responses (ideal for factual tasks and RAG). Temperature 1 = varied and creative responses. SkaLean uses low temperatures for business use cases.
Prompt engineering
AI — Fundamentals
The discipline of designing optimal instructions to get the best behaviour from an LLM. Includes writing the system prompt, structuring examples and managing constraints. SkaLean includes optimized business prompt templates.
See also: PromptSystem prompt
System prompt
AI — Fundamentals
A base instruction provided to the LLM before any user interaction. Defines the AI's role, tone, rules of conduct and constraints. In SkaLean, each agent has a customizable system prompt to reflect your brand and policies.
See also: Prompt engineeringAI agent
Technical architecture
12 termsIntelligent document search
Technical architecture
An automatic process that transforms a raw document into a cited, sourced AI answer. SkaLean combines ingestion, semantic preprocessing, vector indexing and LLM synthesis to retrieve the right information from your documents, even when phrased differently from your question.
See also: RAGVector knowledge baseEmbeddings
Vector database
Technical architecture
A specialized database storing embedding vectors and enabling search by semantic similarity (nearest neighbors). Unlike SQL databases, vector search retrieves semantically similar documents even if the exact words differ.
See also: Vector knowledge baseEmbeddingsRAG
Vector knowledge base
Technical architecture
The semantic storage and search infrastructure used by SkaLean to index your documents. Supports millions of vectors, metadata filtering and hybrid search (semantic + keywords), ensuring precise, sourced AI responses.
See also: Vector databaseEmbeddings
Optimized inference engine
Technical architecture
A high-performance software layer enabling AI models to run with minimal latency and high throughput. SkaLean uses its own sovereign GPUs to run models like Llama 3 or Mistral, serving multiple simultaneous requests without dependency on third-party APIs.
See also: InferenceSovereign GPUAI hardware acceleration
AI hardware acceleration
Technical architecture
Optimization of LLM inference at the hardware level (GPU) for speed gains of 2 to 4x compared to standard inference. SkaLean deploys this optimization in production to guarantee response times under 200ms.
See also: Optimized inference engineSovereign GPUInference
Custom language model
Technical architecture
An AI model fine-tuned on an organization's specific business data (medical, legal, financial). SkaLean offers sector-specific fine-tuning of open-source models to adapt vocabulary, tone and knowledge to your sector's precise needs.
See also: Fine-tuningSovereign GPU
Real-time synchronization
Technical architecture
A mechanism allowing multiple users to work simultaneously on the same document or workflow without conflicts or modification overwrites. SkaLean integrates real-time collaboration in AI Studio for co-editing documents and knowledge bases.
See also: Real-time collaborationAI Studio
Row-Level Security (RLS)
Technical architecture
A PostgreSQL security mechanism restricting access to table rows based on the user's identity. SkaLean uses RLS for multi-tenant isolation: each client can only access their own data, even if stored in the same database.
See also: Multi-tenantPostgreSQL
Multi-tenant
Technical architecture
An architecture where multiple clients (tenants) share the same infrastructure while having their data isolated. SkaLean is multi-tenant with database-level isolation (RLS): clients share GPU resources and infrastructure costs, but their data is strictly separated.
See also: Row-Level SecurityData isolation
Event streaming
Technical architecture
A service-to-service communication architecture based on real-time event streams. SkaLean uses event streaming for communication between its modules: authentication, messages, automation executions, agent interactions, etc. Guarantees reliable event delivery.
WebSocket
Technical architecture
A bidirectional real-time communication protocol between a browser and a server. SkaLean uses WebSockets for real-time AI chat, automation status notifications and real-time document collaboration.
Webhook
Technical architecture
A mechanism allowing an application to send an HTTP notification to another application when an event occurs. SkaLean exposes webhooks for all key events: message received, workflow executed, agent escalation. Enables integration with third-party systems.
See also: APIIntegration
Security & compliance
11 termsData sovereignty
Security & compliance
The principle that an organization's data must remain under the legal jurisdiction and physical control of its home country. SkaLean guarantees sovereignty by hosting data and AI computations on servers physically located in your country.
Data protection regulation
Security & compliance
A set of laws governing the collection, use and sharing of personal data. Imposes obligations including data residency, right to portability and incident notification. Examples: GDPR (Europe), CCPA (USA), and applicable local laws in your territory.
See also: GDPRData sovereignty
GDPR
Security & compliance
General Data Protection Regulation. European regulation on the protection of personal data, also applicable to organizations outside the EU processing data of European residents. SkaLean is GDPR-compliant for its European clients.
See also: Data sovereignty
HIPAA
Security & compliance
Health Insurance Portability and Accountability Act. US law on the protection of health data. SkaLean meets all 17 HIPAA criteria for medical sector clients: access control, audit trail, encryption, recovery plan, BAA agreement.
See also: Health dataEncryption
OWASP LLM Top 10
Security & compliance
A list of the 10 most critical security risks specific to LLM-based applications, published by the Open Web Application Security Project. SkaLean protects against 10/10 of these risks: prompt injection, data leakage, hallucination, denial of service, etc.
See also: Prompt injectionSecurity
Prompt injection
Security & compliance
An attack where a malicious user inserts instructions into a message to manipulate an LLM's behaviour (e.g. ignoring security rules, revealing confidential information). SkaLean implements multiple protection layers against these attacks.
See also: OWASP LLMSecurity
PII (Personally Identifiable Information)
Security & compliance
Personal data that can directly or indirectly identify an individual: name, address, social security number, credit card number, etc. SkaLean automatically detects and masks 15 types of PII before sending to the LLM.
See also: PII protectionGDPR
End-to-end encryption
Security & compliance
A bank-grade symmetric encryption standard used by SkaLean for data at rest. The 256-bit key is considered unbreakable with current technology, and the authentication mode guarantees data integrity against any tampering.
See also: TLS 1.3Security
TLS 1.3
Security & compliance
A security protocol encrypting network communications. SkaLean uses TLS 1.3 (the latest version) for all communications in transit: between browser and server, between internal services, and between SkaLean infrastructure and external LLM APIs.
See also: End-to-end encryptionSecurity
Multi-factor authentication (MFA/2FA)
Security & compliance
An identity verification mechanism combining multiple factors: something you know (password), something you have (phone), something you are (biometrics). SkaLean supports TOTP (Google Authenticator) and WebAuthn (physical security key).
See also: SSOSecurity
SSO (Single Sign-On)
Security & compliance
A mechanism allowing a user to authenticate once to access multiple applications. SkaLean supports SSO via SAML 2.0 and OpenID Connect, enabling integration with Active Directory, Okta, Azure AD and other identity providers.
See also: Multi-factor authentication
Automation & workflows
8 termsWorkflow
Automation & workflows
A structured sequence of automated steps executed to accomplish a business process. In SkaLean AI Automation, a workflow is defined visually with nodes (steps) and connections (data flows). Can include conditions, loops and branches.
Trigger
Automation & workflows
An event that initiates the execution of an automated workflow. Examples of SkaLean triggers: email received, form submitted, scheduled time (cron), incoming webhook, CRM event, WhatsApp message received. A workflow can have multiple triggers.
See also: WorkflowWebhook
Node
Automation & workflows
An individual step in an automation workflow. Each node performs a specific action: extract data, call an API, apply a condition, transform, send an email, update a CRM. Nodes are connected to form the execution flow.
See also: WorkflowTrigger
Connector (Native integration)
Automation & workflows
A pre-built module allowing SkaLean to connect to a third-party application without development. SkaLean includes 200+ connectors: Salesforce, HubSpot, QuickBooks, Google Workspace, Microsoft 365, Slack, Shopify, Stripe, Twilio, etc.
See also: APIWebhook
Cron (Scheduled task)
Automation & workflows
A system for scheduling task executions at defined times. Cron expressions allow very precise scheduling: "every Monday at 9am", "the 1st of the month", "every 15 minutes". SkaLean supports cron triggers for periodic automations.
See also: TriggerWorkflow
Orchestration engine
Automation & workflows
A central component that executes automation workflows by coordinating steps, conditions and service calls. SkaLean's AI Automation module includes a native orchestration engine with built-in AI nodes, data sovereignty and turnkey management.
See also: WorkflowAutomation
Retry
Automation & workflows
An automatic mechanism that retries the execution of a failed step. SkaLean AI Automation includes native error handling with configurable retry: number of attempts, delay between attempts (exponential backoff), final failure notification.
See also: WorkflowMonitoring
Information extraction (IE)
Automation & workflows
The AI's ability to identify and extract structured information from unstructured text. Examples: extracting amounts from a PDF invoice, identifying parties in a contract, extracting medications from a prescription. SkaLean uses LLMs for this extraction.
See also: NLPAutomation
AI agents & channels
11 termsConversational agent (Chatbot)
AI agents & channels
A program simulating a human conversation to answer user questions. SkaLean's AI Agent goes far beyond the traditional chatbot: it accesses your data in real time, executes actions (book, update), and adapts to the context of each conversation.
See also: AI agentNLP
Omnichannel
AI agents & channels
A customer service approach integrating all communication channels (phone, web chat, email, WhatsApp, SMS, social media) into a consistent experience. SkaLean manages 10 channels from a single control panel with a unified conversation history.
See also: WhatsApp BusinessAI Voice
WhatsApp Business API
AI agents & channels
Meta's official API allowing businesses to integrate WhatsApp into their communication systems. SkaLean uses the WhatsApp Business API to deploy AI agents capable of receiving and sending messages on WhatsApp from your professional number.
See also: OmnichannelAI agent
AI Voice
AI agents & channels
Technology allowing an AI agent to converse orally via telephone. Combines speech recognition (STT), natural language processing (NLP) and speech synthesis (TTS). SkaLean deploys AI phone agents indistinguishable from a human for appointment booking and support.
See also: Text-to-SpeechSpeech-to-Text
TTS (Text-to-Speech)
AI agents & channels
Technology converting text into synthetic speech. SkaLean uses high-quality TTS engines for the AI voice of phone agents. Modern voice quality is indistinguishable from a human voice.
See also: AI VoiceSTT
STT (Speech-to-Text)
AI agents & channels
Technology converting speech into text. An essential component of SkaLean voice agents. Transcription is done in real time (< 500ms) to allow a fluid conversation. Supports French, Arabic and several regional dialects.
See also: AI VoiceTTS
Smart escalation
AI agents & channels
A mechanism by which an AI agent automatically detects situations beyond its capabilities and transfers the conversation to a human agent with the full context. SkaLean configures escalation rules: sensitive topics, detected dissatisfaction, complex requests.
See also: AI agentHandoff
Proactive message
AI agents & channels
A message sent by the AI agent at the initiative of the system rather than in response to a user. Examples: appointment reminder, order status notification, renewal alert, personalized offer. Requires prior user consent (opt-in).
See also: OmnichannelWhatsApp Business API
CSAT (Customer Satisfaction Score)
AI agents & channels
A metric measuring customer satisfaction after an interaction. Calculated on a 1–5 or 1–10 scale via a simple question. SkaLean automatically collects CSAT after each AI agent interaction and presents trends in the dashboard.
See also: NPSDashboard
ReAct Loop
AI agents & channels
A Reasoning + Acting loop allowing an AI agent to reason step by step before acting. The agent thinks (Thought), decides on an action (Act), observes the result (Observation), then thinks again. Enables complex multi-step reasoning.
See also: AI agentMCP
MCP (Model Context Protocol)
AI agents & channels
Anthropic's open protocol allowing AI agents to connect securely and standardly to external data sources and tools (CRM, calendar, database, APIs). SkaLean implements MCP for real-time agent integrations.
See also: AI agentReAct LoopConnector
Business & ROI
9 termsAIaaS (AI as a Service)
Business & ROI
A model for delivering artificial intelligence as a cloud or managed service, avoiding the need for organizations to build and maintain their own AI infrastructure. SkaLean is a sovereign AIaaS: the AI infrastructure is managed by SkaLean, data stays with the client.
ROI (Return on Investment)
Business & ROI
Return on investment calculated as (gain - cost) / cost × 100. For SkaLean, typical ROI includes: hours saved × hourly cost + additional revenue generated - SkaLean subscription. Our clients see measurable results from month 2.
TCO (Total Cost of Ownership)
Business & ROI
Total cost of ownership including all direct and indirect costs of a system over its lifetime: licences, infrastructure, integration, training, maintenance, support. The TCO of a fragmented stack (5 SaaS tools) is generally 3x the listed price.
See also: ROISaaS
SaaS (Software as a Service)
Business & ROI
A software distribution model where the application is hosted in the cloud and accessible via a browser for a subscription fee. ChatGPT, Intercom and HubSpot are SaaS products. SaaS fragmentation (5+ tools) is one of the problems SkaLean solves.
See also: AIaaSTCO
Turnkey
Business & ROI
A delivery mode where the provider configures, deploys and trains without the client needing to do any technical work. SkaLean delivers its solutions turnkey: from initial configuration to team training, including integrations with existing tools.
Beta pilot
Business & ROI
A limited deployment phase of a product with a restricted group of selected clients to validate performance in real conditions. SkaLean is launching its beta pilot in Q2 2026 with 10 selected organizations.
SMB (Small and Medium-sized Business)
Business & ROI
An organization typically counting between 1 and 500 employees, with limited technical and budget resources compared to large enterprises. SkaLean specifically targets SMBs that want AI without hiring data scientists or investing in complex infrastructure.
No-show
Business & ROI
An appointment or reservation not honoured without prior cancellation. A costly problem in slot-based sectors (medicine, restaurants, hair salons, automotive): every no-show represents lost revenue and a blocked slot. SkaLean automated reminders reduce no-shows by 68%.
Scalability
Business & ROI
A system's ability to handle growing load without performance degradation. For SMBs, AI scalability means being able to increase request volume, automations or channels without hiring proportionally. SkaLean scales automatically according to your needs.
LLM models & providers
6 termsGPT-4o
LLM models & providers
OpenAI's multimodal model (2024) combining text, image and audio understanding. "o" for "omni". Excellent for complex reasoning tasks, document analysis and high-quality content generation. Available in SkaLean.
See also: LLMOpenAI
Claude 3.5 Sonnet
LLM models & providers
Anthropic's LLM model renowned for its reliability, balanced responses and resistance to hallucinations. Particularly suited to legal, medical and analytical tasks requiring precision and consistency. Available in SkaLean.
See also: LLMAnthropic
Llama 3
LLM models & providers
Meta AI's family of open-source LLM models. The key advantage: can be deployed on your own sovereign GPUs. SkaLean uses Llama 3 (8B and 70B parameters) for local sovereign inference, enabling processing without any data transit to external APIs.
See also: Sovereign GPUOptimized inference engineFine-tuning
Mistral AI
LLM models & providers
A French startup (Paris) developing high-performance open-source LLMs. Mistral 7B and Mixtral 8x7B are recognized for their excellent performance-to-size ratio. Particularly well suited to French. Can be deployed sovereignly on local GPU in SkaLean.
See also: LLMSovereign GPU
Google Gemini
LLM models & providers
Google DeepMind's family of multimodal LLM models. Available in Flash (fast and economical), Pro (balanced) and Ultra (very powerful) versions. Gemini Pro is available via the Google API in SkaLean for use cases not requiring strict sovereignty.
See also: LLM
LLM routing
LLM models & providers
A mechanism that automatically selects the optimal LLM for each request based on task type, cost constraints, sovereignty and performance. SkaLean implements smart routing: simple requests → fast/economical model, complex requests → powerful model.
See also: LLMSovereign GPU
NLP & language processing
8 termsNLP (Natural Language Processing)
NLP & language processing
A subfield of AI dealing with human natural language. Includes text understanding (NLU), text generation (NLG), translation, sentiment analysis, entity extraction, etc. Modern LLMs are the most advanced form of NLP.
See also: LLMNLUNLG
NLU (Natural Language Understanding)
NLP & language processing
The NLP component enabling a machine to understand the meaning, intent and context of human text. A SkaLean agent uses NLU to understand what the user wants, even when expressed implicitly or with spelling mistakes.
See also: NLPIntent
Intent
NLP & language processing
The action or goal a user wants to accomplish, expressed in a message. Example: "I want to cancel my appointment" → intent = cancel_appointment. Intent recognition allows the AI agent to trigger the right response flow.
See also: NLUEntity
Entity
NLP & language processing
Specific information extracted from a message: person name, date, number, location, product. In "I want an appointment on March 15 at 2pm", the entities are: date=March 15, time=2pm, action=book_appointment. Entities allow the agent to act with precise data.
See also: NLUIntent
Sentiment analysis
NLP & language processing
Identification of the emotional tone of a text: positive, negative or neutral. SkaLean analyses the sentiment of customer interactions to detect dissatisfaction and automatically trigger escalation to a human agent before the client is lost.
See also: NLPSmart escalation
Automatic summarization
NLP & language processing
The generation of a concise summary of a long text. SkaLean AI Studio can automatically summarize reports, meeting notes, contracts or emails. Particularly useful for meetings, where the transcript can be summarized with key points and action items.
See also: NLPAI Studio
Machine translation
NLP & language processing
Translation of text from one language to another by AI. Modern LLMs (GPT-4o, Claude) are excellent translators for common languages. SkaLean can handle multilingual conversations and automatically translate indexed documents.
See also: NLPMultilingualism
OCR (Optical Character Recognition)
NLP & language processing
Technology converting images of text (scanned documents, photos) into usable digital text. SkaLean integrates OCR to index scanned documents, invoice photos or business cards in the AI Studio document base.
See also: AI StudioRAG
A term is missing from this glossary?
Contact us and we'll add it in the next update.
Suggest a termReady to get started ?
Put these concepts into practice with SkaLean. Free 30-minute diagnostic.