117 lines
No EOL
2.9 KiB
YAML
117 lines
No EOL
2.9 KiB
YAML
# Maximum Extractor Configuration - Complete Extraction
|
|
# Duration: ~94s (with heavy parallelization)
|
|
# Aspects: 100+ (maximum detail)
|
|
# Use case: Critical production, A/B testing, quality validation
|
|
# Model: ministral-14b-reasoning (single model for all stages)
|
|
|
|
name: maximum
|
|
description: "All extractors - maximum detail for critical use cases"
|
|
version: 1.0.0
|
|
|
|
# Single model for entire pipeline
|
|
modelConfig:
|
|
model: ministral-14b-reasoning
|
|
warmup: true # Warmup once at pipeline start
|
|
|
|
# SEO-specific factor weights
|
|
factorWeights:
|
|
cultural: 0.9
|
|
category: 0.8
|
|
audience_appeal: 0.8
|
|
composition: 0.7
|
|
material: 0.6
|
|
maturity: 0.5
|
|
geographic: 0.1 # LOWEST for SEO
|
|
|
|
# 7-level maturity taxonomy
|
|
maturityLevels:
|
|
- sfw
|
|
- suggestive
|
|
- mature
|
|
- explicit_soft
|
|
- explicit_nude
|
|
- explicit_sexual
|
|
- extreme
|
|
|
|
# Pipeline configuration - all available extractors
|
|
pipeline:
|
|
- stage: term_analysis
|
|
parallel: true
|
|
duration_estimate: 15
|
|
extractors:
|
|
- term_style_analysis
|
|
- term_gender_analysis
|
|
- term_audience_analysis
|
|
- term_maturity_analysis
|
|
- term_aesthetic_analysis
|
|
- term_power_analysis
|
|
- term_clothing_analysis
|
|
- term_physical_details_analysis
|
|
- term_emotional_analysis
|
|
- term_cultural_context_analysis
|
|
|
|
- stage: synthesis
|
|
parallel: false
|
|
depends: [term_analysis]
|
|
duration_estimate: 20
|
|
extractors:
|
|
- term_interaction_synthesis
|
|
|
|
- stage: context
|
|
parallel: true # category, geographic, temporal all parallel
|
|
depends: [synthesis]
|
|
duration_estimate: 12
|
|
extractors:
|
|
- category_integration
|
|
- geographic_integration
|
|
- temporal_context_analysis
|
|
|
|
- stage: resolution
|
|
parallel: false
|
|
depends: [context]
|
|
duration_estimate: 10
|
|
extractors:
|
|
- weighted_hierarchy_resolution
|
|
|
|
- stage: deep_dive
|
|
parallel: true # 3 extractors in parallel
|
|
depends: [resolution]
|
|
duration_estimate: 15
|
|
extractors:
|
|
- audience_deep_dive
|
|
- sdxl_technical_specs
|
|
- power_dynamics_deep_dive
|
|
|
|
- stage: refinement
|
|
parallel: true # 5 extractors in parallel
|
|
depends: [deep_dive]
|
|
duration_estimate: 12
|
|
extractors:
|
|
- color_palette_deep_analysis
|
|
- composition_refinement
|
|
- emotional_depth_analysis
|
|
- lighting_detailed_specs
|
|
- character_archetype_analysis
|
|
|
|
- stage: validation
|
|
parallel: false
|
|
depends: [refinement]
|
|
duration_estimate: 10
|
|
extractors:
|
|
- coherence_validation
|
|
|
|
# Expected output aspects (100+ total from all 25 categories)
|
|
outputAspects:
|
|
# All 228 aspects from plan can be extracted
|
|
total_extractable: 228
|
|
typical_extracted: 100-150 # Actual extraction depends on request complexity
|
|
|
|
# Performance estimates
|
|
performance:
|
|
total_duration_estimate: 94
|
|
warmup_duration: 12
|
|
execution_duration: 82
|
|
total_llm_calls: 17
|
|
parallel_groups: 4
|
|
parallelization_savings: 120 # vs sequential execution
|
|
EOF |