group-wbl/.venv/lib/python3.13/site-packages/langchain_classic/globals.py
2026-01-09 09:12:25 +08:00

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