smarttrip_ai / utils /config_loader.py
swaraj
test_2
0fefb50
Raw
History Blame Contribute Delete
210 Bytes
import yaml
import os
def load_config(config_path: str = "config/config.yaml") -> dict:
with open(config_path, "r") as file:
config = yaml.safe_load(file)
# print(config)
return config