mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-27 18:04:25 +01:00
51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
# sourcery skip: do-not-use-staticmethod
|
|
"""
|
|
A module that contains the PromptConfig class object that contains the configuration
|
|
"""
|
|
import logging
|
|
|
|
import yaml
|
|
|
|
from autogpt import utils
|
|
from autogpt.logs.helpers import request_user_double_check
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class PromptConfig:
|
|
"""
|
|
A class object that contains the configuration information for the prompt, which will be used by the prompt generator
|
|
|
|
Attributes:
|
|
constraints (list): Constraints list for the prompt generator.
|
|
resources (list): Resources list for the prompt generator.
|
|
performance_evaluations (list): Performance evaluation list for the prompt generator.
|
|
"""
|
|
|
|
def __init__(self, prompt_settings_file: str) -> None:
|
|
"""
|
|
Initialize a class instance with parameters (constraints, resources, performance_evaluations) loaded from
|
|
yaml file if yaml file exists,
|
|
else raises error.
|
|
|
|
Parameters:
|
|
constraints (list): Constraints list for the prompt generator.
|
|
resources (list): Resources list for the prompt generator.
|
|
performance_evaluations (list): Performance evaluation list for the prompt generator.
|
|
Returns:
|
|
None
|
|
"""
|
|
# Validate file
|
|
(validated, message) = utils.validate_yaml_file(prompt_settings_file)
|
|
if not validated:
|
|
logger.error(message, extra={"title": "FAILED FILE VALIDATION"})
|
|
request_user_double_check()
|
|
exit(1)
|
|
|
|
with open(prompt_settings_file, encoding="utf-8") as file:
|
|
config_params = yaml.load(file, Loader=yaml.FullLoader)
|
|
|
|
self.constraints = config_params.get("constraints", [])
|
|
self.resources = config_params.get("resources", [])
|
|
self.best_practices = config_params.get("best_practices", [])
|