Merge branch 'feature-obfuscate' into 'mgx_ops'

fix env serialized error

See merge request pub/MetaGPT!349
This commit is contained in:
张雷 2024-08-22 12:52:28 +00:00
commit eda130ca25

View file

@ -8,7 +8,10 @@ class BaseRole:
"""Abstract base class for all roles."""
name: str
is_idle: bool
@property
def is_idle(self) -> bool:
raise NotImplementedError
@abstractmethod
def think(self):