gpt4all/read.py
2023-03-25 16:17:48 +00:00

10 lines
221 B
Python

import yaml
def read_config(path):
# read yaml and return contents
with open(path, 'r') as file:
try:
return yaml.safe_load(file)
except yaml.YAMLError as exc:
print(exc)