Create Title From Text

This Task creates a title from a Text.

Input

Description

This Task creates a title from a Text.

Applications

  • TItle generation of Texts
  • Title generation of Chats

How to use the task

Enter a text. A title is generated.

Privacy

Do not share sensitive contents.

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

  • text (Text): The text the title should be generated from
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/intern-text-title/1.0.0?text=You%20can%20discover%20your%20needs%20from%20hundreds%20of%20available%20tasks%20that%20are%20ready%20to%20use.%20We%20have%20tools%20for%20all%20kind%20of%20professions.%20Do%20you%20need%20to%20create%20a%20chart%20by%20a%20description%3F%20Do%20you%20want%20to%20create%20a%20catalog%20of%20questions%20for%20an%20exam%3F%20Do%20you%20need%20to%20write%20a%20text%20or%20a%20paper%3F%20AnySolve%20got%20you%20covered!
  • 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('intern-text-title','1.0.0', {'text': 'You can discover your needs from hundreds of available tasks that are ready to use. We have tools for all kind of professions. Do you need to create a chart by a description? Do you want to create a catalog of questions for an exam? Do you need to write a text or a paper? AnySolve got you covered!'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('intern-text-title','1.0.0', text='You can discover your needs from hundreds of available tasks that are ready to use. We have tools for all kind of professions. Do you need to create a chart by a description? Do you want to create a catalog of questions for an exam? Do you need to write a text or a paper? AnySolve got you covered!')