Create food combinations / food pairings

This tool create food combinations.

Input

Description

This tool create food combinations. You enter ingredients and get a list of combinations.

Applications

Everyone that cooks a meal.

How to use the task

  • Enter ingredients
  • Press „Execute Task“
  • You get a list of combinations.

Privacy

Do not share sensitive information.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.027.06.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

  • ingredients (Ingredients): The ingredients that should be paired.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-sh-create-food-combinations--food-pairings/1.0.0?ingredients=Pumpkin%20on%20a%20pizza.
  • 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-create-food-combinations--food-pairings','1.0.0', {'ingredients': 'Pumpkin on a pizza.'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-sh-create-food-combinations--food-pairings','1.0.0', ingredients='Pumpkin on a pizza.')