Lucidtech.Las 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Lucidtech.Las --version 0.2.0
NuGet\Install-Package Lucidtech.Las -Version 0.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Lucidtech.Las" Version="0.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lucidtech.Las --version 0.2.0
#r "nuget: Lucidtech.Las, 0.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Lucidtech.Las as a Cake Addin
#addin nuget:?package=Lucidtech.Las&version=0.2.0

// Install Lucidtech.Las as a Cake Tool
#tool nuget:?package=Lucidtech.Las&version=0.2.0

.NET SDK for Lucidtech AI Services

Documentation

Link to docs

Create documents by using doxygen. Download the latest and greatest version of doxygen.

$ doxygen documentation.conf

Installation

NuGet

$ nuget install Lucidtech.Las

Usage

Preconditions

  • Documents must be in upright position
  • Only one receipt or invoice per document is supported
  • Supported file formats are: jpeg, pdf
  • Necessary keys and credentials to an endpoint on the form: "https://<your prefix>.api.lucidtech.ai/<version>".

Quick start

Run inference and create prediction on document

using Lucidtech.Las;

ApiClient apiClient = new ApiClient("<endpoint>");
Prediction response = apiClient.Predict(documentPath: "document.pdf", modelName: "invoice|receipt|documentSplit");
Console.WriteLine(response.ToJsonString(Formatting.Indented));

Send feedback to the model.

using Lucidtech.Las;

var feedback = new List<Dictionary<string, string>>()
{ 
    new Dictionary<string, string>(){{"label", "total_amount"},{"value", "54.50"}},
    new Dictionary<string, string>(){{"label", "purchase_date"},{"value", "2007-07-30"}}
};
FeedbackResponse response = apiClient.SendFeedback(documentId: "<documentId>", feedback: feedback);
Console.WriteLine(response.ToJsonString(Formatting.Indented));

Revoke consent and deleting all documents associated with consentId.

using Lucidtech.Las;

ApiClient apiClient = new ApiClient("<endpoint>");
RevokeResponse response = apiClient.RevokeConsent(consentId: "<consentId>");
Console.WriteLine(response.ToJsonString(Formatting.Indented));

Contributing

Prerequisites

Download the following packages:

  • The latest and greatest stable version of MSBuild
  • The latest and greatest version of NuGet
  • nunit version 3.9.0 or higher to run tests from command line
  • .NET-SDK version 2.2.105

Prerequisites for Arch Users

Download the following packages:

  • The latest and greatest stable version of MSBuild
  • The latest and greatest version of NuGet
  • nunit version 3.9.0 or higher to run tests from command line
  • .NET-SDK version 2.2.105

Build and run tests

Clone repo and install the necessary packages manually for the las-sdk-net.

$ git clone git@github.com:LucidtechAI/las-sdk-net.git
$ cd las-sdk-net
$ dotnet restore Test # Restore nuget packages dependencies
$ msbuild Test/Test.csproj # Build Tests
$ nunit3-console Test/bin/Debug/<framework-version>/Test.dll # Run
$ # Build for release and make nuget package
$ msbuild Lucidtech/Lucidtech.csproj /t:Rebuild /p:Configuration=Release
Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Lucidtech.Las:

Package Downloads
CradlAI.UIPath.Activities

This package was generated using the UiPath VS Extension.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0 439 12/19/2023
4.1.0 399 6/27/2023
4.0.1 414 3/9/2023
4.0.0 453 2/27/2023
3.1.0 742 3/29/2022
3.0.0 571 10/22/2021
2.0.0 519 10/13/2021
1.5.0 555 7/1/2021
1.4.1 552 7/1/2021
1.4.0 546 6/28/2021
1.1.6 549 4/11/2021
1.1.5 557 4/8/2021
1.1.4 566 3/1/2021
1.1.3 554 2/22/2021
1.1.2 544 2/22/2021
1.1.1 575 2/12/2021
1.1.0 558 2/2/2021
1.0.1 570 1/29/2021
1.0.0 549 1/27/2021
0.2.1 932 5/18/2020
0.2.0 791 2/6/2020
0.1.5 725 1/30/2020
0.1.4 785 5/24/2019
0.1.3 791 4/12/2019
0.1.2 789 3/26/2019
0.1.1 797 3/22/2019

Updated the SDK to support the latest Lucidtech API, support maxPages and autoRotate flags.
       Uses Oauth2 authorization