Use Higgsfield Workflows
mainWorkflows are high-level generation flows (like dubbing or reframing) that have unique parameter schemas.
- Discover workflows:
higgsfield workflow list - Inspect parameters:
higgsfield workflow get <workflow_name> - Run a workflow: Use
higgsfield generate workflow <workflow_name>followed by the required flags. - Estimate cost: Use
higgsfield generate cost workflow <workflow_name>for supported workflows.
# List available workflows
higgsfield workflow list
# Inspect parameters for 'reframe'
higgsfield workflow get reframe --json
# Run a 'reframe' workflow
higgsfield generate workflow reframe \
--video ./source.mp4 \
--aspect-ratio 9:16 \
--resolution 720p \
--wait
# Estimate cost for 'draw_to_video'
higgsfield generate cost workflow draw_to_video --duration 8.2 --resolution 720p