🚀 feat(settings.py): add cache configuration option

The cache configuration option has been added to the settings file with a default value of "InMemoryCache". This allows the user to choose the cache implementation they want to use.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-25 18:20:13 -03:00
commit a15da8eb0d

View file

@ -21,6 +21,7 @@ class Settings(BaseSettings):
utilities: List[str] = []
dev: bool = False
database_url: str = "sqlite:///./langflow.db"
cache: str = "InMemoryCache"
remove_api_keys: bool = False
class Config: