LLMWhisperer
llmwhispererLLMWhisperer is a technology that presents data from complex documents to LLMs in a way that they can best understand.
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ónTool to check usage metrics of your LLMWhisperer account. Use when you need to monitor API consumption, verify quotas, or check remaining page limits.
LLMWHISPERER_USAGE_GET_INFOAcciónTool 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
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Usage StatisticsLLMWHISPERER_USAGE_GET_STATSAcciónTool 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.
LLMWHISPERER_USAGE_GET_STATSAcciónTool 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
tagstringObligatorioTag to filter usage data. Required parameter to identify the specific usage metrics to retrieve.
to_dateanyEnd date for usage period in YYYY-MM-DD format. If omitted, defaults to current date.
from_dateanyStart date for usage period in YYYY-MM-DD format. If omitted, defaults to 30 days before to_date.
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete WebhookLLMWHISPERER_WEBHOOK_DELETEAcciónTool to delete a registered webhook from LLMWhisperer system. Use when you need to remove a webhook that is no longer needed.
LLMWHISPERER_WEBHOOK_DELETEAcciónTool 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_namestringObligatorioThe name of the webhook to delete. This is the unique identifier used when the webhook was registered.
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Webhook DetailsLLMWHISPERER_WEBHOOK_GET_DETAILSAcciónTool 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.
LLMWHISPERER_WEBHOOK_GET_DETAILSAcciónTool 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_namestringObligatorioThe name of the webhook to retrieve details for
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Register WebhookLLMWHISPERER_WEBHOOK_REGISTERAcciónTool 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.
LLMWHISPERER_WEBHOOK_REGISTERAcciónTool 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
urlstringObligatorioThe webhook endpoint URL that will receive callback notifications from LLMWhisperer after document processing is complete.
auth_tokenstringObligatorioBearer token for authenticating callbacks to your webhook endpoint. Use an empty string if no authentication is required.
webhook_namestringObligatorioA unique identifier/name for this webhook registration. Must be unique across all your webhooks.
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Webhook ConfigurationLLMWHISPERER_WEBHOOK_UPDATEAcciónTool 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.
LLMWHISPERER_WEBHOOK_UPDATEAcciónTool 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
urlstringObligatorioThe callback URL that will receive notifications after document conversion completion
auth_tokenstringBearer token for authenticating requests to the callback URL. Leave empty if the endpoint requires no authentication
webhook_namestringObligatorioUnique identifier for the webhook configuration
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Check Whisper StatusLLMWHISPERER_WHISPER_CHECK_STATUSAcciónTool 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.
LLMWHISPERER_WHISPER_CHECK_STATUSAcciónTool 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_hashstringObligatorioThe whisper hash returned while starting the whisper process. This is used to identify and track the specific conversion job.
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Convert Document to TextLLMWHISPERER_WHISPER_CONVERT_DOCUMENTAcciónTool 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.
LLMWHISPERER_WHISPER_CONVERT_DOCUMENTAcciónTool 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
taganyAudit tracking identifier for this conversion job
modeanyProcessing 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_nameanyAudit reference label for the document being processed
output_modeanyOutput format. layout_preserving maintains document structure, text outputs plain text
url_in_postanySet to true to process document from URL (document_url), false to process binary content (document_content)
use_webhookanyName of the webhook to receive completion callback. Webhook must be pre-registered
add_line_nosanyEnable line numbering with metadata when true
document_urlanyURL of the document to convert. Required when url_in_post is true. Provide either document_url or document_content, not both
page_separatoranyDelimiter string to separate pages in the output
document_contentanyBase64 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_extractanySpecify which pages to extract. Format: '1-5,7,21-' for pages 1-5, page 7, and pages 21 onwards
webhook_metadataanyCustom metadata that will be forwarded to the webhook callback
median_filter_sizeanyNoise reduction filter size (low_cost mode only). Must be non-negative
mark_vertical_linesanyPreserve vertical lines in the output when true
gaussian_blur_radiusanyBlur radius for noise removal (low_cost mode only). Must be non-negative
mark_horizontal_linesanyPreserve horizontal lines in the output when true
line_splitter_strategyanyStrategy for splitting lines in multi-column layouts
line_splitter_toleranceanyBaseline adjustment factor for line splitting. Range: 0.0 to 1.0
horizontal_stretch_factoranyAdjustment factor for multi-column layout processing. Must be positive
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Whisper DetailLLMWHISPERER_WHISPER_GET_DETAILAcciónTool 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.
LLMWHISPERER_WHISPER_GET_DETAILAcciónTool 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_hashstringObligatorioIdentifier returned when initiating extraction. This is used to retrieve the status and details of a specific extraction job.
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve Whisper TextLLMWHISPERER_WHISPER_RETRIEVE_TEXTAcciónTool 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.
LLMWHISPERER_WHISPER_RETRIEVE_TEXTAcciónTool 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_onlybooleanWhen true, returns only the extracted text. When false (default), returns text with metadata including confidence scores and webhook metadata.
whisper_hashstringObligatorioUnique identifier returned when initiating the whisper process. Format: 'hash1|hash2'
Parámetros de salida
dataobjectObligatorioData from the action execution
erroranyError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not