CoolFace
Apppublic

prafulmemane/ContentGenie

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
.env.example64 linesDownload Raw Back to root
1# ContentGenie Environment Variables2# Copy this file to .env and fill in your actual keys3# DO NOT COMMIT .env TO GIT4 5# ============================================6# LLM Providers (Required)7# ============================================8 9# OpenAI - Get key from https://platform.openai.com/api-keys10OPENAI_API_KEY=sk-proj-your-key-here11 12# Google Gemini - Get from https://aistudio.google.com/app/apikey13GEMINI_API_KEY=AIzaSyDxxxxx14 15# Anthropic - Get from https://console.anthropic.com/16ANTHROPIC_API_KEY=sk-ant-xxxxx17 18# ============================================19# Search APIs (Required)20# ============================================21 22# SerpAPI - Get from https://serpapi.com/dashboard23SERPAPI_API_KEY=your-serpapi-key24 25# DuckDuckGo - Often doesn't need key (free) but add if needed26DUCKDUCKGO_API_KEY=27 28# Brave Search - Get from https://brave.com/search/api/29BRAVE_API_KEY=your-brave-key30 31# ============================================32# Image Generation (Optional)33# ============================================34 35# Stability AI - Get from https://platform.stability.ai/account/keys36STABILITY_KEY=sk-xxxxx37 38# Hugging Face Token - Get from https://huggingface.co/settings/tokens39HF_TOKEN=hf_xxxxx40 41# ============================================42# Video/Audio Generation (Optional)43# ============================================44 45# Runway ML - Get from https://runwayml.com/settings46RUNWAY_API_KEY=your-runway-key47 48# ElevenLabs - Get from https://elevenlabs.io/app/settings/api-keys49ELEVENLABS_API_KEY=your-elevenlabs-key50 51# ============================================52# Database (Optional)53# ============================================54 55DB_USER=sa56DB_PASSWORD=your-db-password57 58# ============================================59# Proxy/Network (Optional)60# ============================================61 62# HTTP_PROXY=http://proxy.example.com:808063# HTTPS_PROXY=http://proxy.example.com:808064