```diff
--- test_files/412-original.txt	2025-03-07 19:06:54
+++ test_files/412-modified.txt	2025-03-07 19:06:54
@@ -1,4 +1,5 @@
 import json
+import os
 import typing as t
 
 from composio.client import Composio, enums
@@ -14,7 +15,9 @@
 
 logger = get_logger(__name__)
 
+NO_CACHE_REFRESH = os.getenv("COMPOSIO_NO_CACHE_REFRESH", "false") == "true"
 
+
 def filter_non_beta_items(items: t.Sequence[EnumModels]) -> t.List:
     filtered_items: t.List[EnumModels] = []
     for item in items:
@@ -215,6 +218,9 @@
     SDK version, and didn't come from the API. We need to start storing the data
     from the API and invalidate the cache if the data is not already stored.
     """
+    if NO_CACHE_REFRESH:
+        return
+
     if enums.base.ACTIONS_CACHE.exists():
         first_file = next(enums.base.ACTIONS_CACHE.iterdir(), None)
         if first_file is not None:
```
