Skip to main content

11 posts tagged with "Agents"

Designing, building and operating production-grade AI agents

View All Tags

AI Leadership in the Age of Regulated and Agentic AI

· 30 min read
AI Playbook author

Artificial intelligence leadership is often misunderstood as the ability to select the best model, approve an AI strategy or sponsor a portfolio of proofs of concept. Those activities matter, but they are not the essence of leadership.

AI leadership is the disciplined conversion of uncertain technological capability into measurable, secure, governed and socially acceptable outcomes.

From Chatbots to Autonomous Digital Workers: How Frontier AI Models Are Becoming Smarter Over Time

· 33 min read
AI Playbook author

Artificial intelligence models are improving at a remarkable pace. A model released only six months ago can quickly appear less capable, less efficient and less reliable than a newer generation. It is tempting to assume that every new model is smarter because it contains more parameters — but modern frontier systems such as Claude Fable 5, Claude Opus 5, GPT-5.6, Gemini 3.6 Flash and Kimi K3 are improving through a much broader stack of advances.

Knowledge Distillation for Large Language Models

· 32 min read
AI Playbook author

Knowledge distillation is a model-compression and capability-transfer technique in which a powerful teacher model provides training signals for a smaller student model.

Instead of requiring the student to rediscover every useful behaviour from raw internet-scale pretraining data, the student learns from the teacher’s outputs, probability distributions, internal representations, reasoning demonstrations or preferences.

A distilled model can therefore become:

  • Faster at inference
  • Less expensive to operate
  • Smaller in memory
  • Easier to deploy on limited hardware
  • More specialised for a particular task
  • More consistent than the original general-purpose model for a narrow workflow

However, an important distinction must be made:

The exact internal process used to train current proprietary Claude models is not publicly disclosed in full.

Anthropic publishes model reports, safety research and selected training information, but its public materials do not expose Claude’s weights, token logits, hidden states, training datasets or the complete teacher–student training recipe. Therefore, when people discuss “distilling Claude,” they may be referring to two different things:

  1. Authorised distillation within an official platform, such as Amazon Bedrock’s documented Claude Sonnet-to-Haiku distillation workflow.
  2. Black-box behavioural distillation, where permitted Claude outputs are collected and used to fine-tune another model.

Anthropic and AWS have publicly described an authorised workflow in which Claude 3.5 Sonnet generates synthetic training data, Claude 3 Haiku is trained and evaluated using that data, and the resulting distilled model is hosted for inference. This is primarily output-based behavioural distillation rather than traditional access to Claude’s internal logits or hidden layers.

Databricks Enterprise GenAI Engineering: AI Search, Unity AI Gateway, MLflow 3, AI Functions, LLMOps and Genie One

· 37 min read
AI Playbook author

Enterprise generative AI engineering is no longer limited to writing prompts and connecting an application to a large language model. A production AI system must combine software engineering, governed data access, model routing, retrieval, tool execution, evaluation, monitoring, security, cost control and continuous delivery.

Databricks addresses these requirements through an integrated set of capabilities covering the complete GenAI lifecycle: querying foundation models and agents, building custom and low-code agents, connecting agents to governed tools, preparing structured and unstructured data, implementing retrieval with AI Search, deploying agents and applications, governing traffic through Unity AI Gateway, tracing with MLflow, evaluating and monitoring quality, operationalising through LLMOps, and delivering governed experiences through Genie One.

LLM Response Caching Strategies for RAG and Agentic Applications

· 30 min read
AI Playbook author

Caching in a conventional application usually means storing the result of a database query or API request. In an LLM application, there are many more opportunities: repeated questions, equivalent paraphrases, identical embeddings, repeated retrieval and reranking, repeated tool calls, stable system prompts, and recurring agent planning steps.

The strongest architecture therefore does not implement one “LLM cache.” It implements a hierarchy of specialised caches across the RAG and agent pipeline.

Production-Grade Evaluation Strategies for LLMs, RAG, Agents, and Multi-Agent Systems

· 41 min read
AI Playbook author

Evaluating a conventional machine-learning model is often straightforward. A classification model can be measured using accuracy, precision, recall, F1 score, or area under the curve. A regression model can be measured using mean absolute error or root mean squared error.

Large language model applications are more difficult to evaluate because they are:

  • Non-deterministic
  • Generative rather than strictly predictive
  • Capable of producing several valid answers
  • Often composed of multiple models, tools, retrievers, databases, prompts, and agents
  • Able to modify external environments
  • Sensitive to prompt wording, model versions, context ordering, retrieved documents, and tool responses
  • Expected to satisfy qualitative requirements such as helpfulness, clarity, faithfulness, tone, safety, and policy compliance

A production-grade evaluation strategy therefore cannot rely on one benchmark or one quality score. It must evaluate the system at several levels:

  1. The underlying model
  2. Individual LLM responses
  3. Retrieval and generation components
  4. Tool calls and agent trajectories
  5. Multi-agent coordination
  6. End-to-end business outcomes
  7. Operational performance
  8. Safety, compliance, and governance
  9. Real production behaviour

Hugging Face Evaluate provides useful building blocks for metrics, comparisons, and measurements. However, Hugging Face currently presents LightEval as the more actively maintained toolkit for modern LLM benchmarking, while agentic applications require additional trace, tool, environment, and outcome evaluation capabilities.

Claude Certified Architect – Foundations: A Detailed Guide to the Core Knowledge Areas

· 21 min read
AI Playbook author

Artificial intelligence architecture is moving beyond simple chatbot development. Modern enterprise AI systems must connect to business applications, retrieve organisational knowledge, call external tools, follow security policies, manage long-running tasks and produce outputs that other software systems can reliably process.

The Claude Certified Architect – Foundations, commonly known as CCA-F, focuses on the architectural knowledge needed to design these systems using Anthropic’s Claude platform.

LangChain Certified Agent Engineer: Complete Agent Development Lifecycle Guide

· 45 min read
AI Playbook author

Updated: July 27, 2026

The LangChain Certified Agent Engineer certification is designed to assess whether an engineer can manage the complete lifecycle of a production AI agent—not merely write a basic tool-calling loop.

LangChain describes the certification as covering the entire Agent Development Lifecycle, or ADLC. The exam gives equal weight to four domains:

  1. Building agents
  2. Testing agents
  3. Deploying agents
  4. Monitoring agents