File size: 446 Bytes
aa61236 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Environment Variables Template
# Copy this file to .env and fill in your values
# DO NOT commit .env to version control!
# OpenAI API Key (Required for OpenAI models)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# HuggingFace API Key (Required for HF Inference API - FREE models)
# Get your key from: https://huggingface.co/settings/tokens
HUGGINGFACE_API_KEY=your_huggingface_token_here
|