Files
Analytical_engine_backend/venv/Lib/site-packages/langchain_classic/utils/pydantic.py
2026-05-11 12:36:20 +05:30

14 lines
282 B
Python

from langchain_core.utils.pydantic import PYDANTIC_VERSION
def get_pydantic_major_version() -> int:
"""Get the major version of Pydantic.
Returns:
The major version of Pydantic.
"""
return PYDANTIC_VERSION.major
__all__ = ["get_pydantic_major_version"]