diff --git a/README.md b/README.md index 0b5590b..3e067fa 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,8 @@ You can then use it like so: ```js import { - Garden + Garden, + ProfileBrowser, } from 'prompt-garden'; const env = { @@ -118,7 +119,8 @@ const env = { }; const main = async () => { - const garden = new Garden(env); + const profile = new ProfileBrowser(); + const garden = new Garden(env, profile); await garden.ensureSeedPacket('https://raw.githubusercontent.com/jkomoros/prompt-garden/main/seeds/example-import.json'); const seed = await garden.seed('favorite-things-limerick'); const result = await seed.grow();