20 lines
341 B
Python
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",
|
|
]
|