Topic

#LLMs

79 posts tagged “LLMs”.

Chisato Chisato · · 4 min read

What Is Prompt Chaining? Multi-Step LLM Pipelines

Prompt chaining splits a task into a sequence of smaller LLM calls, each one feeding the next, instead of asking one giant prompt to do everything.

#AI #LLMs #Developer Tools
Chisato Chisato · · 5 min read

What Is Catastrophic Forgetting in AI Fine-Tuning?

Catastrophic forgetting is when training a model on new data erases skills it already had. Why it happens during fine-tuning, and how teams work around it.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is Semantic Caching for LLM Applications?

Semantic caching reuses an LLM's past response for a new prompt that means the same thing, by comparing embeddings instead of exact text.

#AI #LLMs #Performance
Chisato Chisato · · 4 min read

LLM Grounding Explained: Tying Answers to Real Data

Grounding connects an LLM's output to verifiable external data instead of relying on what it memorized during training, reducing hallucinations. How it works.

#AI #LLMs #Machine Learning
Chisato Chisato · · 6 min read

LG K-EXAONE 2.0: Korea's 750B Open AI Model

LG released K-EXAONE 2.0, a 750B-parameter Apache-2.0 open model — Korea's largest, built to rival DeepSeek and Qwen. Specs, benchmarks, and the stakes.

#AI #LLMs #Open Source
Chisato Chisato · · 4 min read

The ReAct Pattern: How AI Agents Reason and Act

ReAct interleaves an LLM's reasoning with tool calls and their results, letting an agent adjust its plan after each observation instead of reasoning blind.

#AI #Agents #LLMs
Chisato Chisato · · 4 min read

RAG vs Fine-Tuning: When to Use Each

RAG retrieves relevant documents at query time; fine-tuning bakes new behavior into model weights. How to choose based on what actually needs to change.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is a KV Cache? Why LLM Inference Speeds Up

A KV cache stores past attention keys and values during LLM inference so each new token reuses prior work instead of recomputing it from scratch.

#AI #LLMs #Performance
Chisato Chisato · · 5 min read

Batch vs Real-Time Inference: How AI Serving Differs

Batch inference processes large volumes of input on a schedule; real-time inference answers one request as fast as possible. How the two serving modes differ.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is Prompt Engineering?

Prompt engineering is the practice of structuring instructions to get reliable, accurate output from an LLM. Core techniques and common pitfalls.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is an LLM Router?

An LLM router sends each request to the cheapest or fastest model that can handle it, instead of routing every call to one model regardless of difficulty.

#AI #LLMs #Agents
Chisato Chisato · · 4 min read

What Is a Reranker? Why RAG Pipelines Need One

A reranker re-scores a retriever's candidate results with a slower, more accurate model, fixing the precision gap that pure vector search leaves behind.

#AI #LLMs #Machine Learning
Chisato Chisato · · 6 min read

Claude Opus 5: Benchmarks, Pricing, and 1M Context

Anthropic launched Claude Opus 5 on July 24 with a 1M-token context, a new xhigh effort mode, and unchanged $5/$25 pricing. Benchmarks, specs, and what changed.

#AI #Claude #Anthropic
Chisato Chisato · · 4 min read

RAG Chunking Strategies Explained

How you split documents into chunks determines what a RAG system can retrieve. Fixed-size, semantic, and recursive chunking compared, with tradeoffs.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

Beam Search Explained: How LLMs Pick Tokens

Beam search keeps the top-k most likely sequences at each decoding step instead of just one, trading compute for better output than greedy decoding.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is Synthetic Data? AI Training Explained

Synthetic data is artificially generated training data that mimics real-world patterns without exposing actual records. How it's made and used.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

In-Context Learning vs Fine-Tuning for LLMs

In-context learning teaches a model a task through examples in the prompt; fine-tuning updates the model's weights permanently. How they compare.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is AI Red Teaming?

AI red teaming is the practice of deliberately attacking a model or AI system to find failures before real adversaries do. Here's how it works.

#AI #Security #LLMs
Chisato Chisato · · 4 min read

What Is a Knowledge Graph?

A knowledge graph stores facts as entities and labeled relationships instead of rows or documents, letting queries traverse connections directly.

#AI #Databases #LLMs
Chisato Chisato · · 5 min read

What Is LoRA? Low-Rank Adaptation Explained

LoRA fine-tunes a large model by training small low-rank matrices instead of its full weights. How it works, why it's cheap, and where it falls short.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is Multimodal AI? Beyond Text-Only Models

A multimodal AI model processes and generates more than one type of data — text, images, audio — in a single unified system. Here's how it works.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

What Is a System Prompt? How LLMs Get Instructions

A system prompt is the hidden instruction set that shapes an LLM's persona, tone, and boundaries before any user message arrives — how it works.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

Why LLMs Hallucinate, and How to Reduce It

An LLM hallucination is a fluent, confident output that is factually wrong — a byproduct of next-token prediction, not a bug you can simply patch.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

Chain-of-Thought Prompting Explained

Chain-of-thought prompting asks an LLM to reason step by step before answering, improving accuracy on multi-step problems by making its work explicit.

#AI #LLMs #Machine Learning
Chisato Chisato · · 5 min read

What Is RLHF? Reinforcement Learning Explained

RLHF trains a language model to match human preferences using a reward model and reinforcement learning. How the training pipeline actually works.

#AI #LLMs #Machine Learning
Chisato Chisato · · 5 min read

What Is Tokenization in LLMs? Tokens Explained

Tokenization is how a language model chops text into tokens — the units it actually reads and bills. How it works, why words split oddly, and why it matters.

#AI #LLMs #Machine Learning
Chisato Chisato · · 4 min read

Build Your Own AI Agent in 100 Lines of Python

Build a real AI agent from scratch — no framework. Just the Anthropic API, a tool-use loop, and two tools the model can call to explore your files.

#AI #Agents #LLMs
The Lycoris Team The Lycoris Team · · 2 min read

Getty Images and OpenAI Sign a Content Deal

Getty Images will surface its licensed library inside ChatGPT's search experience under a multi-year deal with OpenAI — another step from lawsuits to licensing.

#AI #LLMs #Search
Chisato Chisato · · 3 min read

Is There a Claude Sonnet 5? Anthropic's 2026 Lineup

Looking for Claude Sonnet 5? Here's the honest answer — plus a clear map of Anthropic's 2026 models: Haiku 4.5, Sonnet 4.6, Opus 4.8, and the new Fable 5.

#AI #Claude #Anthropic
Chisato Chisato · · 4 min read

What Is Quantization? Smaller, Faster AI Models

Quantization reduces the numeric precision of a model's weights — e.g. FP16 to INT8 or INT4 — to shrink memory use and speed up inference with minimal accuracy loss.

#AI #LLMs #Performance
Chisato Chisato · · 5 min read

What Is GLM 5.2? Zhipu's 1M-Context Open Model

GLM 5.2 is Zhipu/Z.ai's open-weight flagship: a one-million-token context window, top-tier open coding, MIT-licensed weights. What it is and how to run it.

#AI #LLMs #Open Source
Chisato Chisato · · 2 min read

xAI's Grok 4.3 Arrives as a Budget Frontier Model

xAI's Grok 4.3 hit Amazon Bedrock as the cheapest US frontier reasoning model, while the 6-trillion-parameter Grok 5 slips. Here's where xAI stands in 2026.

#AI #LLMs #Agents
The Lycoris Team The Lycoris Team · · 5 min read

Noam Shazeer Leaves Google DeepMind for OpenAI

Noam Shazeer, a co-author of the Transformer paper that underpins modern AI, is leaving Google DeepMind for OpenAI — the AI talent war's latest marquee move.

#AI #LLMs #Machine Learning
Chisato Chisato · · 5 min read

What Is Kimi? Moonshot AI's Long-Context Model

Kimi is Moonshot AI's assistant and open-weight model family, known for huge context and agentic coding. Here's what Kimi is and what the K2 models can do.

#AI #LLMs #Open Source
The Lycoris Team The Lycoris Team · · 2 min read

The EU AI Act's GPAI Rules Get Teeth in August

On August 2, 2026, the EU gains real enforcement power over general-purpose AI models — fines, mandated mitigations, even recalls. What providers need to know.

#AI #LLMs #Security
Chisato Chisato · · 3 min read

Gemini 3: Google's New Flagship AI Model Family

Google released Gemini 3 — Pro, Flash, Deep Think, and a 3.5 series — across the Gemini app, AI Studio, and Vertex AI. Here's the lineup.

#AI #LLMs #Machine Learning
Chisato Chisato · · 2 min read

Google Search's AI Mode Now Runs on Gemini 3.5

Google's AI Mode in Search now runs on Gemini 3.5 Flash and adds 24/7 agents that monitor the web for you — what it calls the biggest change to Search in 25 years.

#AI #LLMs #Search
The Lycoris Team The Lycoris Team · · 2 min read

Apple Rebuilds Siri Around Generative AI

At WWDC 2026, Apple unveiled 'Siri AI' — a ground-up redesign powered by Google's Gemini through a multi-billion-dollar partnership. Here's what changed and why.

#AI #LLMs #Machine Learning
Chisato Chisato · · 3 min read

What Is Fine-Tuning? Specializing AI Models

Fine-tuning continues training a pretrained model on a task-specific dataset. How it works, when to use it over prompting or RAG, and what can go wrong.

#AI #LLMs #Machine Learning
Chisato Chisato · · 9 min read

What Are LLMs? Large Language Models, Explained

What are LLMs and how do they work? A plain-English guide to large language models: tokens, training, real examples, and what they still get wrong.

#AI #LLMs #Machine Learning
Chisato Chisato · · 3 min read

Reasoning Models: How 'Thinking' AI Actually Works

Reasoning models 'think' before they answer, trading inference time for accuracy on hard problems. Here's how test-time compute, adaptive thinking, and effort work.

#AI #LLMs #Machine Learning
Chisato Chisato · · 6 min read

What Is Ollama? Run LLMs Locally, Explained

Ollama is a free, open-source tool for running LLMs locally — pull a model with one command and chat privately, offline, at no per-token cost. How it works.

#AI #LLMs #Open Source
Chisato Chisato · · 4 min read

What Is an AI Agent? Goals, Tools, and the Loop

An AI agent is an LLM-powered system that pursues a goal across steps — planning, calling tools, observing results, and repeating until the job is done.

#AI #Agents #LLMs
Chisato Chisato · · 4 min read

Retrieval-Augmented Generation (RAG), Explained

Retrieval-augmented generation (RAG) grounds an LLM in your own data — cutting hallucinations and adding citations without retraining. Here's how RAG actually works.

#AI #LLMs #Developer Tools
Chisato Chisato · · 3 min read

What Is a Small Language Model (SLM)?

A small language model runs cheaply on-device, trading some capability for speed, privacy, and cost. When SLMs beat frontier models and how they're built.

#AI #LLMs #Performance

← All topics