8 lines
218 B
Python
8 lines
218 B
Python
"""Deprecated module for BaseLanguageModel class, kept for backwards compatibility."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from langchain_core.language_models import BaseLanguageModel
|
|
|
|
__all__ = ["BaseLanguageModel"]
|