Spaces:
Runtime error
Runtime error
| # config.py | |
| class Config: | |
| API_KEY = "api_key" # Placeholder for the API key, initially set to None | |
| def set_api_key(cls, api_key): | |
| cls.API_KEY = api_key | |
| def get_api_key(cls): | |
| return cls.API_KEY |