AI Illustrated Series
Author

AI Illustrated Series

Illustrated hardcore tech: AI, agents, algorithms, databases—one picture worth a thousand words.

29
Articles
0
Likes
170
Views
0
Comments
Recent Articles

Latest from AI Illustrated Series

29 recent articles
AI Illustrated Series
AI Illustrated Series
Jul 20, 2026 · Artificial Intelligence

RAG Basics: Indexing and Query Phases Explained for Interviews

The article breaks down Retrieval‑Augmented Generation into offline indexing (document chunking, embedding, vector storage) and online query (question embedding, similarity search, augmented generation), highlights retrieval accuracy as the main bottleneck, and shows practical use cases such as internal knowledge bases and product documentation assistants.

AI InterviewEmbeddingRAG
0 likes · 5 min read
RAG Basics: Indexing and Query Phases Explained for Interviews
AI Illustrated Series
AI Illustrated Series
Jul 15, 2026 · Artificial Intelligence

Interviewer's Guide: Four Key Factors for Choosing an Embedding Model

The article explains how to select an embedding model by evaluating language support, vector dimension, context length, and performance metrics, provides concrete model examples for Chinese and multilingual scenarios, compares storage costs, and recommends starting with open‑source models before considering commercial APIs.

Context LengthEmbeddingOpen‑source Models
0 likes · 6 min read
Interviewer's Guide: Four Key Factors for Choosing an Embedding Model
AI Illustrated Series
AI Illustrated Series
Jul 13, 2026 · Artificial Intelligence

Building Enterprise‑Grade AI Agents in Java in 3 Days

This article walks Java developers through turning Spring AI into an enterprise‑grade AI agent that can query internal databases, access a vector‑based knowledge base, enforce role‑based permissions, persist chat sessions in Redis, add full observability, and be container‑deployed with Docker and Kubernetes.

AI agentDockerJava
0 likes · 10 min read
Building Enterprise‑Grade AI Agents in Java in 3 Days
AI Illustrated Series
AI Illustrated Series
Jul 11, 2026 · Artificial Intelligence

Turn Java Methods into AI Agent Tools with @Tool Annotation – Day 2 of 3‑Day Spring AI Crash Course

This article explains how to equip a Spring AI Agent with real‑world capabilities by annotating Java methods with @Tool, registers those tools for the agent, demonstrates single‑ and multi‑tool orchestration, and shows how the Advisor mechanism brings AOP‑style processing such as RAG and memory management into AI workflows.

AI agentAdvisorJava
0 likes · 10 min read
Turn Java Methods into AI Agent Tools with @Tool Annotation – Day 2 of 3‑Day Spring AI Crash Course
AI Illustrated Series
AI Illustrated Series
Jul 8, 2026 · Interview Experience

How to Design a Multi‑Agent Collaborative Office Assistant System

The article outlines a practical interview‑style design for a multi‑agent office assistant, detailing role specialization, task allocation flow, three communication patterns, conflict‑resolution strategies, and concrete usage scenarios such as meeting scheduling, weekly reporting, and sales data analysis.

Conflict Resolutioncommunication patternsmulti-agent
0 likes · 5 min read
How to Design a Multi‑Agent Collaborative Office Assistant System
AI Illustrated Series
AI Illustrated Series
Jul 1, 2026 · Artificial Intelligence

How Would You Architect a Data Analysis Agent? Interview Guide

The article outlines a four‑layer architecture for a data analysis agent—intent recognition, data acquisition via NL2SQL, analysis execution, and result presentation—while detailing practical methods to boost NL2SQL accuracy and illustrating real‑world e‑commerce, operations, and finance use cases.

Agent designNL2SQLSQL Safety
0 likes · 5 min read
How Would You Architect a Data Analysis Agent? Interview Guide
AI Illustrated Series
AI Illustrated Series
Jun 24, 2026 · Artificial Intelligence

From Clicks to Calls: Translating React Page Interactions into AI Agent Tool Invocations

The article explains how traditional React page interactions—where developers hard‑code each step—contrast with AI Agent interactions, where a language model decides which tools to call, and shows front‑end developers how to map event handlers to LangChain.js tools, choose between Chain and Agent architectures, and build a multi‑tool Agent with concrete TypeScript examples.

AI agentJavaScriptLangChain
0 likes · 9 min read
From Clicks to Calls: Translating React Page Interactions into AI Agent Tool Invocations
AI Illustrated Series
AI Illustrated Series
Jun 17, 2026 · Artificial Intelligence

Build a Go AI Agent in 3 Days: Hands‑On RAG + ReAct Implementation

This tutorial walks Go developers through creating a fully functional AI Agent using Eino, covering knowledge‑base indexing with VikingDB, defining retrieval, weather, and web‑search tools, assembling a ReAct graph, running interactive queries, and adapting the demo for production environments.

AI agentEinoGo
0 likes · 14 min read
Build a Go AI Agent in 3 Days: Hands‑On RAG + ReAct Implementation