AI Models

What are AI Models?

AI models are software systems trained on large datasets to learn patterns and then turn new inputs into useful outputs, such as predictions, classifications, or generated text and images. They apply learned parameters (often in architectures like neural networks) to perform tasks with limited ongoing human direction. Common categories include traditional machine learning models, deep learning models, generative models, and natural language processing (NLP)-focused models.

In plain English, AI models are the “brains” inside AI-powered products and features—from document processing and extraction systems to copilots, AI agents, and agentic automation.

Summary

This page introduces AI models, the types of models available, the key lifecycle stages that turn a research artifact into a production system, and the practical applications you can expect to see across the enterprise. We also show how AI models fit inside the broader category of Business Orchestration and Automation Technologies (BOAT)—the unified control plane that makes AI usable, governable, and scalable across people, systems, and agents.

Whether you are evaluating your first foundation model or operating a fleet of agents across hundreds of workflows, the same principle holds: a model alone is not a solution. The lifecycle around it is.

What are AI Models? — Expanded Definition

At the most basic level, an AI model is a function: it maps input signals to output signals.

  • Inputs can be text, images, audio, video, tables, events, APIs, and more.

  • Outputs can be classifications, predictions, extracted fields, generated text, recommended actions, and tool calls (just to name a few examples).

The “AI” part comes from learning: instead of hand-coding rules, the system learns parameters from examples. That is the line that separates an AI model from a traditional program. A program runs the rules a developer wrote; a model applies patterns it learned from data.

You will hear AI models referred to as ML models, neural networks, foundation models, LLMs, or generative models. Those terms are not interchangeable, but they all point to the same underlying idea: software that learns patterns from data and applies them at runtime.

Major families of AI models

  • Traditional machine learning (ML): great for structured/tabular data and clear prediction targets.

  • Deep learning: neural networks that learn rich representations (features) automatically—often best for perception tasks (vision, speech) and high-dimensional data.

  • Foundation models (including LLMs): large pre-trained models that can be adapted to many tasks. LLMs are the language-focused subset and power most "chat" and "copilot" experiences; foundation models more broadly include vision and multimodal systems.

  • Multimodal models: models that understand or generate across modalities (e.g. images, audio, text, and other rich media types).

  • Reinforcement learning (RL): models that learn by interacting with an environment (rewards/penalties). This is common in control, robotics, and optimizing policies/strategies. Today, RL is also central to how modern LLMs are aligned and trained to reason, through techniques like reinforcement learning from human feedback (RLHF).

Related terms you’ll see in practice

  • Checkpoint: a saved snapshot of model parameters at a point in training (common with deep learning/LLMs).

  • Embeddings: vector representations of text/images used for similarity search, clustering, retrieval, and matching.

  • Prompt: the input instructions/context for an LLM at inference time.

  • Inference vs. training: training is learning parameters from data (slow/expensive). Inference is using the trained model to produce outputs (fast/operational).

  • Fine-tuning: training a pre-trained model further on your data/task.

  • RAG (retrieval-augmented generation): giving the model relevant documents at inference time (instead of, or in addition to, fine-tuning).

  • Agents vs. copilots: a copilot assists a human in-the-loop (draft, suggest, explain). An agent can plan and execute steps, call tools, and complete tasks with guardrails and approvals.

Core components (a practical mental model)

Most AI solutions combine the same five building blocks. In UiPath’s BOAT framing, these are the elements a Business Orchestration and Automation Technologies platform brings together natively:

  • Model(s) — the predictor/generator.

  • Context — prompts, system instructions, policies, and retrieved knowledge.

  • Tools — APIs, databases, automation actions, search, ticketing, CRMs.

  • Guardrails — rules, filters, access control, approvals, and safety checks.

  • Evaluation + monitoring — automated tests, evals, telemetry, and incident workflows.

The end-to-end pipeline (with guardrails)

A robust AI pipeline typically looks like:

  • Input ingestion (text/doc/image/event).

  • Pre-processing (normalization, PII redaction, language detection).

  • Routing (choose model + pattern: classify vs. extract vs. generate vs. act).

  • Execution (inference call; tool calls if needed).

  • Validation (schema checks, groundedness checks, policy checks).

  • Post-processing (formatting, citations, confidence scoring).

  • Human-in-the-loop (HITL) where required (review, approve, correct).

  • Logging + audit (prompts, outputs, decisions, and user actions).

  • Feedback loop (labels, corrections, re-train/re-prompt/re-route).

WHY THIS MATTERS FOR THE ENTERPRISE

Most teams can stand up a prototype in a weekend. The leap to production is the lifecycle above—and that lifecycle is exactly what a BOAT platform like UiPath orchestrates. UiPath Maestro™ sits at the center, coordinating models, robots, agents, and people across long-running processes so the model never runs alone.

Benefits of AI Models

When AI models are deployed inside a governed orchestration layer rather than as one-off scripts, the upside compounds across three dimensions:

  • Technical benefits
  • Business benefits
  • Governance benefits

Technical benefits

  • Higher accuracy and coverage on complex patterns (language, vision, anomalies).

  • Faster development via transfer learning (start from pre-trained capability).

  • Modularity through APIs (swap models, version them, route by policy).

  • Better UX (natural language interfaces, summarization, semantic search).

GettyImages-982888464

Business benefits

  • Cost reduction (less manual review, fewer handoffs, fewer errors).

  • Higher throughput (faster case handling, faster document processing).

  • Improved customer/employee experience (shorter resolution time, better personalization).

GettyImages-1182850660 - 1200x800

Governance benefits

  • Measurable policies (what’s allowed, what’s blocked, what’s escalated).

  • Auditability (who asked what, what the model returned, what actions occurred).

  • Policy-based routing (e.g., on-prem vs. cloud, “safe” vs. “powerful” models).

man standing with arms crossed

This last category is where most enterprise AI programs either succeed or stall. Gartner projects that adoption of BOAT platforms will rise from roughly 5% of enterprises today to 70% by 2030, precisely because organizations are discovering that the value of an AI model is bounded by the governance wrapped around it.

Challenges of AI Models

There are six recurring failure modes. Each one has a known remedy.

1) Data quality & bias

Problem: Models learn what your data teaches them—including gaps and bias.

Fixes

  • Create data cards (source, consent, representativeness, known issues).

  • Use balanced evaluation sets across customer segments and edge cases.

  • Add HITL review for high-risk decisions (and log corrections).

2) Safety & compliance

Problem: Prompt injection, sensitive data leakage, toxic output, policy violations.

Fixes

  • Enforce least-privilege tool access (scoped tokens, role-based permissions).

  • Use content filtering + structured outputs (schemas, allow-lists).

  • Maintain audit logs and incident runbooks.

3) Latency and cost

Problem: Large models can be slow and expensive at scale.

Fixes

  • Route: small/fast model by default; big model only when necessary.

  • Cache frequent queries; use batching and streaming.

  • Prefer extraction/classification models when generation isn’t needed.

4) Vendor lock-in

Problem: You optimize one provider’s APIs.

Fixes

  • Standardize an abstraction layer (model gateway + policy routing).

  • Keep prompts, evals, and datasets portable.

  • Use open formats for logs, traces, and embeddings.

5) Hallucinations

Problem: LLMs can produce plausible but incorrect statements.

Fixes

  • Use RAG for factual tasks (and require citations/grounding.

  • Apply verification: cross-check against trusted sources/schemas.

  • Add confidence + refusal behaviors (“I don’t know” + escalation).

6) Evaluation gaps

Problem: Teams ship based on a handful of impressive examples rather than a real test set. The model passes spot-checks in development, then fails on edge cases, format variations, or rare-but-critical inputs once it hits production. Without a baseline, regressions go unnoticed when prompts, models, or retrieval configs change.

Fixes

  • Build a "golden set" of representative inputs (including edge cases, adversarial examples, and the cases that matter most to the business) before launch, not after.

  • Define task-specific metrics up front: accuracy, extraction F1, groundedness, format compliance, refusal correctness, cost per task.

  • Run evals as regression gates in CI/CD, so every prompt or model change is scored against the same benchmark before it ships.

  • Re-evaluate continuously in production using sampled real traffic, not just the original test set — the input distribution will drift.

Real-World Use Cases

AI models are not a category in search of a job. They earn their keep in five practical patterns across the enterprise—each of which already runs in production on the UiPath Platform™ today.

icon

Document intelligence & IDP

  • Classify documents, extract fields, validate totals, detect missing pages.

  • Combine OCR + specialized extractors + LLM-based reasoning for edge cases.

icon

Software & test automation

  • Generate test cases, explore UI flows, triage failures, propose fixes.

  • Use evaluation harnesses to track quality over time.

icon

Customer operations

  • Summarize conversations, suggest responses, route tickets, detect intent/risk.

  • Maintain compliance by grounding answers in approved knowledge.

icon

Back-office automation

  • AP/AR, HR onboarding, procurement workflows, compliance evidence creation.

  • Automate “swivel-chair” work across multiple apps via tools and orchestrations.

icon

Analytics & search

  • Semantic search, Q&A over enterprise knowledge, insight generation.

  • Convert natural language questions into queries (with validation).

AI Models Tools and Platforms

The market has organized itself into two layers: the open ecosystem where models are built and the hosted layer where they’re consumed. Above both sits the orchestration layer—BOAT—that makes them usable in real enterprise workflows.

Open / source-available ecosystem

  • Model building/training: PyTorch, TensorFlow, JAX.

  • Model hubs: Hugging Face.

  • Serving/inference: vLLM, Triton Inference Server, TensorRT-LLM, Ray Serve.

  • Vector search: FAISS, Milvus, pgvector.

  • Agent/RAG frameworks: LangChain, LlamaIndex.

  • Evaluation & observability: Ragas, Arize Phoenix, prompt/test harnesses in CI.

Cloud / hosted platforms

  • Managed foundation model APIs and hosting (for fast time-to-value).

  • Managed vector databases and search.

  • Managed ML platforms (pipelines, training jobs, registries, endpoints).

The UiPath Platform™ — Business orchestration on BOAT

If you’re building AI into enterprise workflows, you typically need orchestration, governance, and end-to-end automation around models. UiPath is purpose-built for exactly that: a single platform that consolidates capabilities organizations have historically deployed in silos—process automation, RPA, document intelligence, agent building, and governance so they run natively side by side.

  • UiPath Autopilot™ for AI-assisted experiences across work and development.

  • UiPath Maestro™ for agentic orchestration, unifying agents, automation, and governance as a true enterprise control plane that orchestrates UiPath and third-party agents alike.

  • Intelligent Document Processing (IDP) with UiPath IXP™ (Intelligent Xtraction & Processing) for communication and document-heavy workflows.

  • Build AI agents the way your team already works: low-code with Agent Builder in Studio, code-first in Python with the UiPath SDK and frameworks like LangChain and LlamaIndex, or with your AI coding agent of choice (Claude Code, Codex, Cursor) via UiPath for Coding Agents.

  • UiPath AI Center™ for managing and deploying ML models within automation programs.

  • UiPath Orchestrator™ with audit/logging patterns for control, traceability, and operational oversight.

  • Agentic testing capabilities and platform direction for software quality workflows.

How to Implement AI Models

There’s no single right path, but the sequence below is the one that consistently produces production-grade outcomes rather than impressive demos.

icon

Define objectives & risks

  • What decision or workflow step is being improved?

  • What’s the tolerance for errors?

  • What are the compliance requirements (PII, retention, audit, locality)?

Deliverable template: “Model Use Case Brief” covering business goal, users, inputs/outputs, constraints, failure modes, and approval needs.

icon

Select the right approach

Use the simplest approach that meets quality and risk constraints:

  • Rules/heuristics (fastest, highest control).

  • Traditional ML (structured prediction).

  • Specialized deep learning (vision/speech).

  • LLM prompting (fastest for language tasks).

  • RAG (best for knowledge-grounded answers).

  • Fine-tuning (best when your task is consistent and data is available).

  • Agentic system (best when multi-step action is required).

icon

Data readiness

  • Inventory sources; classify sensitivity.

  • Define labeling standards and ground truth.

  • Create “golden sets” for evaluation (including edge cases).

icon

Prototype & evaluate

  • Establish baseline metrics (before/after).

  • Build eval harnesses early (don’t wait until launch).

  • LLM eval examples: groundedness, refusal correctness, format compliance, toxicity, jailbreak resistance, cost per task.

icon

Integrate into the workflow

  • Add policy routing (model choice, tool permissions, locality constraints).

  • Add validation layers (schemas, citations, guardrails).

  • Add HITL review for high-risk steps.

icon

Ship with CI/CD

  • Version prompts, retrieval configs, and models.

  • Add unit tests for prompts and tools.

  • Add regression eval gates before production rollout.

icon

Monitor & iterate

Track:

  • Quality drift (accuracy, hallucination rate, extraction errors).

  • Safety incidents (policy violations, prompt injection attempts).

  • Ops metrics (latency, failure rate, cost).

  • Business metrics (cycle time, CSAT, rework rate).

Comparisons

Five trade-offs you’ll keep encountering. There are no universally right answers—only context-appropriate ones.

LLMs vs. traditional ML

Traditional ML

Best for structured targets.

Predictable outputs.

Strong interpretability.

LLMs

Best for language tasks.

Flexible outputs and tool use.

Need strong evaluation and guardrails.

Closed vs. open models

Closed

Fast to adopt.

Managed infrastructure.

Often strong baseline performance.

Open

Customization and control.

Deployment portability.

More engineering responsibility.

Copilots vs. agents

Copilot

Assists a human.

Drafts, suggests, explains.

Human stays in control of every step.

Agent

Executes steps and completes tasks.

Calls tools and APIs.

Requires approvals, permissions, audit.

In practice the line is blurring fast, as copilots increasingly take actions, and agents often have human checkpoints (conversational agents, HITL etc.).

RAG vs. fine-tuning

RAG

Best when answers must be grounded in changing knowledge.

Citations matter.

Knowledge updates without retraining.

Fine-tuning

Best when you need consistent behavior/style.

Task is stable.

You have high-quality labeled data.

Note: These are often used together, not as either/or.

Zero/one-shot vs. supervised training

Zero/one-shot

Fastest (prompting).

Weaker reliability without eval/guardrails.

Good for exploration.

Supervised training

Higher reliability.

Requires labeled data.

Best for stable requirements.

Note: These are often used together, not as either/or.

Best Practices & Tips for Shipping AI Models

Eight principles separate teams that ship reliable AI from teams that ship demos:

  • Start with evaluation, not vibes: define success metrics and build a test set early.

  • Design for “no”: safe refusal + escalation beats confident wrong answers.

  • Prefer structured outputs: schemas reduce errors and simplify downstream automation.

  • Route by policy: pick models based on sensitivity, cost, and required capability.

  • Ground facts: use RAG for knowledge tasks; require citations.

  • Instrument everything: prompts, retrieval, tool calls, approvals, and outcomes.

  • Keep humans in the loop where it matters: especially for compliance, money movement, and customer impact.

  • Version and review prompts like code: PRs, tests, rollbacks, and changelogs.

Conclusion

AI models aren’t magic—they’re components. The difference between a prototype and a production system is the lifecycle around the model: evaluation, guardrails, governance, cost controls, and monitoring. When you treat AI as an engineered system (not a one-off demo), you can deploy it safely, improve it continuously, and scale it across real enterprise workflows.

That is the work BOAT platforms are built for, and it is the work UiPath has been compounding on for more than a decade. Models will keep changing. Orchestration is what makes them stick.

Frequently Asked Questions

What is an AI model?

An AI model is a trained mathematical system (packaged as software) that turns inputs—like text, images, or data—into outputs such as predictions, classifications, extracted fields, or generated content. It learns these patterns from data during training and applies them during inference.

What are the main types (ML, deep learning, LLMs, multimodal)?

Traditional ML models excel on structured/tabular data and clear prediction targets. Deep learning uses neural networks to handle complex patterns in language, vision, and speech. LLMs are large language models trained on vast text (and sometimes code) to generate and reason over language. Multimodal models work across multiple input types (e.g., text + images) and can produce richer, cross-format outputs.

What’s the difference between RAG and fine-tuning?

RAG (retrieval-augmented generation) injects relevant documents into the model’s context at request time, so answers are grounded in current, cite-able sources. Fine-tuning updates the model’s parameters using your examples to improve behavior or task performance; it’s best when you want consistent outputs and you have stable, high-quality training data.

How do I evaluate quality, safety, and cost?

Measure quality with task-specific metrics and “golden set” tests (accuracy, extraction F1-score, groundedness, format compliance). Assess safety with red-team prompts, policy checks (PII leakage, jailbreak resistance), and refusal correctness. Track cost via cost-per-task, latency, throughput, and token/compute usage, then compare options using real traffic samples.

How do agents use models and tools?

Agents use models as a planner and decision engine, then call tools (APIs, RPA actions, databases, search) to take actions in the world. A typical loop is plan → execute tool calls → verify results → revise, with guardrails like permissions, approval steps, and structured validation.

When should I choose open vs. closed models?

Choose closed/hosted models when you want fastest time-to-value, managed infrastructure, and strong baseline performance with minimal ops. Choose open models when you need more control (deployment location, customization, portability), want to reduce provider dependency, or require tighter governance—accepting that you’ll own more engineering and operations.

How do I deploy and monitor models in production?

Deploy with versioning (model + prompt + retrieval config), CI/CD quality gates, and rollback paths, then integrate policy routing and guardrails (schemas, filters, access control). Monitor accuracy drift, safety incidents, latency, failure rates, and spend, and keep a feedback loop (human review, corrections, automated evals) to continuously improve performance.

Ask AI about...Ask AI...