mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-22 15:42:27 +02:00
- Add LLM executor supporting OpenAI vision, tool calling, embeddings, and structured outputs - Introduce event emitter/receiver workflows with deduplication and filtering (generate_event functions) - Add workflow extends/override system enabling inheritance chains and step merge modes - Update function naming to snake_case across all testdata (fileExists→file_exists, etc.) - Add comprehensive test fixtures for linter, events, CDN, step dependencies, and extends workflows
37 lines
887 B
YAML
37 lines
887 B
YAML
name: test-parallel-steps
|
|
kind: module
|
|
description: Test nested parallel steps with mixed types
|
|
tags: test,parallel,nested
|
|
|
|
params:
|
|
- name: target
|
|
required: true
|
|
|
|
steps:
|
|
- name: setup
|
|
type: bash
|
|
command: mkdir -p /tmp/parallel-steps-test
|
|
|
|
- name: nested-parallel
|
|
type: parallel-steps
|
|
parallel_steps:
|
|
- name: sub-step-1
|
|
type: bash
|
|
command: 'echo "sub 1: {{target}}" > /tmp/parallel-steps-test/sub1.txt'
|
|
- name: sub-step-2
|
|
type: bash
|
|
command: 'echo "sub 2: {{target}}" > /tmp/parallel-steps-test/sub2.txt'
|
|
- name: sub-step-3
|
|
type: function
|
|
function: 'trim(" nested ")'
|
|
|
|
- name: verify-files
|
|
type: function
|
|
function: file_exists("/tmp/parallel-steps-test/sub1.txt")
|
|
exports:
|
|
file_exists: "output"
|
|
|
|
- name: cleanup
|
|
type: bash
|
|
command: rm -rf /tmp/parallel-steps-test
|