LLM Engineering
76 courses 6 categories
Part of Learn Data & AI
LLM engineering is the applied discipline of shipping production systems on top of large language models — the API-side, infra-side work that lives between prompt-writing and pre-training. Unlike the broader AI hub, this topic focuses narrowly on the provider side: building retrieval-augmented pipelines, designing agentic loops, evaluating model outputs at scale, defending against prompt injection, and keeping inference cost predictable. It is the engineering layer that turns a model API into a service that survives real traffic.
The toolchain in 2026 has stabilized around a recognizable stack. Orchestration is LangGraph, the OpenAI Agents SDK, CrewAI, or hand-rolled state machines. Retrieval lives on pgvector, Qdrant, Pinecone, Weaviate, or Turbopuffer with hybrid search and reranking via Cohere or open models. MCP (Model Context Protocol) has become the standard for exposing tools and resources to agents across providers. Evals run continuously through LangSmith, Braintrust, Langfuse, or in-house golden-dataset rigs, with LLM-as-judge for fuzzy assertions and exact-match for the rest.
What you'll find under this topic
- RAG architecture: chunking strategies, embeddings, hybrid search, reranking, query rewriting
- Agent design: tool-calling, state management, error recovery, multi-agent patterns
- MCP servers and clients: exposing tools, resources, and prompts across providers
- Production eval harnesses: regression suites, LLM-as-judge, trace-based debugging
- Prompt-injection defense: input sanitization, output filtering, indirect-injection mitigation
- Cost and latency control: model routing, prompt caching, structured outputs, batch API
- Provider integration patterns: OpenAI, Anthropic, Gemini, open-weight via vLLM / Together
The hiring market for LLM engineers in 2026 includes every SaaS company with an AI feature roadmap, dedicated applied-AI teams at OpenAI, Anthropic, and Google, and a long tail of startups built on top of foundation models. The skill set is distinct from ML research and from generic backend work — it sits at the intersection.
Categories (6)
Courses (76)
Showing 1 – 30 of 76 courses
NewMaster modern AI with the Advanced Local AI course. Learn to use and integrate open-source models for real-world tasks.1h 1m
NewGain practical skills in AI system development based on professional experience. Master the tools and approaches for successful AI solution implementation.1h 49m
NewLearn to create AI applications using TypeScript and Python, with a focus on practice and using AI tools. Gain skills for development.1h 59m
NewPractical training in modern AI technologies. Learn LLM, create a question-answer service, and acquire a knowledge base on AI.1h 34m
NewTake a 26-hour course on AI project development in Golang. Create 6 advanced projects, enhancing your skills in building scalable solutions.25h 50m0/5
Updated 1mo agoTake the course and create a desktop application called Loadout to manage AI tools using modern technologies such as Rust and React.11m
Updated 1mo agoMaster the development of the AI-native platform faster.dev using modern technologies, including Laravel and React, to create efficient SaaS products.22m
Updated 2mo agoLearn to develop AI applications and agent systems with practical examples and theory. Master content generation and process automation using AI.4h 2m
Updated 2mo agoLearn how to develop autonomous AI agents for business in practice. The course from Nomad Coders covers current frameworks and real projects.24h 27m5/5
Updated 2mo agoThis course shows you how to build smarter AI apps with RAG. You use RAG to give LLMs fresh facts from your own data.17h 51m5/5
Updated 3mo agoUnlock your potential as an AI/ML Engineer with five hands-on projects on AWS. This course is designed to offer you practical experience.5/5
Updated 3mo agoUnlock the full potential of AI chatbots with ChatRAG – a comprehensive Next.js build designed for launching a successful SaaS business.
Updated 4mo agoMaster agent-based programming using AI models and tools like Claude and GPT-5.1. Create applications faster and become a systems architect.11h 58m5/5
Updated 4mo agoLearn to create a personal AI assistant using TypeScript in 5 days. Work with data, customize it to your needs, and apply modern techniques.3h 38m5/5
Updated 4mo agoLearn how AI and LLM models work in just a few hours. The course helps to master the technical aspects without delving into programming. Ideal for developers.8h 9m
Updated 4mo agoStudy the transition from AI coding to agent engineering. Create autonomous systems that design and test themselves, applying advanced practices.12h 53m4/5
Updated 5mo agoStop memorizing random prompts. Instead, learn how Large Language Models (LLMs) actually work and how to use them effectively. This course will take you from be31h 45m5/5
Updated 5mo agoLearn how to create AI agents in n8n without coding. Discover how to integrate language models, configure triggers, and set up nodes for task automation.2h 51m5/5
Updated 7mo agoLearn how to use agent AI to create and improve Python applications. Discover the difference from chatbots and customize AI for your tasks.2h 38m5/5
Updated 7mo agoLearn to integrate AI with Go: create projects, enhance skills, and deploy AI apps. Includes LLM API, vector databases, and model interactions.11h 13m
Updated 7mo agoLearn how to develop a local RAG system for processing PDFs with LlamaIndex and Ollama, using Elasticsearch and Mistral. Master the creation of chat interfaces.1h 49m
Updated 7mo agoLearn the foundations of modern AI with practical examples and ethical insights. Ideal for beginners and those seeking to deepen AI understanding.
Updated 7mo agoFind out how to create custom AI agents and develop universal rules to enhance your productivity and address all aspects of the project.1h 2m
Updated 8mo agoStudy the RAG approach to enhance AI with your own data. Learn about vectors, embeddings, and integration. Apply the approach in real projects.26m
Updated 8mo agoLearn Python from the ground up and use it to build your own AI tools. You start with the basics and grow the skills you need to work with LLMs in real.1h 41m5/5
Updated 9mo agoMaster semantic search with our course on generative AI. Learn to build a complete pipeline using FastAPI, qdrant, and Streamlit for advanced data processing53m
Updated 9mo agoThe Hidden Foundation of GenAI gives you a clear start in embeddings. You learn what sits under LLMs, vector search, and semantic tools.20m5/5
Updated 9mo agoThe most interesting thing in software right now is MCP. It's a protocol that turns applications into smart conversational partners: instead of.7h 23m3/5
Updated 9mo agoUnlock the potential of large language models with our intensive course, " LLM Basics in 10 Hours ".10h 30m5/5
Related topics
Frequently asked questions
- What does an LLM engineer actually do?
- Designs prompts and system messages, builds RAG pipelines and agents, integrates models via API or self-hosted inference, writes evaluation harnesses and guardrails, controls cost and latency, defends against prompt injection, and works closely with product on what models can and can't reliably do. Most of the work is engineering around the model, not training it.
- LLM engineering vs Prompt engineering — what's the difference?
- Prompt engineering is a sub-skill — writing the actual instructions the model receives. LLM engineering is the broader role: prompts plus retrieval, evaluation, deployment, observability, cost, security, and orchestration. Pure prompt-engineering job titles have largely faded; the durable role is LLM engineer or AI engineer, with prompting as one component.
- Do I need to understand transformers at the math level?
- Not for applied LLM engineering — knowing what attention, tokens, embeddings, and context length mean conceptually is enough. Math-level understanding becomes relevant only if you're fine-tuning at scale, designing new architectures, or doing research. Most production LLM work succeeds on solid software engineering plus model literacy.
- Closed models vs open weights — which to use?
- Closed (OpenAI, Anthropic, Google, xAI) for the strongest quality, easy onboarding, and frontier capability. Open weights (Llama, Qwen, Mistral, DeepSeek) for cost at high volume, data residency, on-prem requirements, and full customization. Most production stacks mix both — frontier model for hard tasks, smaller open model for cheap high-volume calls.
- How important are evaluations?
- Critical and chronically underdone. Without an evaluation harness you can't tell whether a prompt change is an improvement or a regression, and prompt-engineering devolves into vibes-based iteration. Invest early in eval datasets, automated grading (model-as-judge or rule-based), and a way to compare runs side by side. This is where most LLM projects succeed or fail.