From b163c5b7f9167bc705bc7f9c8f987ba2d25be3ea Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 7 Dec 2023 13:53:07 -0800 Subject: [PATCH] experimental --- libs/experimental/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/experimental/Makefile b/libs/experimental/Makefile index e426a37b1ba41..affbc7777d7eb 100644 --- a/libs/experimental/Makefile +++ b/libs/experimental/Makefile @@ -21,6 +21,11 @@ extended_tests: integration_tests: poetry run pytest tests/integration_tests +check_imports: langchain_experimental/**/*.py + for f in $^ ; do \ + python -c "from importlib.machinery import SourceFileLoader; SourceFileLoader('x', '$$f').load_module()" ; \ + done + ###################### # LINTING AND FORMATTING