33 lines
No EOL
958 B
Bash
33 lines
No EOL
958 B
Bash
# === AI CONFIGURATION ===
|
|
|
|
# OpenRouter API key for text generation (DeepSeek)
|
|
AI_API_KEY=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
|
|
|
|
# DeepSeek model for text/keyword generation
|
|
AI_MODEL_NAME=deepseek/deepseek-chat-v3-0324:free
|
|
|
|
# OpenRouter API URL
|
|
AI_API_URL=https://openrouter.ai/api/v1/chat/completions
|
|
|
|
# === GROK VISION API CONFIGURATION ===
|
|
|
|
# Grok API key for vision analysis (add your Grok API key here)
|
|
GROK_API_KEY=sk-voidai-vVU2HHiq1txTNmXdZOP98LzARmi4HsptTixMqFSX4yBbw8ogvmKlJEPeKrH1hwEd6j6AnED9LsR6ztPtRMT7UzeLOyxQkasbwKow
|
|
|
|
# Grok-2-Vision model
|
|
GROK_VISION_MODEL=grok-2-vision-1212
|
|
|
|
# Grok API URL
|
|
GROK_API_URL=https://api.voidai.app/v1/
|
|
|
|
# Optional: AI task-specific configuration
|
|
AI_TASK=keyword_generation
|
|
AI_RENAME_STRATEGY=descriptive # Options: 'timestamped', 'uuid', 'descriptive'
|
|
|
|
# === GENERAL SETTINGS ===
|
|
|
|
# Environment type
|
|
NODE_ENV=development
|
|
|
|
# Optional: Logging or debugging
|
|
ENABLE_LOGGING=true |