ConversAI / src /utils /utils.py
ishworrsubedii's picture
Integrated speech transcription
b368e21
raw
history blame
188 Bytes
"""
Created By: ishwor subedi
Date: 2024-08-02
"""
import yaml
def load_config(file_path):
with open(file_path, 'r') as file:
config = yaml.safe_load(file)
return config