use info level instead of debug

This commit is contained in:
seehi 2024-07-26 14:18:12 +08:00
parent ad89746f24
commit 7cf61c46ce
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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