Files
osmedeus/test/testdata/workflows/linter/valid-workflow.yaml
T
j3ssie 1403d20a4d feat: add LLM step executor with vision and tool support, event workflow system, and inheritance
- 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
2026-01-20 18:23:57 +08:00

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