Spaces:
Sleeping
Sleeping
File size: 863 Bytes
7c4332a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import os
from fastapi import HTTPException, status
class EnvironmentVariableChecker:
def validate_environment_variables(self):
variables = ['AUTHENTICATION_TOKEN', 'HUGGINGFACE_TOKEN', 'HUGGINGFACE_ORGANIZATION']
for variable in variables:
if os.getenv(variable) is None:
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail=f"Environment variable {variable} not set, please set the {variable} environment variable",
)
def get_authentication_token(self):
return os.getenv('AUTHENTICATION_TOKEN')
def get_huggingface_token(self):
return os.getenv('HUGGINGFACE_TOKEN');
def get_huggingface_organization(self):
return os.getenv('HUGGINGFACE_ORGANIZATION');
|