Generate Google Ads Campaign

This task generates a google ads campaign by a product name, topic and benefit.

Input

This task generates a google ads campaign by a product name, topic and benefit.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.030.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_benefit (Product benefit): The benefit of the product
  • product_name (Product name): The name of the product
  • topic (Topic): The topic that describes the product.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-generate-google-ads-campaign/1.0.0?product_benefit=ai%20automation%2C%20no%20code%2C%20community%20driven&product_name=AnySolve.ai&topic=AI%20Automation
  • 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-google-ads-campaign','1.0.0', {'product_benefit': 'ai automation, no code, community driven', 'product_name': 'AnySolve.ai', 'topic': 'AI Automation'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-generate-google-ads-campaign','1.0.0', product_benefit='ai automation, no code, community driven', product_name='AnySolve.ai', topic='AI Automation')