Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
luckDW1126/Lagent
Penkris
/
lagent111
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
lagent111
/
lagent
/
utils
/
package.py
FaYo
agent
e3d4122
7 months 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