mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
5 lines
100 B
Python
5 lines
100 B
Python
import importlib_metadata
|
|
try:
|
|
version = importlib_metadata.version("litellm")
|
|
except:
|
|
pass
|