Package Exports
- genkit-recipe-generator
- genkit-recipe-generator/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (genkit-recipe-generator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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 install
Run the flow:
import { recipeGeneratorFlow } from 'genkit-recipe-generator'; const recipe = await recipeGeneratorFlow({ ingredients: ['chicken', 'rice', 'broccoli'], }); console.log(recipe);