mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-07-14 16:32:16 +02:00
add enable_longterm_memory config
This commit is contained in:
parent
c0d5c031f8
commit
cf3b80d5f1
4 changed files with 18 additions and 4 deletions
7
metagpt/configs/role_zero_config.py
Normal file
7
metagpt/configs/role_zero_config.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from pydantic import Field
|
||||
|
||||
from metagpt.utils.yaml_model import YamlModel
|
||||
|
||||
|
||||
class RoleZeroConfig(YamlModel):
|
||||
enable_longterm_memory: bool = Field(default=False, description="Whether to use long-term memory.")
|
||||
Loading…
Add table
Add a link
Reference in a new issue