Open-source AIForged Connector (#1355)

* Open-source AIForged Connector

* make suggested changes
add desriptions and remove extra spaces

* remove extra spaces

Co-authored-by: Stephanus <stephanus@larcai.com>
This commit is contained in:
AIForged 2022-02-18 06:53:13 +02:00 коммит произвёл GitHub
Родитель 7ec75c54f5
Коммит 64521082b0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4709 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,45 @@
# AIForged
AIForged is an Intelligent Document Processing solution to complex document extraction problems.
You can train your AIForged project to combine cognative services in order to classify and extract important information from documents. AIForged can automate the processing and extraction of structured data from unstructured images.
The AIForged connector is based on the [AIForged REST API](https://local.aiforged.com/swagger/index.html?urls.primaryName=swagger.v1.0). The connector allows automation and integration with AIForged.
## Prerequisites
### A Microsoft Power Apps or Power Automate plan
### An AIForged account and service
To use this integration, you will need an AIForged account. You also need to configure and train the AIForged service for accurate results.
For more instructions [Register on AIForged](http://docs.aiforged.com/register.html) and set up an AIForged project and service by following the steps [here](http://docs.aiforged.com/projects.html).
## Publisher: Larc AI (PTY) Ltd
## Obtaining Credentials
An AIForged account is needed to register an application. You can register [here](https://www.aiforged.com/). From there you can use your credentials to authenticate.
You can also register by downloading the AIForged app from the [Microsoft Store](ms-windows-store://pdp/?productid=9N9TV5K8F914) or [Microsoft Store Website](https://www.microsoft.com/store/apps/9N9TV5K8F914).
## Supported Operations
### Create and train intellegent services
First you need to create a service and follow the wizard steps to train for processing and classification.
### Classify documents
You can classify documents based on raster images and text.
### Process and Extract
A state of the art verification and rules engine will improve the accuracy of structured data extracted from documents.
### Workflow
Assign tasks to robots and humans to improve the quality and accuracy results.
### Bring a human in the loop
To improve the accuracy of your extract and classifications, AIForged will create workflow and bring humans into the verification process.
## Getting Help or Providing Feedback
If you have any issues, requests for functionality, or have general feedback, please visit our [Website](https://www.aiforged.com).
## Authentication.
This connector uses `OAuth2` authentication (see steps above on how to obtain one). When creating a new connector (in Power Apps/Logic Apps), you'll be required to provide an authentication information from registration.
## Documentation
For more information on the AIForged connector's operations, please refer to our [documentation](http://docs.aiforged.com/).
## Known issues and limitations
The connector is based on integration with [AIForged](https://www.aiforged.com/) portal accounts. Other region-specific instances are not supported.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -0,0 +1,54 @@
{
"publisher": "Larc AI (PTY) Ltd",
"stackOwner": "Larc AI (PTY) Ltd",
"iconBrandColor": "#0E76BC",
"capabilities": [
"actions"
],
"properties": {
"connectionParameters": {
"token": {
"type": "oauthSetting",
"oAuthSettings": {
"identityProvider": "oauth2",
"clientId": "[[Please add the clientId here]]",
"scopes": [
"openid",
"email",
"phone",
"profile",
"roles",
"aiforgedapi"
],
"redirectMode": "Global",
"redirectUrl": "https://global.consent.azure-apim.net/redirect",
"properties": {
"IsFirstParty": "False"
}
},
"uiDefinition": {
"displayName": "Log in with your credentials",
"description": "Log in with your credentials",
"tooltip": "Log in with your credentials",
"constraints": {
"required": "true"
}
},
"customParameters": {
"discoveryUrl": {
"value": "https://portal.aiforged.com/.well-known/openid-configuration"
},
"authorizationUrl": {
"value": "https://portal.aiforged.com/connect/authorize"
},
"tokenUrl": {
"value": "https://portal.aiforged.com/connect/token"
},
"refreshUrl": {
"value": "https://portal.aiforged.com/connect/token"
}
}
}
}
}
}