24 lines
678 B
Plaintext
24 lines
678 B
Plaintext
# WordPress Configuration
|
|
WORDPRESS_URL=https://yoursite.com
|
|
WORDPRESS_USERNAME=your_username
|
|
WORDPRESS_APP_PASSWORD=your_application_password
|
|
|
|
# OpenRouter API Configuration
|
|
OPENROUTER_API_KEY=your_openrouter_api_key
|
|
|
|
# AI Model Selection (choose one)
|
|
# Recommended: anthropic/claude-3.5-sonnet (best quality, $3/$15 per 1M tokens)
|
|
# Budget: meta-llama/llama-3.1-70b-instruct (free tier available)
|
|
# Alternative: openai/gpt-4-turbo ($10/$30 per 1M tokens)
|
|
AI_MODEL=anthropic/claude-3.5-sonnet
|
|
|
|
# Script Configuration
|
|
BATCH_SIZE=100
|
|
API_DELAY_SECONDS=0.5
|
|
|
|
# Analysis Settings
|
|
ANALYSIS_MIN_POSITION=11
|
|
ANALYSIS_MAX_POSITION=30
|
|
ANALYSIS_MIN_IMPRESSIONS=50
|
|
ANALYSIS_TOP_N_POSTS=20
|