from config.config_loader import save_api_key def main(): """Set up the configuration with API key.""" api_key = "sk-652f44592f6d4d19bad104c54f5fbf4a" save_api_key(api_key) print("API key has been securely saved.") if __name__ == "__main__": main()