Prompt Writer

Generate a perfect prompt for Large Language Models based on your idea.

Input

Description

Looking to generate the perfect prompt for your Large Language Models? Prompt Writer is the tool you need. It transforms your idea into a finely crafted prompt suitable for LLMs.

Applications

  • Assisting in writing prompts for LLM models like ChatGPT.

  • Aiding prompt engineers in crafting high-quality and effective prompts for automated applications.

  • Generating prompts for various AI applications.

How to use the task

  1. Simply enter your idea for the prompt in the specified field.

  2. Click the "Run Task" button and let our intelligent algorithm generate the perfect prompt for you.

Privacy

Please enter information about whether you may send sensitive user input information to a service as ChatGPT.

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

  • prompt_idea (Input prompt): Please provide your prompt idea.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-mr-prompt-writer/1.0.0?prompt_idea=Compose%20a%201000-word%20essay%20emphasizing%20the%20significance%20of%20a%20balanced%20diet.
  • 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-anysolve-mr-prompt-writer','1.0.0', {'prompt_idea': 'Compose a 1000-word essay emphasizing the significance of a balanced diet.'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-mr-prompt-writer','1.0.0', prompt_idea='Compose a 1000-word essay emphasizing the significance of a balanced diet.')