The deprecation warnings offer an interesting learning opportunity since they highlight the imminent need to adopt the new LC methodology. However, they can be bothersome and annoying. In case you are tired of seeing the warnings, just add the following code at the top of each notebook:
import warnings
from langchain._api import LangChainDeprecationWarning
warnings.simplefilter("ignore", category=LangChainDeprecationWarning)