Write Cold Emails by AIDA Model

Leverages the AIDA framework for crafting compelling cold emails.

Input

With this tool, you can easily input your product description and leverage the AIDA framework to generate compelling cold emails.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.027.05.2023

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

  • product (Product description): The description of the product
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-cold-email-by-aida-model/1.0.0?product=The%20description%20of%20your%20product%2C%20e.g.%20Name%3A%20AnySolve%20An%20AI%20plattform%20that%20allows%20you%20to%20execute%20AI%20tasks
  • 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-ba835df8268fc301-cold-email-by-aida-model','1.0.0', {'product': 'The description of your product, e.g. Name: AnySolve An AI plattform that allows you to execute AI tasks'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-cold-email-by-aida-model','1.0.0', product='The description of your product, e.g. Name: AnySolve An AI plattform that allows you to execute AI tasks')