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...