🔧 chore(utils.py): add logging statement when no LLM cache is set to provide visibility and debugging information
This commit is contained in:
parent
6e7d7dfb51
commit
15cd835a0c
1 changed files with 2 additions and 0 deletions
|
|
@ -89,3 +89,5 @@ def set_langchain_cache(settings):
|
|||
logger.info(f"LLM caching setup with {cache_class.__name__}")
|
||||
except ImportError:
|
||||
logger.warning(f"Could not import {cache_type}. ")
|
||||
else:
|
||||
logger.info("No LLM cache set.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue