lollms-webui/api/config.py

28 lines
726 B
Python
Raw Normal View History

2023-04-12 20:36:03 +00:00
######
# Project : GPT4ALL-UI
# File : config.py
# Author : ParisNeo with the help of the community
# Supported by Nomic-AI
2023-05-21 20:46:02 +00:00
# license : Apache 2.0
2023-04-12 20:36:03 +00:00
# Description :
# A front end Flask application for llamacpp models.
# The official GPT4All Web ui
# Made by the community for the community
######
import yaml
2023-04-20 17:30:03 +00:00
__author__ = "parisneo"
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
__copyright__ = "Copyright 2023, "
__license__ = "Apache 2.0"
2023-04-12 20:36:03 +00:00
def load_config(file_path):
2023-04-24 21:11:32 +00:00
with open(file_path, 'r', encoding='utf-8') as stream:
2023-04-12 20:36:03 +00:00
config = yaml.safe_load(stream)
2023-04-12 20:36:03 +00:00
return config
def save_config(config, filepath):
with open(filepath, "w") as f:
yaml.dump(config, f)