Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
PartAI
/
Dorna-Llama3-8B-Instruct
like
34
Running
on
L4
App
Files
Files
Community
93e4505
Dorna-Llama3-8B-Instruct
/
utils.py
tabedini
Create utils.py
79322b9
verified
4 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