NAiOS IconNAiOS Logo
Volver al catálogo

TextRazor

textrazor

TextRazor is a natural language processing API that extracts meaning, entities, and relationships from text, powering advanced content analysis and sentiment detection

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

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 Account InformationTEXTRAZOR_ACCOUNT_INFOAcción

This tool retrieves comprehensive information about a textrazor account, providing essential details about the account's status, usage, and limits. it returns an account object containing properties such as the current subscription plan, concurrent request limits, and daily usage among others, making it crucial for monitoring api usage, managing requests, and ensuring compliance with subscription limits.

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

Classify TextTEXTRAZOR_CLASSIFY_TEXTAcción

This tool will classify text into predefined categories using textrazor's classification capabilities. it takes input text, optional cleanup mode and language, and returns a list of relevant categories with their confidence scores from the analysis. the tool supports various built-in classifiers including: - textrazor iab: iab qag segments - textrazor iab content taxonomy 3.0: iab content taxonomy v3.0 (2022) - textrazor mediatopics 2023q1: latest iptc media topics (march 2023) - and other versions of these taxonomies

Parámetros de entrada

  • textstringObligatorio

    The text content to be classified (up to 200kb UTF-8 encoded text)

  • classifiersstringObligatorio

    Comma-separated list of classifiers to use for text classification

  • cleanup_modestring

    Controls preprocessing cleanup mode (raw, stripTags, cleanHTML)

  • language_overridestring

    Force TextRazor to analyze content with specific language (ISO-639-2 code)

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

Manage Custom ClassifiersTEXTRAZOR_CUSTOM_CLASSIFIER_MANAGERAcción

This tool manages custom classifiers in textrazor, allowing users to create, update, and manage custom classification categories.

Parámetros de entrada

  • limitinteger

    Maximum number of categories to return when listing categories.

  • offsetinteger

    Offset for pagination when listing categories.

  • operationstringObligatorioenum

    The operation to perform on the classifier.

    create_updatedeleteget_categoriesget_categorydelete_category
  • categoriesobject[]

    List of categories to create/update. Required for create_update operation.

  • category_idstring

    The category ID when performing operations on a specific category.

  • classifier_idstringObligatorio

    The unique identifier for the classifier.

Parámetros de salida

  • dataobject

    Response model for a single category.

  • errorstring

    Error if any occurred during the execution of the action

  • messagestringObligatorio

    A message describing the result of the operation.

  • successbooleanObligatorio

    Whether the operation was successful.

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Analyze Dependency TreesTEXTRAZOR_DEPENDENCY_TREES_ACTIONAcción

The dependencytreesaction analyzes the grammatical relationships between words in text by creating dependency trees. it provides detailed syntactic analysis by identifying the grammatical relationships between words and their parent words in a sentence. this tool is useful for: - understanding sentence structure - analyzing grammatical relationships - parsing complex sentences - supporting advanced linguistic analysis tasks

Parámetros de entrada

  • textstringObligatorio

    The text to analyze for dependency trees (up to 200kb of UTF-8 encoded text)

  • cleanup_modestring

    Controls preprocessing cleanup mode

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

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

Dictionary ManagerTEXTRAZOR_DICTIONARY_MANAGERAcción

The textrazor dictionary manager tool allows users to create, update, and manage custom entity dictionaries in textrazor. it provides endpoints for creating/updating dictionaries, listing dictionaries, getting a specific dictionary, and deleting dictionaries, as well as managing the entries within these dictionaries (adding, retrieving, and deleting entries).

Parámetros de entrada

  • entriesobject[]

    List of entries to add or delete. Required for 'add_entries' and 'delete_entries' operations.

  • operationstringObligatorio

    The operation to perform on the dictionary.

  • dictionary_idstring

    The ID of the dictionary to operate on. Required for all operations except 'list'.

Parámetros de salida

  • okbooleanObligatorio

    True if the operation was successful.

  • dataobject

    The response data from the operation, if any.

  • errorstring

    Error if any occurred during the execution of the action

  • messagestringObligatorio

    Response message describing the result of the operation.

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Extract Entailments from TextTEXTRAZOR_EXTRACT_ENTAILMENTSAcción

This tool extracts entailments from text using textrazor's api. it identifies words or phrases that can be logically inferred from the given text by analyzing logical implications and relationships.

Parámetros de entrada

  • textstringObligatorio

    The text to analyze for entailments (up to 200kb)

  • cleanup_modestring

    Controls preprocessing cleanup mode. Options: raw, stripTags, cleanHTML

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

  • cleanup_return_cleanedboolean

    When True, returns the cleaned text in response

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

Extract Named Entities from TextTEXTRAZOR_EXTRACT_ENTITIESAcción

Extract named entities (people, places, companies, etc.) from text using textrazor's entity extraction api. the tool will identify and classify named entities within the provided text, returning detailed information about each entity including its type, confidence score, and relevance score.

Parámetros de entrada

  • textstringObligatorio

    The text to analyze for entity extraction (max 200kb)

  • cleanup_modestring

    Controls preprocessing cleanup mode

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

  • entities_allow_overlapboolean

    When True, entities in response may overlap

  • entities_filter_dbpedia_typesstring[]

    List of DBPedia types to filter entities

  • entities_filter_freebase_typesstring[]

    List of Freebase types to filter entities

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

Extract Phrases from TextTEXTRAZOR_EXTRACT_PHRASESAcción

The extractphrases action extracts meaningful phrases from input text using textrazor's phrase extraction capability. it analyzes text to identify important phrases and multi-word expressions that aid in tasks like content analysis, keyword extraction, and summarization.

Parámetros de entrada

  • textstringObligatorio

    UTF-8 encoded text to be analyzed (up to 200KB)

  • languagestring

    ISO-639-2 language code to force analysis in a specific language

  • cleanup_modestring

    Controls preprocessing of the content

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

Extract Grammatical Relations from TextTEXTRAZOR_EXTRACT_RELATIONSAcción

This tool extracts grammatical relations between words in the text. it identifies the relationships between different parts of sentences, including subjects, objects, and predicates. the relations extractor provides detailed syntactic analysis of the text.

Parámetros de entrada

  • textstringObligatorio

    The text to analyze for relation extraction (max 200kb)

  • cleanup_modestring

    Controls preprocessing cleanup mode

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

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

Extract Word SensesTEXTRAZOR_EXTRACT_WORD_SENSESAcción

This tool performs word sense disambiguation on the input text by identifying the most likely meanings of words in context. it uses textrazor's 'senses' extractor to determine the semantic meaning and provides detailed data including word, sense, confidence score, part of speech, position, synset, and definition.

Parámetros de entrada

  • textstringObligatorio

    The text content to analyze for word senses (up to 200kb of UTF-8 encoded text)

  • cleanupModestring

    Controls preprocessing cleanup mode

  • languageOverridestring

    ISO-639-2 language code to force analysis in a specific language

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

Spelling CorrectionTEXTRAZOR_SPELLING_CORRECTIONAcción

This tool performs spelling correction on the provided text using textrazor's deep spelling correction system. it analyzes the input text for spelling errors and provides context-based corrections.

Parámetros de entrada

  • textstringObligatorio

    The text to perform spelling correction on

  • languagestring

    ISO-639-2 language code for specific language processing. If not provided, language will be auto-detected.

  • cleanup_modestring

    Controls preprocessing mode. Valid options: raw, stripTags, cleanHTML

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

Analyze Content with TextRazorTEXTRAZOR_TEXT_RAZOR_ANALYZE_CONTENTAcción

A comprehensive content analysis tool that combines multiple textrazor extractors to perform a complete analysis of the input text. this action allows users to analyze text content with multiple extractors in a single api call.

Parámetros de entrada

  • textstringObligatorio

    The text content to be analyzed (up to 200kb UTF-8 encoded)

  • extractorsstring[]

    List of analysis features to perform

  • cleanup_modestring

    Controls preprocessing cleanup mode

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

  • cleanup_use_metadataboolean

    Use document metadata in analysis

  • cleanup_return_cleanedboolean

    Return the cleaned text in response

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

Extract Topics from TextTEXTRAZOR_TOPIC_EXTRACTIONAcción

A tool to extract topics from text using textrazor's topic extraction capabilities. topics represent the main themes and concepts discussed in the text, with relevance scores indicating their importance to the document.

Parámetros de entrada

  • textstringObligatorio

    The text content to analyze for topic extraction.

  • cleanup_modestring

    Controls preprocessing cleanup mode. Options: raw, stripTags, cleanHTML

  • language_overridestring

    ISO-639-2 language code to force analysis in a specific language

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