Skip to content

Getting Started

Installation

macOS

Terminal window
brew install conductor

Linux

Terminal window
curl -L https://github.com/conductor/conductor/releases/latest/download/conductor-linux-amd64 -o conductor
chmod +x conductor
sudo mv conductor /usr/local/bin/

Windows

Download the latest release from GitHub releases and add to your PATH.

First Workflow

Create a file hello.yaml:

name: hello
steps:
- id: greet
type: llm
prompt: Say hello to the world in a creative way

Run it:

Terminal window
conductor run hello.yaml

You should see a creative greeting generated by your configured LLM.

Next Steps

Continue to the tutorial to build a complete meal planning workflow.