mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-17 00:17:47 +00:00
Co-authored-by: Maxime Grenu <69890511+cluster2600@users.noreply.github.com> Co-authored-by: Claude <claude@anthropic.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: jmaillefaud <jonathan.maillefaud@evooq.ch> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: tanwirahmad <tanwirahmad@users.noreply.github.com> Co-authored-by: Christophe Bornet <cbornet@hotmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: niceg <79145285+growmuye@users.noreply.github.com> Co-authored-by: Chaitanya varma <varmac301@gmail.com> Co-authored-by: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Co-authored-by: Chester Curme <chester.curme@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Kanav Bansal <13186335+bansalkanav@users.noreply.github.com> Co-authored-by: Aleksandr Filippov <71711753+alex-feel@users.noreply.github.com> Co-authored-by: Alex Feel <afilippov@spotware.com>
61 lines
2.1 KiB
Python
61 lines
2.1 KiB
Python
import importlib
|
|
import warnings
|
|
from pathlib import Path
|
|
|
|
# Attempt to recursively import all modules in langchain
|
|
PKG_ROOT = Path(__file__).parent.parent.parent
|
|
|
|
|
|
def test_import_all() -> None:
|
|
"""Generate the public API for this package."""
|
|
with warnings.catch_warnings():
|
|
warnings.filterwarnings(action="ignore", category=UserWarning)
|
|
library_code = PKG_ROOT / "langchain"
|
|
for path in library_code.rglob("*.py"):
|
|
# Calculate the relative path to the module
|
|
module_name = (
|
|
path.relative_to(PKG_ROOT).with_suffix("").as_posix().replace("/", ".")
|
|
)
|
|
if module_name.endswith("__init__"):
|
|
# Without init
|
|
module_name = module_name.rsplit(".", 1)[0]
|
|
|
|
mod = importlib.import_module(module_name)
|
|
|
|
all_attrs = getattr(mod, "__all__", [])
|
|
|
|
for name in all_attrs:
|
|
# Attempt to import the name from the module
|
|
try:
|
|
obj = getattr(mod, name)
|
|
assert obj is not None
|
|
except Exception as e:
|
|
msg = f"Could not import {module_name}.{name}"
|
|
raise AssertionError(msg) from e
|
|
|
|
|
|
def test_import_all_using_dir() -> None:
|
|
"""Generate the public API for this package."""
|
|
library_code = PKG_ROOT / "langchain"
|
|
for path in library_code.rglob("*.py"):
|
|
# Calculate the relative path to the module
|
|
module_name = (
|
|
path.relative_to(PKG_ROOT).with_suffix("").as_posix().replace("/", ".")
|
|
)
|
|
if module_name.endswith("__init__"):
|
|
# Without init
|
|
module_name = module_name.rsplit(".", 1)[0]
|
|
|
|
try:
|
|
mod = importlib.import_module(module_name)
|
|
except ModuleNotFoundError as e:
|
|
msg = f"Could not import {module_name}"
|
|
raise ModuleNotFoundError(msg) from e
|
|
attributes = dir(mod)
|
|
|
|
for name in attributes:
|
|
if name.strip().startswith("_"):
|
|
continue
|
|
# Attempt to import the name from the module
|
|
getattr(mod, name)
|