| import yaml | |
| def load_config(config_path: str) -> dict: | |
| """Load configuration from a YAML file.""" | |
| with open(config_path, 'r') as f: | |
| return yaml.safe_load(f) |
| import yaml | |
| def load_config(config_path: str) -> dict: | |
| """Load configuration from a YAML file.""" | |
| with open(config_path, 'r') as f: | |
| return yaml.safe_load(f) |