Create Press Release

This task creates a press release.

Input

This task creates a press release by providing a topic, the company type, the tone and the target audience.

[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

  • target_audience (Target audience): The target audience.
  • tone (Tone (formal / informal)): The tone of the press release.
  • topic (Topic): The topic of the press release.
  • organization_type (Organization type): The type of organization the press release is from
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-create-press-release/1.0.0?target_audience=businesses&tone=formal&topic=AnySolve%20launches%20its%20new%20AI%20automation%20platform&organization_type=Tech%20company
  • 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-create-press-release','1.0.0', {'target_audience': 'businesses', 'tone': 'formal', 'topic': 'AnySolve launches its new AI automation platform', 'organization_type': 'Tech company'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-create-press-release','1.0.0', target_audience='businesses', tone='formal', topic='AnySolve launches its new AI automation platform', organization_type='Tech company')