Spaces:
Runtime error
Runtime error
# config.py | |
import os | |
from dotenv import load_dotenv | |
load_dotenv() # This loads the variables from .env file | |
openai_api_key = os.getenv('OPENAI_API_KEY') | |
hf_token = os.getenv('hf_token') |