Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rtwotwo
/
Lagent
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Lagent
/
lagent
/
utils
/
package.py
Rtwotwo
Update Files
73d949e
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
179 Bytes
from
importlib.util
import
find_spec
def
is_module_exist
(
module_name
):
spec = find_spec(module_name)
if
spec
is
None
:
return
False
else
:
return
True