mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-08 23:32:38 +02:00
experiment pool init
This commit is contained in:
parent
46aa6f1975
commit
471310f3b3
14 changed files with 258 additions and 55 deletions
|
|
@ -1,6 +1,8 @@
|
|||
from pydantic import Field
|
||||
|
||||
from metagpt.utils.yaml_model import YamlModel
|
||||
|
||||
|
||||
class ExperiencePoolConfig(YamlModel):
|
||||
enable_read: bool = False
|
||||
enable_write: bool = False
|
||||
enable_read: bool = Field(default=True, description="Enable to read from experience pool.")
|
||||
enable_write: bool = Field(default=True, description="Enable to write to experience pool.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue