Cook Dish Impressive / Improve Dish

This task shows you how you can improve a dish.

Input

Description

Enter a meal. The task shows you how you can improve a dish.

Applications

  • Cooking events
  • Home Cooking
  • Birthdays

How to use the task

  • Enter a meal
  • Click on "Run Task"

Privacy

  • Please do not enter sensitive information.
[1.0.5]:
enumerate tips
[1.0.4]:
add star cook recipes
[1.0.3]:
add full recipe
[1.0.2]:
add home cook recipes
[1.0.1]:
Added star cook examples
[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.525.01.2024
1.0.425.01.2024
1.0.325.01.2024
1.0.225.01.2024
1.0.125.01.2024
1.0.025.01.2024

API

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

Parameters

  • meal (Meal to cook): The meal to cook.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-sh-cook-dish-impressive--improve-dish/1.0.5?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-cook-dish-impressive--improve-dish','1.0.5', {'meal': 'Burgers'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-sh-cook-dish-impressive--improve-dish','1.0.5', meal='Burgers')