Generate Article Only
1 StepsGenerate English article without images or translation
Workflow Flow
1
Generate EN Article
ON
📝 Article Gen
model:
gemini-2.0-flash-exp
use_memory:
✓ Yes
Step Details
1
Generate EN Article
Article Generation
ENABLED
Generates English article content using Google Gemini AI with memory-aware context for consistent writing style.
Configuration
Model
gemini-2.0-flash-exp
Use_Memory
✓ true
API Usage Example
// Generate article using this workflow
fetch('/plans/{plan_id}/generate/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRFToken': getCookie('csrftoken')
},
body: JSON.stringify({
workflow_name: '',
custom_config: {
// Optional: override step configurations
image_generation: {
resolution: '2K', // Change to 2K resolution
aspect_ratio: '16:9'
}
}
})
});