Tell a story

Tells a story.

Input

Generate captivating stories with this tool. It is designed to provide an engaging narrative for readers.

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

  • topic (Topic): The topic the story should be told
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-tell-a-story/1.0.0?topic=A%20child%20that%20was%20mean%20to%20a%20friend%20but%20learned%20that%20loyalty%20pays%20off
  • 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-tell-a-story','1.0.0', {'topic': 'A child that was mean to a friend but learned that loyalty pays off'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-tell-a-story','1.0.0', topic='A child that was mean to a friend but learned that loyalty pays off')