group-wbl/.venv/lib/python3.13/site-packages/langchain_classic/utils/pydantic.py

14 lines
282 B
Python
Raw Permalink Normal View History

2026-01-09 09:12:25 +08:00
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"]