JSPM

genkit-recipe-generator

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 3
    • Score
      100M100P100Q53739F
    • License ISC

    A Genkit flow to generate recipes from a list of ingredients.

    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

    1. Install the dependencies:

      npm install
    2. Run the flow:

      import { recipeGeneratorFlow } from 'genkit-recipe-generator';
      
      const recipe = await recipeGeneratorFlow({
        ingredients: ['chicken', 'rice', 'broccoli'],
      });
      
      console.log(recipe);