mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
7 lines
218 B
Python
7 lines
218 B
Python
"""Deprecated module for BaseLanguageModel class, kept for backwards compatibility."""
|
|
from __future__ import annotations
|
|
|
|
from langchain.schema.language_model import BaseLanguageModel
|
|
|
|
__all__ = ["BaseLanguageModel"]
|