Generate GoFundMe Campaign

Generates a sound and well written GoFundMe Campaign from a Descriptive Text and beneficiry

Input

Writing a excellent GoFundMe Campaign for Donations can be challenging. With this Task you get a quality solution in under a Minute.

[1.0.1]:
refined prompt and input field
[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.120.07.2023
1.0.020.07.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

  • beneficiary (Beneficiary): Who will benefit from it
  • story (Story): Explain all relevant details that you want to mention in the campaign
  • amount (Amount raised): How much you want to raise
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-be0546323ae941fa-generate-gofundme-campaign/1.0.1?beneficiary=Max%20Mustermann&story=I%20have%20not%20been%20insuranced%20and%20broke%20my%20leg%20and%20now%20face%20a%20medical%20bill%20of%20over%2020.000%24%20and%20dont%20know%20how%20to%20pay%20off%20the%20debt&amount=2000
  • 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-be0546323ae941fa-generate-gofundme-campaign','1.0.1', {'beneficiary': 'Max Mustermann', 'story': 'I have not been insuranced and broke my leg and now face a medical bill of over 20.000$ and dont know how to pay off the debt', 'amount': '2000'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-be0546323ae941fa-generate-gofundme-campaign','1.0.1', beneficiary='Max Mustermann', story='I have not been insuranced and broke my leg and now face a medical bill of over 20.000$ and dont know how to pay off the debt', amount='2000')