Skip to content

Commit

Permalink
🚀 feat(settings.py): add cache configuration option
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ogabrielluiz committed Jun 25, 2023
1 parent 89c2e5b commit a15da8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/backend/langflow/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Settings(BaseSettings):
utilities: List[str] = []
dev: bool = False
database_url: str = "sqlite:https:///./langflow.db"
cache: str = "InMemoryCache"
remove_api_keys: bool = False

class Config:
Expand Down

0 comments on commit a15da8e

Please sign in to comment.