GenAI Mon 18 May 2026

AI Email Automation

Email remains one of the most universal, formal communication channels — and one of the most tedious to manage manually at any real volume. AI email automation applies the same core patterns covered throughout this series — prompt engineering, structured output, agentic tool...

GenAI Fri 15 May 2026

AI Social Media Automation

Consistent, high-quality social media presence is one of those tasks that's simple in concept and relentless in practice — a steady stream of captions, replies, and scheduling that never really stops. AI social media automation applies the agent and LLM patterns covered...

GenAI Mon 27 April 2026

Lessons Learned While Learning AgentScope

Closing out this series' look at AgentScope, it's worth stepping back from the individual architectural pieces — messages, memory, tools, multi-agent coordination — and pulling together the broader lessons that tend to matter most when actually learning and applying the...

GenAI Sun 26 April 2026

AgentScope for Production Agents

A research prototype and a production agent system have very different requirements. The prototype needs to demonstrate an idea works; production needs to keep working reliably, safely, and observably under real, unpredictable usage — echoing the reliability themes covered...

GenAI Sat 25 April 2026

Building a Multi-Agent Application with AgentScope

Everything covered so far in this series' AgentScope posts — the unified message system, the ReAct-based agent abstraction, memory, tools, and model integration — comes together most concretely when building an actual multi-agent application. This post walks through what that...

GenAI Fri 24 April 2026

AgentScope Agent Memory

An agent that forgets what it just tried is doomed to repeat its own mistakes. As covered in the general agent memory architecture post earlier in this series, managing what an agent remembers — and how much of it stays in active context — is one of the harder practical problems in …

GenAI Thu 23 April 2026

AgentScope Model Integration

The best model for a given task today may not be the best choice in six months — pricing changes, new models launch, and capabilities shift. A framework that locks an agent's logic to one specific provider makes that evolution expensive to keep up with. AgentScope was built...

GenAI Tue 21 April 2026

Single Agent vs Multi-Agent Architecture

Not every agentic task benefits from more agents. Adding coordination, communication overhead, and additional points of failure is a real cost — one that's only worth paying when a task genuinely benefits from specialization or parallel work that a single agent handles...

GenAI Mon 20 April 2026

AgentScope Agent Communication

The moment a system has more than one agent, a new problem appears that single-agent design doesn't have to deal with: how do agents actually talk to each other, in a way that stays coherent, traceable, and debuggable? AgentScope addresses this by extending the same core...

GenAI Sun 19 April 2026

What is AgentScope?

Among the growing field of frameworks for building AI agents — LangChain, CrewAI, AutoGen, and others — AgentScope has carved out a distinct identity around one core principle: transparency. Developed by Alibaba's research team, it's an open-source Python framework built...

GenAI Sat 18 April 2026

Agent Memory Architecture

An agent working through a long, multi-step task needs to remember what it's already tried, what it's learned, and what still needs doing — but an LLM's context window, as covered in the tokens post earlier in this series, is finite. Agent memory architecture is the set of...

GenAI Fri 17 April 2026

Building an AI CRM Agent

A sales or support team's CRM holds a huge amount of valuable, structured information — contacts, deal stages, communication history, ticket status — but keeping it accurate and acting on it consistently is a constant manual burden. An AI CRM agent applies the agent pattern...

GenAI Thu 16 April 2026

Building a Coding Agent

Coding is one of the domains where AI agents genuinely shine — not because writing code is easy for an LLM, but because code has something rare among agent tasks: a built-in, objective way to check if the work actually succeeded. Tests pass or they don't; code runs or it throws …

GenAI Wed 15 April 2026

Autonomous AI Agents

Some AI agents wait for a human to approve every action. Others run for hours, making dozens of decisions on their own, only checking in when something genuinely needs human judgment. That second category — agents operating with minimal ongoing human oversight — is what's...

GenAI Tue 14 April 2026

Agent Tools

An LLM without tools can only describe what it would do. Give it tools, and it can actually do it — search the web, query a database, run code, send a message. Tools are what turn an agent's reasoning into real-world action, and designing them well is one of the most …

GenAI Mon 13 April 2026

AI Agent vs LLM

It's easy to use "AI agent" and "LLM" interchangeably in casual conversation, but they describe genuinely different layers of a system. An LLM is a component — a powerful one — while an agent is an entire architecture built around that component, adding the pieces that let it...

GenAI Sun 12 April 2026

What is an AI Agent?

A chatbot answers your question and stops. An AI agent, by contrast, can decide what to do, take an action, observe the result, and decide what to do next — repeating that cycle until it's actually accomplished a goal. This shift, from generating a single response to...

GenAI Fri 10 April 2026

AI Agent Directory - Few Shots LLM Models

The AI agent ecosystem is growing fast. Here's a quick directory of notable AI startups and a couple of few-shot LLM models worth knowing about. Two lines each — just enough to know what they do and why they matter. AI Agent Directory (Test) Can of Soup — An AI-powered app that …

GenAI Thu 12 March 2026

LangChain Agents

Introduction: From Chains to Autonomous Systems Chains in LangChain follow a predetermined path. You define a sequence of steps, and the system executes them in order. This is powerful for workflows with fixed logic, but many real-world problems require flexibility. An agent...