1

Start with a template

npx @covalenthq/create-zee-app
2

Modify the agent

const agent1 = new Agent({
    name: "Agent1",
    model: {
        provider: "openai",
        id: "gpt-4o-mini",
    },
    description: "A helpful AI assistant that can engage in conversation.",
    instructions: [
        "You are a helpful AI assistant that can engage in conversation.",
        "You are able to use the following tools to help the user.",
    ],
});
3

Modify the ZEE Workflow

const zee = new ZeeWorkflow({
    goal: "A workflow of agents that come up with the most creative greeting ever!",
    model: {
        provider: "openai",
        id: "gpt-4o-mini",
    },
    agents: [agent1, agent2],
});
4

Run the Zee Workflow

    (async function main() {
        const result = await zee.run();
        console.log(result);
    })();