If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Installation
The package is available at nuget.org and it can be installed via package manager console by executing following command:
PM> NuGet\Install-Package GroupDocs.Rewriter-Cloud
.NET SDK for Paraphrasing Cloud Documents
GroupDocs.Rewriter Cloud SDK for .NET is a simple C#/.NET SDK that enables your cloud Apps to perform paraphrasing, simplification, summarization and paraphrasing detection of Microsoft Word®, OpenOffice, Markdown, HTML and Adobe Acrobat® PDF documents as well as plain text by adding just a few lines of code.
In other words, it’s a SDK for document and plain text rewriting, summarization, etc. in our Cloud, that supports paraphrasing of .doc, .docx, .docm, .pdf, .rtf, .odt, .md, .html, .txt files. Just pass a specific file or text to the GroupDocs.Rewriter Cloud API, and it will process and save result in our Cloud or will return resulting text.
It is easy to get started with GroupDocs.Rewriter Cloud and there is nothing to install. Create an account at GroupDocs Cloud and get your application information, then you are ready to use SDKs.
Cloud Features
- Paraphrasing / summarization / simplification / paraphrase detection of documents
- Paraphrasing / summarization / simplification / paraphrase detection / comparison of plain text
- Words and idioms synonyms finder
- Return resulting text in response
- Save processed file in cloud
- No need to install any 3rd party software
You can specify format of document to process putting in the request’s body:
- Microsoft Word®: DOC, DOCX, DOCM
- Adobe®: PDF
- Markdown: MD
- HTML: HTML
- Other: RTF, ODT, TXT
Additionally, user could obtain processed file in any other format available for conversion. Just specify output format of paraphrased document by putting file extension in the request’s body:
- doc, docx — docx, rtf, html, odt, txt, md, pdf, tiff, svg, xps
- pdf — docx, pptx, html, svg, xps
- html — md, pdf, docx, tiff, xps
Please visit Supported Formats for details.
Supported Languages
- ar — to process Arabic text or document
- de — to process German text or document
- en — to process English text or document
- es — to process Spanish text or document
- fr — to process French text or document
- id — to process Indonesian text or document
- ru — to process Russian text or document
- uk — to process Ukrainian text or document
- sk — to process Slovak text or document
- pt — to process Portuguese text or document
- it — to process Italian text or document
- hi — to process Hindi text or document
- th — to process Thai text or document
JSON Request Details
To paraphrase plain text the following information should be put in the requests body:
- language — language of text (e.g. en)
- text — text to paraphrase (e.g. hello world)
- diversityDegree — diversity of paraphrasing, “medium” or “high”, default is “off”
- suggestions — to receive several suggested variants of paraphrasing (from 1 to 3)
To suummarize plain text:
- language — language of text
- text — text to paraphrase
- summarizationDegree — degree of summarization, “off”, “medium” or “high”
To simplify plain text:
- language — language of text
- text — text to paraphrase
To find synonyms:
- language — language of text
- text — word or phrase to find synonyms
- synonyms — number of synonyms to return
SDK also provides a tool for summarizing texts and documents in English. To do this, put the same parameters as for paraphrasing (except for “diversity” and “suggestions”) in the requests body.
How to use the SDK?
Our API is completely independent of your operating system, database system, or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone, and time-consuming. Therefore, we provide and support SDKs in many development languages to make it easier for your Cloud Apps to integrate with us.
Quickstart
1. Get Started
It is easy to get started with GroupDocs.Rewriter Cloud. Simply, create an account at GroupDocs Cloud and get your application information, then you are ready to use the SDKs.
2. Run Demo
- Checkout the SDK
- Open .NET core demo project
- Set Your ClientId & ClientSecret
- Run
Rewrite plain text
using GroupDocs.Rewriter.Cloud.Sdk.Api;
using GroupDocs.Rewriter.Cloud.Sdk.Client;
using GroupDocs.Rewriter.Cloud.Sdk.Client.Auth;
using GroupDocs.Rewriter.Cloud.Sdk.Model;
using Configuration = GroupDocs.Rewriter.Cloud.Sdk.Client.Configuration;
using System.Diagnostics;
using System.IO;
using System.Collections.Generic;
using System.Net.Http;
using HttpStatusCode = System.Net.HttpStatusCode;
namespace GroupDocs.Rewriter.Cloud.Sdk
{
public class TextRewriter
{
public TextRewriter()
{
Configuration config = new Configuration();
config.OAuthFlow = OAuthFlow.APPLICATION;
config.OAuthClientId = "YOU_CLIENT_ID";
config.OAuthClientSecret = "YOU_CLIENT_SECRET";
config.BasePath = "https://api.groupdocs.cloud/v2.0/rewriter";
ParaphraseApi api = new ParaphraseApi(conf);
string srcText = "Hello, everyone! We will try to rephrase this text into something new.";
string sourceLanguage = "en";
ParaphraseTextResponse textResponse = new ParaphraseTextResponse();
ParaphraseTextRequest req = new ParaphraseTextRequest(
language: sourceLanguage,
text: srcText,
suggestions: ParaphraseTextRequest.SuggestionsEnum.One,
diversityDegree: DegreeEnum.Off);
StatusResponse responseId = await api.ParaphraseTextPostAsync(req);
try
{
if (responseId.Status.ToString() == "Accepted")
{
while (true)
{
textResponse = await api.ParaphraseTextRequestIdGetAsync(responseId.Id);
if ((HttpStatusCode)textResponse.Status == HttpStatusCode.OK)
{
Console.WriteLine("Plain text paraphrasing: " + textResponse.ParaphraseReult);
break;
}
else
Thread.Sleep(200);
}
}
else
{
textResponse = new ParaphraseTextResponse() { Status = responseId.Status, Message = responseId.Message };
Console.WriteLine("Text error: " + textResponse.Message);
}
}
catch (Exception ex)
{
Console.WriteLine("Text exception: " + ex.ToString());
}
}
}
}
GroupDocs.Rewriter Cloud SKDs
GitHub
Package Manager