Veganize a dish / Vegan Recipe

This task shows you how you can cook a dish vegan.

Input

Description

Enter a meal. The task shows you a recipe how you can make the dish vegan.

Applications

  • Vegan nutrition

How to use the task

  • Enter a meal
  • Click on run task

Privacy

  • Please do not share sensitive information
[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.025.01.2024

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • meal (Meal): The meal to prepare.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-sh-veganize-a-dish--vegan-recipe/1.0.0?meal=Burgers
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('u-anysolve-sh-veganize-a-dish--vegan-recipe','1.0.0', {'meal': 'Burgers'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-sh-veganize-a-dish--vegan-recipe','1.0.0', meal='Burgers')