Generate Viral Ad

This task creates an Ad that is targeted to your audience.

Input

This task creates an Ad that is targeted to your audience.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.006.06.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): Explain your product.
  • target_audience (Target audience): The audience you want to address
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-generate-viral-ad/1.0.0?product=A%20plattform%20saas%20platform%20targeted%20to%20create%20AI%20tasks&target_audience=Prompt%20engineers
  • 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-generate-viral-ad','1.0.0', {'product': 'A plattform saas platform targeted to create AI tasks', 'target_audience': 'Prompt engineers'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-generate-viral-ad','1.0.0', product='A plattform saas platform targeted to create AI tasks', target_audience='Prompt engineers')