mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
198b85334f
Added missed docstrings. Formatted docstrings to the consistent form.
22 lines
574 B
Python
22 lines
574 B
Python
import platform
|
|
from functools import lru_cache
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
def get_runtime_environment() -> dict:
|
|
"""Get information about the LangChain runtime environment.
|
|
|
|
Returns:
|
|
A dictionary with information about the runtime environment.
|
|
"""
|
|
# Lazy import to avoid circular imports
|
|
from langchain_core import __version__
|
|
|
|
return {
|
|
"library_version": __version__,
|
|
"library": "langchain-core",
|
|
"platform": platform.platform(),
|
|
"runtime": "python",
|
|
"runtime_version": platform.python_version(),
|
|
}
|