mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-08 15:05:17 +02:00
use info level instead of debug
This commit is contained in:
parent
ad89746f24
commit
7cf61c46ce
2 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@ # Experience Pool
|
|||
|
||||
## Prerequisites
|
||||
- Ensure the RAG module is installed: https://docs.deepwisdom.ai/main/en/guide/in_depth_guides/rag_module.html
|
||||
- Set embedding: https://docs.deepwisdom.ai/main/en/guide/in_depth_guides/rag_module.html
|
||||
- Set both `enable_read` and `enable_write` to `true` in the `exp_pool` section of `config2.yaml`
|
||||
|
||||
## Example Files
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class ExperienceManager(BaseModel):
|
|||
self._storage: SimpleEngine = SimpleEngine.from_objs(
|
||||
retriever_configs=retriever_configs, ranker_configs=ranker_configs
|
||||
)
|
||||
logger.debug(f"exp_pool config: {self.config.exp_pool}")
|
||||
logger.info(f"exp_pool config: {self.config.exp_pool}")
|
||||
|
||||
return self._storage
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue