22 lines
598 B
Bash
22 lines
598 B
Bash
![]() |
# === AI CONFIGURATION ===
|
||
|
|
||
|
# Your API key or access token
|
||
|
AI_API_KEY=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
|
||
|
|
||
|
# Name or ID of the AI model
|
||
|
AI_MODEL_NAME=deepseek/deepseek-chat-v3-0324:free
|
||
|
|
||
|
# Endpoint or base URL for DeepSeek API (update if different)
|
||
|
AI_API_URL=https://api.deepseek.com/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
|