From d314acb2d51e66050c647f4294eb9a98c43be4aa Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Tue, 19 Mar 2024 09:29:12 -0700 Subject: [PATCH] core[patch]: Move `globals` to a module instead of a package (non breaking change) (#19159) Classes and functions defined in __init__.py are not parsed into the API Reference. For example: libs/core/langchain_core/globals/__init__.py : `set_verbose` `get_llm_cache`, `set_llm_cache`, ... And the whole `langchain_core.globals` namespace is not visible in the API Reference. The refactoring is just file renaming. --- libs/core/langchain_core/{globals/__init__.py => globals.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename libs/core/langchain_core/{globals/__init__.py => globals.py} (100%) diff --git a/libs/core/langchain_core/globals/__init__.py b/libs/core/langchain_core/globals.py similarity index 100% rename from libs/core/langchain_core/globals/__init__.py rename to libs/core/langchain_core/globals.py