## import yaml and load the config.yaml file
import yaml
import sys
# Initialize the config variable
config = {}
def load_config():
""" Function to load the config.yaml file """
config = {}
with open('config.yaml', 'r') as file:
config = yaml.safe_load(file)
return config
## Format will be like a json object.
config = load_config()