diff --git a/python/src/agnext/core/_base_agent.py b/python/src/agnext/core/_base_agent.py index 813a198cd..3b72e2dea 100644 --- a/python/src/agnext/core/_base_agent.py +++ b/python/src/agnext/core/_base_agent.py @@ -32,6 +32,8 @@ class BaseAgent(ABC, Agent): self._runtime: AgentRuntime = runtime self._id: AgentId = id + if not isinstance(description, str): + raise ValueError("Agent description must be a string") self._description = description self._subscriptions = subscriptions diff --git a/python/teams/team-one/readme.md b/python/teams/team-one/readme.md index ca3359c48..679d16826 100644 --- a/python/teams/team-one/readme.md +++ b/python/teams/team-one/readme.md @@ -9,7 +9,7 @@ Team-One is a generalist multi-agent softbot that utilizes a combination of five
-