SupportEnv / interface.py
yashshinde0080's picture
8/4/2026
42d050e
raw
history blame contribute delete
188 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
class Config:
@staticmethod
def get_hf_token():
# Return the provided HF token
return os.getenv("HF_TOKEN")