Cannot import LTMSQLiteStorage even using same import line as docs

Getting this import error even though the import line is the same as given in docs:

Traceback (most recent call last):
  File "f:\High_Speed_Development_Zone\try1\src\try1\main.py", line 5, in <module>
    from crew import Try1
  File "f:\High_Speed_Development_Zone\try1\src\try1\crew.py", line 4, in <module>
    from crewai.memory.storage import LTMSQLiteStorage, RAGStorage
ImportError: cannot import name 'LTMSQLiteStorage' from 'crewai.memory.storage' (unknown location). Did you mean: 'ltm_sqlite_storage'?
ERROR conda.cli.main_run:execute(125): `conda run python f:/High_Speed_Development_Zone/try1/src/try1/main.py` failed. (See above for error)

crewai docs link: memory

Try:

from crewai.memory.storage.ltm_sqlite_storage import LTMSQLiteStorage

Yeah it worked. Same error showed up for RAGStorage and same fix for that as well.