Spaces:
Runtime error
Runtime error
File size: 196 Bytes
e3551a8 |
1 2 3 4 5 6 7 8 |
# 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') |