group-wbl/.venv/lib/python3.13/site-packages/langchain_classic/utils/pydantic.py
2026-01-09 09:48:03 +08:00

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"]