Files
Analytical_engine_backend/venv/Lib/site-packages/langchain_classic/globals.py
2026-05-11 12:36:20 +05:30

20 lines
341 B
Python

"""Global values and configuration that apply to all of LangChain."""
from langchain_core.globals import (
get_debug,
get_llm_cache,
get_verbose,
set_debug,
set_llm_cache,
set_verbose,
)
__all__ = [
"get_debug",
"get_llm_cache",
"get_verbose",
"set_debug",
"set_llm_cache",
"set_verbose",
]