diff --git a/.gitignore b/.gitignore index 559581a..d2fdc11 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,30 @@ __pycache__/ *.xlsx # Debug output -debug_output/ \ No newline at end of file +debug_output/ + +# Generated content and temporary files +*.json +*.html +*.txt +*.backup +*.backup_before_fresh_start + +# Generated databases +content_automation.db* + +# Generated job files +jobs/*.json + +# Generated content files +*_project*.html +*_project*.json +*_project*.txt +outline_*.json +outline_raw_*.txt +title_*.txt +content_*.html +augmented_*.html + +# Temporary files +temp_* \ No newline at end of file diff --git a/README.md b/README.md index 0385f59..2be6cbb 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ uv run python main.py generate-batch \ --model gpt-4o-mini ``` -Available models: `gpt-4o-mini`, `claude-sonnet-4.5` +Available models: `gpt-4o-mini`, `claude-sonnet-4.5`, - anything at openrouter **Note:** If your job file contains a `models` config, it will override the `--model` flag and use different models for title, outline, and content generation stages. diff --git a/env.example b/env.example index f369fb6..18f3b03 100644 --- a/env.example +++ b/env.example @@ -4,7 +4,7 @@ DATABASE_URL=sqlite:///./content_automation.db # AI Service Configuration (OpenRouter) OPENROUTER_API_KEY=your_openrouter_api_key_here AI_API_BASE_URL=https://openrouter.ai/api/v1 -AI_MODEL=anthropic/claude-3.5-sonnet + # AWS S3 Configuration AWS_ACCESS_KEY_ID=your_aws_access_key_here