NAiOS IconNAiOS Logo
Volver al catálogo

Nanonets

nano_nets

Nanonets provides an AI-driven Intelligent Document Processing API that transforms unstructured documents into structured data, enabling efficient data extraction and workflow automation.

Acciones
11
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (11)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Create OCR ModelNANO_NETS_CREATE_MODELAcción

Tool to create a new ocr model. use when you need to initialize an ocr model before training.

Parámetros de entrada

  • namestring

    Optional human-readable name for the model.

  • categoriesstring[]Obligatorio

    List of OCR model categories. Exactly one category 'ocr' is supported.

  • model_typestring

    Optional model type. If provided, must be 'ocr'.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete OCR ModelNANO_NETS_DELETE_MODELAcción

Tool to delete an ocr model. use when you need to permanently remove a trained model by its id.

Parámetros de entrada

  • model_idstringObligatorio

    The unique identifier of the OCR model to delete.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get all OCR modelsNANO_NETS_GET_ALL_MODELSAcción

Tool to retrieve a paginated list of all ocr models. use when you need to inspect or manage existing ocr models. call after authentication to fetch your account's models.

Parámetros de entrada

  • pageinteger

    Page number to retrieve (>= 1).

  • page_sizeinteger

    Number of results per page (>= 1).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get All Prediction FilesNANO_NETS_GET_ALL_PREDICTION_FILESAcción

Tool to fetch all prediction files associated with a specific model. use when you need to list all inference requests after model processing is complete.

Parámetros de entrada

  • pageinteger

    Page number for pagination

  • limitinteger

    Number of items per page

  • model_idstringObligatorio

    Unique identifier of the model

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get OCR Model DetailsNANO_NETS_GET_MODEL_DETAILSAcción

Tool to retrieve details of an ocr model. use when you need full metadata of a model by its id.

Parámetros de entrada

  • model_idstringObligatorio

    Unique identifier of the OCR model to retrieve details.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get OCR Training ImagesNANO_NETS_GET_TRAINING_IMAGESAcción

Tool to retrieve training images for an ocr model. use when you need to page through images associated with a model before training or analysis.

Parámetros de entrada

  • pageinteger

    Page number for pagination

  • model_idstringObligatorio

    Unique identifier of the OCR model

  • page_sizeinteger

    Number of images per page

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get WorkflowsNANO_NETS_GET_WORKFLOWSAcción

Tool to retrieve a list of all workflows in your nanonets account. use when you need to inventory or inspect all configured workflows.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Workflow DocumentsNANO_NETS_LIST_DOCUMENTSAcción

Tool to retrieve a paginated list of documents processed by a workflow. use when you need to view documents after processing.

Parámetros de entrada

  • pageinteger

    Page number for pagination (must be >= 1).

  • limitinteger

    Number of items per page (must be >= 1).

  • workflow_idstringObligatorio

    Unique identifier for the workflow.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update OCR ModelNANO_NETS_UPDATE_MODELAcción

Tool to update an ocr model's details. use after reviewing the model's current configuration to modify its name, categories, notes, or classification settings.

Parámetros de entrada

  • notesstring

    Additional notes or description for the model.

  • model_idstringObligatorio

    Unique identifier of the OCR model to update.

  • categoriesstring[]

    List of categories for the model.

  • model_namestring

    New human-readable name for the model.

  • is_document_classificationboolean

    Flag indicating if the model is for document classification.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload Training Images by FileNANO_NETS_UPLOAD_TRAINING_IMAGES_BY_FILEAcción

Tool to upload training images by file to a specified ocr model. use when adding files to a model for training purposes.

Parámetros de entrada

  • filesstring[]Obligatorio

    List of local file paths of images to upload for training.

  • model_idstringObligatorio

    Unique identifier of the OCR model to which the images will be uploaded.

  • annotationstring

    Optional JSON string for annotation data following NanoNets schema.

  • categoriesstring

    Optional comma-separated category names to assign to the uploaded images, e.g., 'invoice,receipt'.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload Training Images by URLNANO_NETS_UPLOAD_TRAINING_IMAGES_BY_URLAcción

Tool to upload training images by url to a specified ocr model. use when adding urls of images to a model for training purposes.

Parámetros de entrada

  • urlsstring[]Obligatorio

    List of publicly accessible image URLs to upload for training.

  • model_idstringObligatorio

    Unique identifier of the OCR model to which the images will be uploaded.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not