mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-26 03:38:12 +00:00
6 lines
186 B
Python
Executable File
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) |