Compose an Email

Writes a professional email message.

Input

The task involves the process of crafting a well-written and effective email. The goal is to convey the intended message, maintain professionalism, and engage the recipient effectively.

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

  • goal (Describe the email / to whom): Describe what the email is about and to whom you want to send it.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-write-email/1.0.0?goal=I%20want%20to%20ask%20my%20professor%20whether%20I%20can%20extend%20the%20deadline%20of%20the%20course%20'Fishing'
  • 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-write-email','1.0.0', {'goal': 'I want to ask my professor whether I can extend the deadline of the course \'Fishing\''})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-write-email','1.0.0', goal='I want to ask my professor whether I can extend the deadline of the course \'Fishing\'')