Sha256: c6da5c193b1e19c61a4cec7d3a2b3a6769d846a91c71ca98c4ec389392ad7776
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
workflow :youtube_launch_optimizer do description 'This workflow optimizes video launch by analyzing, preparing, and generating content for various platforms.' settings do prompt_path 'prompts/youtube/launch_optimizer' default_llm :gpt4o end prompts do prompt :some_prompt , content: '1-1-some.txt' prompt :another_prompt , content: '1-2-another.txt' prompt :yet_another_prompt , content: '1-3-yet-another.txt' end section 'Section 1' do step 'Step 1' do input :attribute1 input :attribute2 end step 'Step 2' do input :attribute1 prompt :some_prompt output :attribute3 end step 'Step 3' do input :attribute2 input :attribute3 prompt :another_prompt output :attribute4 end end section 'Section 2' do step 'Other Step 1' do input :attribute1 prompt :yet_another_prompt output :attribute5 end end actions do save save_json '~/gpt-workflows/youtube-launch-optimizer.json' end end
Version data entries
6 entries across 6 versions & 1 rubygems