mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-19 13:26:32 -04:00
77c286cf02
Move the LCP calls to the client.
18 lines
458 B
Python
18 lines
458 B
Python
import platform
|
|
from functools import lru_cache
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
def get_runtime_environment() -> dict:
|
|
"""Get information about the environment."""
|
|
# Lazy import to avoid circular imports
|
|
from langchain import __version__
|
|
|
|
return {
|
|
"library_version": __version__,
|
|
"library": "langchain",
|
|
"platform": platform.platform(),
|
|
"runtime": "python",
|
|
"runtime_version": platform.python_version(),
|
|
}
|