Spaces:
Sleeping
Sleeping
File size: 236 Bytes
c28dccc |
1 2 3 4 5 6 7 8 9 10 11 |
import os
from dotenv import load_dotenv
# Load environment variables from .env file
load_dotenv()
# Access the API key
api_key = os.getenv('OPENAI_API_KEY')
# Use the API key in your application
print(f"Your API key is: {api_key}") |