Update services/config.py
Browse files- services/config.py +2 -1
services/config.py
CHANGED
|
@@ -40,11 +40,12 @@ LIBRARY_DIR = "/data/Memories/My_AI_Library/"
|
|
| 40 |
PAINTINGS_DIR = "/data/Memories/Creations/paintings/"
|
| 41 |
MUSIC_DIR = "/data/Memories/Creations/music/"
|
| 42 |
SUBCONSCIOUS_DIR = "/data/Memories/Subconscious/"
|
|
|
|
| 43 |
|
| 44 |
# FORCED INITIALIZATION
|
| 45 |
# We attempt to create all required directories on the persistent bucket at boot.
|
| 46 |
# Any path that doesn't exist yet is created now so first-write never races against mkdir.
|
| 47 |
-
_REQUIRED_DIRS = [DATA_DIR, LIBRARY_DIR, PAINTINGS_DIR, MUSIC_DIR, SUBCONSCIOUS_DIR]
|
| 48 |
try:
|
| 49 |
for _d in _REQUIRED_DIRS:
|
| 50 |
os.makedirs(_d, exist_ok=True)
|
|
|
|
| 40 |
PAINTINGS_DIR = "/data/Memories/Creations/paintings/"
|
| 41 |
MUSIC_DIR = "/data/Memories/Creations/music/"
|
| 42 |
SUBCONSCIOUS_DIR = "/data/Memories/Subconscious/"
|
| 43 |
+
BRAIN_DIR = "/data/Brain_Weights/"
|
| 44 |
|
| 45 |
# FORCED INITIALIZATION
|
| 46 |
# We attempt to create all required directories on the persistent bucket at boot.
|
| 47 |
# Any path that doesn't exist yet is created now so first-write never races against mkdir.
|
| 48 |
+
_REQUIRED_DIRS = [DATA_DIR, LIBRARY_DIR, PAINTINGS_DIR, MUSIC_DIR, SUBCONSCIOUS_DIR, BRAIN_DIR]
|
| 49 |
try:
|
| 50 |
for _d in _REQUIRED_DIRS:
|
| 51 |
os.makedirs(_d, exist_ok=True)
|