SexBot / utils /loader.py
Pew404's picture
Upload folder using huggingface_hub
318db6e verified
raw
history blame contribute delete
182 Bytes
import yaml
from typing import Dict
def config_loader(config_path) -> Dict:
with open(config_path) as f:
config = yaml.load(f, Loader=yaml.FullLoader)
return config