Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LordXido
/
CodexByte_Runtime
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
LordXido
commited on
Jan 11
Commit
a8d8b1e
·
verified
·
1 Parent(s):
470033e
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+8
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import json
2
+
3
+
def load_data_sources():
4
+
"""
5
+
Loads CodexByte commodity configuration.
6
+
"""
7
+
with open("codexbyte_db.json", "r") as f:
8
+
return json.load(f)