NAiOS IconNAiOS Logo
Volver al catálogo

LLMWhisperer

llmwhisperer

LLMWhisperer is a technology that presents data from complex documents to LLMs in a way that they can best understand.

Acciones
10
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 (10)

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.

Get Usage InformationLLMWHISPERER_USAGE_GET_INFOAcción

Tool to check usage metrics of your LLMWhisperer account. Use when you need to monitor API consumption, verify quotas, or check remaining page limits.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Usage StatisticsLLMWHISPERER_USAGE_GET_STATSAcción

Tool to retrieve usage statistics for your LLMWhisperer account based on a specific tag. Use when you need to check consumption metrics for a given tag and optional date range. Returns usage data for the preceding 30 days when date parameters are omitted.

Parámetros de entrada

  • tagstringObligatorio

    Tag to filter usage data. Required parameter to identify the specific usage metrics to retrieve.

  • to_dateany

    End date for usage period in YYYY-MM-DD format. If omitted, defaults to current date.

  • from_dateany

    Start date for usage period in YYYY-MM-DD format. If omitted, defaults to 30 days before to_date.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete WebhookLLMWHISPERER_WEBHOOK_DELETEAcción

Tool to delete a registered webhook from LLMWhisperer system. Use when you need to remove a webhook that is no longer needed.

Parámetros de entrada

  • webhook_namestringObligatorio

    The name of the webhook to delete. This is the unique identifier used when the webhook was registered.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Webhook DetailsLLMWHISPERER_WEBHOOK_GET_DETAILSAcción

Tool to retrieve registered webhook details for LLMWhisperer. Use when you need to get the configuration of a specific webhook including its URL and authentication token.

Parámetros de entrada

  • webhook_namestringObligatorio

    The name of the webhook to retrieve details for

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Register WebhookLLMWHISPERER_WEBHOOK_REGISTERAcción

Tool to register a new webhook endpoint for LLMWhisperer async notifications. Use when you need to set up a callback URL to receive processing results. During registration, a test payload is sent to verify the webhook endpoint is functioning and returns HTTP 200.

Parámetros de entrada

  • urlstringObligatorio

    The webhook endpoint URL that will receive callback notifications from LLMWhisperer after document processing is complete.

  • auth_tokenstringObligatorio

    Bearer token for authenticating callbacks to your webhook endpoint. Use an empty string if no authentication is required.

  • webhook_namestringObligatorio

    A unique identifier/name for this webhook registration. Must be unique across all your webhooks.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update Webhook ConfigurationLLMWHISPERER_WEBHOOK_UPDATEAcción

Tool to update an existing webhook configuration for document conversion callbacks. Use when you need to modify the callback URL, authentication token, or webhook identifier. The system validates the webhook by sending a test payload and requires a 200 status response.

Parámetros de entrada

  • urlstringObligatorio

    The callback URL that will receive notifications after document conversion completion

  • auth_tokenstring

    Bearer token for authenticating requests to the callback URL. Leave empty if the endpoint requires no authentication

  • webhook_namestringObligatorio

    Unique identifier for the webhook configuration

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Check Whisper StatusLLMWHISPERER_WHISPER_CHECK_STATUSAcción

Tool to check the status of a text extraction process in LLMWhisperer. Use when the conversion is done in async mode to poll for completion status.

Parámetros de entrada

  • whisper_hashstringObligatorio

    The whisper hash returned while starting the whisper process. This is used to identify and track the specific conversion job.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Convert Document to TextLLMWHISPERER_WHISPER_CONVERT_DOCUMENTAcción

Tool to convert PDFs and scanned documents into LLM-optimized text format asynchronously. Use when you need to extract text from documents for LLM processing. After submission, use the returned whisper_hash to poll status and retrieve converted text. Either document_url (with url_in_post=true) or document_content must be provided.

Parámetros de entrada

  • tagany

    Audit tracking identifier for this conversion job

  • modeany

    Processing mode for document conversion. Options: native_text (extract native PDF text), low_cost (basic OCR), high_quality (advanced OCR), form (optimized for forms), table (optimized for tables)

  • file_nameany

    Audit reference label for the document being processed

  • output_modeany

    Output format. layout_preserving maintains document structure, text outputs plain text

  • url_in_postany

    Set to true to process document from URL (document_url), false to process binary content (document_content)

  • use_webhookany

    Name of the webhook to receive completion callback. Webhook must be pre-registered

  • add_line_nosany

    Enable line numbering with metadata when true

  • document_urlany

    URL of the document to convert. Required when url_in_post is true. Provide either document_url or document_content, not both

  • page_separatorany

    Delimiter string to separate pages in the output

  • document_contentany

    Base64 encoded binary content of the document to convert. Required when url_in_post is false. Provide either document_url or document_content, not both

  • pages_to_extractany

    Specify which pages to extract. Format: '1-5,7,21-' for pages 1-5, page 7, and pages 21 onwards

  • webhook_metadataany

    Custom metadata that will be forwarded to the webhook callback

  • median_filter_sizeany

    Noise reduction filter size (low_cost mode only). Must be non-negative

  • mark_vertical_linesany

    Preserve vertical lines in the output when true

  • gaussian_blur_radiusany

    Blur radius for noise removal (low_cost mode only). Must be non-negative

  • mark_horizontal_linesany

    Preserve horizontal lines in the output when true

  • line_splitter_strategyany

    Strategy for splitting lines in multi-column layouts

  • line_splitter_toleranceany

    Baseline adjustment factor for line splitting. Range: 0.0 to 1.0

  • horizontal_stretch_factorany

    Adjustment factor for multi-column layout processing. Must be positive

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Whisper DetailLLMWHISPERER_WHISPER_GET_DETAILAcción

Tool to retrieve comprehensive details about ongoing or completed text extraction process. Use when you need to monitor the status and progress metrics of a text extraction job.

Parámetros de entrada

  • whisper_hashstringObligatorio

    Identifier returned when initiating extraction. This is used to retrieve the status and details of a specific extraction job.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Retrieve Whisper TextLLMWHISPERER_WHISPER_RETRIEVE_TEXTAcción

Tool to retrieve extracted text from asynchronous whisper processing. Use when the conversion process was initiated in async mode and you need to retrieve the results using the whisper_hash identifier. Note that retrieval is single-use for security - once retrieved, the same whisper_hash cannot be used again.

Parámetros de entrada

  • text_onlyboolean

    When true, returns only the extracted text. When false (default), returns text with metadata including confidence scores and webhook metadata.

  • whisper_hashstringObligatorio

    Unique identifier returned when initiating the whisper process. Format: 'hash1|hash2'

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorany

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not