mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-24 16:42:28 +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
34 lines
617 B
YAML
34 lines
617 B
YAML
name: valid-workflow
|
|
kind: module
|
|
description: A valid workflow with no lint issues
|
|
tags: test,linter
|
|
|
|
params:
|
|
- name: target
|
|
required: true
|
|
- name: threads
|
|
default: 10
|
|
|
|
steps:
|
|
- name: step-one
|
|
type: bash
|
|
command: echo "Target is {{target}}"
|
|
timeout: 5m
|
|
exports:
|
|
output_one: "output"
|
|
|
|
- name: step-two
|
|
type: bash
|
|
command: echo "Output is {{output_one}}"
|
|
depends_on:
|
|
- step-one
|
|
timeout: 5m
|
|
exports:
|
|
final_output: "output"
|
|
|
|
- name: step-three
|
|
type: function
|
|
function: 'log_info("Final: {{final_output}}")'
|
|
depends_on:
|
|
- step-two
|