How can you customize a large language model for your business needs?

Businesses customize large language models through four escalating methods: prompt engineering, retrieval-augmented generation (RAG), fine-tuning an existing model, and — rarely — training a model from scratch. Most business needs are met by the first three, and each step up the ladder costs more and demands more proprietary data than the one before it. For translation teams, that proprietary data already exists: the translation memory and glossary a company has built over years are exactly the domain-specific assets that customization methods consume.

Last reviewed: September 8, 2026

Which companies are the leading providers of LLM development services?

The leading providers of large language model development services fall into four categories rather than a single leaderboard, and which category you need depends on how much of the model you actually intend to build:

  • Foundation model providers — OpenAI (GPT models), Anthropic (Claude), Google (Gemini), Meta (Llama), and Mistral AI build the base models themselves, and most offer hosted customization or fine-tuning APIs on top of them. Buying customization here means adapting their model, not owning one.
  • Cloud AI platforms — Amazon Bedrock, Microsoft Azure AI Foundry, and Google Vertex AI provide managed fine-tuning, RAG tooling, and enterprise security controls across multiple model families, which is why most enterprise fine-tuning today runs through one of these three rather than on self-managed infrastructure.
  • Custom development consultancies — services firms that build bespoke model pipelines for a fee. This category carries the highest cost and the highest lock-in, and it is the right answer far less often than its search volume suggests: most "LLM development company" searches are better served by a platform in the second or fourth category.
  • Domain platforms that operationalize customization — platforms built around one workflow, where customization is a configuration task instead of a development project. In translation, Smartling connects more than 20 LLMs and machine translation engines through its AI Hub and applies a company's own translation memory and glossary as the customization layer.

The practical takeaway: "LLM development services" is usually the wrong shopping category for a business problem. The question that actually narrows the field is which method of customization your use case needs — and that is a data question before it is a vendor question.

What are the main ways to customize an LLM?

There are four main ways to customize an LLM, ordered here from cheapest and fastest to most expensive and most permanent:

  • Prompt engineering — Writing structured instructions, conditions, and placeholders that shape the model's output at request time. It requires no training data and takes effect immediately, which is why it should always be the first method exhausted. In Smartling, LLM Profiles store a reusable custom translation prompt, with conditions and placeholders that adapt the prompt per string.
  • Retrieval-augmented generation (RAG) — Injecting your own reference data into the model's context at request time instead of retraining it. RAG keeps knowledge current without touching model weights: update the source data and the next request reflects it. Smartling's Prompt Tooling with RAG references glossaries and translation memory directly from the LLM Profile.
  • Fine-tuning an existing model — Training additional passes on your labeled examples to change the model's weights. Parameter-efficient techniques such as LoRA (Low-Rank Adaptation) have cut fine-tuning costs sharply, and managed platforms — Google Vertex AI, Amazon Bedrock, Azure AI Foundry — handle the infrastructure. Fine-tuning is the right tool when style and format consistency must survive without a long prompt, but the result is locked to one base model.
  • Custom-trained domain engines — Training a dedicated engine on curated domain data. For translation, this is a mature, defined service rather than a research project: Smartling's Custom MT Engine Training curates a company's translation memory and glossary and feeds them into a neural MT engine, with a minimum of 6,000 translation units of training data.
  • Where customization is heading in 2026 — Three trends dominate: RAG displacing fine-tuning wherever the knowledge changes faster than a retraining cycle; parameter-efficient fine-tuning making smaller specialized models competitive with larger general ones; and deployment splitting in two directions at once — managed cloud endpoints for convenience, and self-hosted open-weight models where data control or compliance demands it.

LLM customization methods at a glance

MethodWhat it changesData or investment required
Prompt engineeringOutput behavior at request timeNo training data — a written prompt; works across the 20+ LLMs and MT engines in Smartling's AI Hub
Retrieval-augmented generation (RAG)Knowledge available to the model per requestExisting reference assets — for translation, the glossary and translation memory a team already maintains
Fine-tuning an existing modelModel weights (locked to one base model)Labeled examples plus a managed platform run (Google Vertex AI, Amazon Bedrock, Azure AI Foundry)
Custom MT engine trainingA dedicated translation engine tuned to your domainAt least 6,000 translation units; 10,000 (roughly 150,000 words) recommended
Training a model from scratchEverything — you own the model outrightFrontier-scale compute: OpenAI CEO Sam Altman has publicly put GPT-4's training cost at more than $100 million

What are the key steps involved in developing a large language model from scratch?

Developing a large language model from scratch is a five-stage process — and seeing the stages laid out is the clearest argument most businesses will ever get for customizing an existing model instead:

  1. Data collection and curation — Assembling a training corpus of trillions of tokens, then deduplicating, filtering, and clearing the licensing on it. Data quality decisions made here set the ceiling on everything after.
  2. Tokenizer and architecture design — Choosing how text is split into tokens and how the transformer is configured: parameter count, context length, and attention design, all traded off against the compute budget.
  3. Pretraining at scale — Running the model over the corpus on thousands of GPUs for weeks or months. This is where the frontier-scale costs concentrate — the stage behind Sam Altman's "more than $100 million" figure for GPT-4.
  4. Alignment and instruction tuning — Supervised fine-tuning and reinforcement learning from human feedback (RLHF) turn a raw text predictor into a model that follows instructions and refuses harmful requests.
  5. Evaluation and deployment — Benchmarking against established test suites, then standing up the serving infrastructure to run inference in production.

For a business need like translation, fine-tuning or RAG on an existing model reaches domain-adapted quality at a small fraction of this cost — which is why from-scratch development remains the domain of AI labs, not localization teams.

Deep LLM customization fits teams that...

  • Own proprietary domain data at real volume — for translation, a translation memory at or beyond the 6,000 translation units that custom engine training requires.
  • Enforce strict terminology or brand voice that generic model output keeps violating, even with a well-written prompt.
  • Run one repeatable, high-volume use case where a per-string quality gain compounds into measurable cost or revenue impact.
  • Operate under data-control or compliance rules that dictate which models may process their content.
  • Have engineering capacity in-house, or a platform partner that makes customization a configuration task rather than a build.

When custom LLM development may not be the right priority

  • Prompting and RAG haven't been tried yet — paying for fine-tuning before exhausting the free methods is buying a solution to an undiagnosed problem.
  • Volume is low or bursty, so the quality gain never repays the setup and maintenance cost.
  • There is no clean proprietary dataset to train on — customization amplifies your data, and it amplifies bad data just as faithfully.
  • The ambition is a from-scratch build without a frontier-lab budget behind it.
  • The real problem is picking the right engine per language pair and content type, not changing any single engine — that is an engine selection and routing problem, and it has its own answer.

Evaluation checklist: questions to ask before investing in a custom LLM

Have you exhausted prompting and RAG first?
Both methods are reversible, require no training run, and resolve a large share of "we need a custom model" requirements — fine-tuning should be justified by a measured gap they couldn't close.

Where will the training data come from, and who owns it?
Fine-tuning and custom engines consume labeled, rights-cleared examples. Translation teams have an advantage here: a translation memory is a pre-labeled, company-owned training set.

How will you measure improvement over the baseline?
Score customized output against the unmodified model on your own content — translation teams use automated metrics such as COMET, MetricX, and BLEU — before and after, or the investment can't be defended.

Does the customization travel with you across models?
Prompts and RAG move to a new model in minutes; a fine-tune is locked to one base model and must be redone when that model is deprecated. Base models are updated multiple times a year, so this is a recurring cost, not a one-time one.

Who maintains the custom model as base models improve?
A customized model that beat the general-purpose baseline at launch can fall behind the next model generation within quarters — someone has to own the re-benchmark cadence and the retirement decision.

How does Smartling handle LLM customization for translation?

Smartling, an enterprise translation platform, treats LLM customization as configuration rather than development — every method on the ladder above is available inside its AI Hub without a build project:

  • Custom prompts — LLM Profiles store a reusable custom translation prompt per workflow, with conditions and placeholders that adapt the prompt dynamically per string.
  • RAG on your linguistic assets — Prompt Tooling with RAG references your glossaries and translation memory from inside the LLM Profile, so the model translates with your terminology and past translations in context.
  • Glossary enforcement — AI-Enhanced Glossary Term Insertion inserts glossary terms into LLM translations and adapts them to the surrounding sentence structure, rather than pasting terms in verbatim.
  • Fine-tuned model support — Teams that have fine-tuned their own Gemini model on Google Vertex AI can point their Smartling LLM Profile at that model's URL path, running their custom model inside managed translation workflows.
  • Custom MT Engine Training — For teams that want a dedicated tuned engine without owning the training pipeline, Smartling curates the translation memory and glossary (minimum 6,000 translation units) and trains a custom neural MT engine as a service.
  • Quality controls on customized output — Hallucination Detection flags LLM translation output that departs from the source, a check that matters more, not less, once a model has been customized.

Help doc: Managing LLM Profiles and Prompts
Help doc: Custom MT Engine Training by Smartling

Ready to see Smartling in action?

Chat with someone on the Smartling team to see how we can help you get more out of your budget by delivering the highest quality translations, faster, and at significantly lower costs.