mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
10 lines
221 B
Python
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)
|