def load_config()

in bugbounty_gpt/env.py [0:0]


def load_config() -> dict:
    """Loads the configuration from the YAML file."""
    config_path = os.path.join(os.path.dirname(__file__), '../config.yaml')
    with open(config_path, 'r') as file:
        return yaml.safe_load(file)