18 lines
389 B
Plaintext
18 lines
389 B
Plaintext
# Simple Pipeline Example
|
|
# Research a topic, then write an article
|
|
|
|
import "web-search" from "github:example/web-search"
|
|
|
|
agent researcher:
|
|
model: sonnet
|
|
skills: ["web-search"]
|
|
|
|
agent writer:
|
|
model: opus
|
|
|
|
session research: researcher
|
|
prompt: "Research the latest developments in quantum computing"
|
|
|
|
-> session article: writer
|
|
prompt: "Write a blog post about quantum computing"
|