File size: 188 Bytes
100edb4
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import yaml
import streamlit as st
from pathlib import Path

def load_config(config_path: Path):
    with open(config_path, "r") as f:
        config = yaml.safe_load(f)
    return config