Solace Agent Mesh is an open-source framework for building event-driven, multi-agent AI systems where specialized agents collaborate on complex tasks. Current version: 1.24.1. Released under Apache 2.0, with active development and frequent releases.
pip install solace-agent-meshNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a Solace Agent Mesh with event broker credentials and define an agent.
Use keyword arguments: @mesh.agent(name='my_agent', description='...')
Set protocol='http' explicitly in AgentMesh constructor if you rely on HTTP.
Set all environment variables or pass them explicitly as parameters.
Replace create_mesh(...) with AgentMesh(...).
Always define agent functions as async def agent_name(...).