ChatDev/utils/io_utils.py
2026-01-07 16:24:01 +08:00

6 lines
186 B
Python
Executable File

from typing import Any, Dict
import yaml
def read_yaml(path) -> Dict[str, Any]:
with open(path, mode="r", encoding="utf-8") as f:
return yaml.load(f, Loader=yaml.FullLoader)