Created
January 11, 2024 18:02
-
-
Save heathermiller/c190952abd289a6b5ea4b941dbe19b49 to your computer and use it in GitHub Desktop.
Marvin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ai_fn | |
def generate_recipe(ingredients: list[str]) -> list[str]: | |
"""From a list of `ingredients`, generates a | |
complete instruction set to cook a recipe. | |
""" | |
generate_recipe(["lemon", "chicken", "olives", "coucous"]) | |
generate_recipe.prompt( | |
"I need a recipe using Lemon Chicken Olives and Coucous" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment