WoodworkEngine

A powerful framework for building and deploying AI agents using Infrastructure as Code.

Define AI Agents with Code

Woodwork provides a declarative language to design, configure, and deploy AI agents effortlessly.

// main.ww
    model = llm openai {
      model = "gpt-4o"
      api_key = $OPENAI_API_KEY
    }
    
    endpoint = api web {
      url = "http://localhost:3000"
      documentation = "endpoint.txt"
    }
    
    in = input command_line {
      to: model
    }

Turn your declarative code into powerful AI agents that adapt and learn.