-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhello_world.yaml
More file actions
37 lines (33 loc) · 892 Bytes
/
hello_world.yaml
File metadata and controls
37 lines (33 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
id: hello-world
name: "Hello World"
description: |
The simplest possible pipeline - just generates text using AI.
Perfect for testing your orchestrator installation.
# Simple parameter structure
parameters:
name:
type: string
default: "World"
description: "Name to greet"
# Single step pipeline
steps:
- id: greet
action: generate_text
parameters:
prompt: "Generate a friendly greeting message for '{{ name }}'"
model: <AUTO>Simple text generation</AUTO>
max_tokens: 100
temperature: 0.7
# Simple output
outputs:
message: "{{ greet.result }}"
# Metadata for documentation
metadata:
category: "basic"
complexity: "beginner"
estimated_runtime: "< 30 seconds"
requirements: ["text generation model"]
use_cases:
- "Testing orchestrator installation"
- "Learning basic pipeline syntax"
- "Template parameter usage"