genkit-recipe-generator
v1.0.0
Published
A Genkit flow to generate recipes from a list of ingredients.
Readme
Genkit Recipe Generator
This is a Genkit flow that generates a recipe from a list of ingredients.
How to use
Install the dependencies:
npm installRun the flow:
import { recipeGeneratorFlow } from 'genkit-recipe-generator'; const recipe = await recipeGeneratorFlow({ ingredients: ['chicken', 'rice', 'broccoli'], }); console.log(recipe);
