Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 965 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 965 Bytes

.NET

Installation

The .NET SDK for Lucidtech AI Services (LAS) can be downloaded from nuget

$ dotnet add package Lucidtech.Las

Getting started

After Lucidtech.Las is installed and you have received credentials, you are ready to enhance your document-flow with the las client:

using System;
using Lucidtech.Las;

var client = new Client();
var models = client.ListModels();
var documents = client.ListDocuments();
var workflows = client.ListWorkflows();

If you are new to LAS we recommend you to check out the key concepts for a better understanding of what is possible with LAS.

If you are in the need of explicit examples on how to create complex workflows, check out the tutorials

The .NET SDK is open-source, and the code can be found here. Contributions are more than welcome.