Wikipedia Article Creation

Generates Wikipedia articles from rough drafts you provide.

Input

Description

This tool utilizes advanced AI models to analyze your draft text and generate a well-structured Wikipedia article. While it adheres to Wikipedia's content guidelines to the best of its ability, it is crucial to remember that the generated article may require further editing and fact-checking to meet all Wikipedia's quality standards and policies before submission.

Applications

  • Streamline Wikipedia article creation
  • Improve the quality and accuracy of draft articles

How to use the task

Simply provide article title and article draft text, and the tool will do the rest, converting it into a complete and informative Wikipedia-style article.

Privacy

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

[1.0.2]:
First Version (Updated)
[1.0.1]:
First Version (Updated)
[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.204.03.2024
1.0.104.03.2024
1.0.004.03.2024

API

The REST API allows you to call the task with the same costs as when running the task. Please generate an Personal access token before using the REST API.

Parameters

  • text_draft (Article draft text): Kindly input your text in this space.
  • title (Article title): Provide the title for your desired article.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-mr-wikipedia-article-creation/1.0.2?text_draft=&title=
  • 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-wikipedia-article-creation','1.0.2', {'text_draft': '', 'title': ''})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-mr-wikipedia-article-creation','1.0.2', text_draft='', title='')