Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PartAI
/
Dorna2-Llama3.1-8B-Instruct
like
40
Sleeping
App
Files
Files
Community
ccee14e
Dorna2-Llama3.1-8B-Instruct
/
utils.py
tabedini
Create utils.py
79322b9
verified
5 months ago
raw
Copy download link
history
blame
Safe
174 Bytes
import
json
def
load_list_from_json
(
file_path
):
with
open
(file_path,
'r'
, encoding=
'utf-8'
)
as
file:
return
json.load(file)
if
__name__ ==
'__main__'
:
pass