TextRazor
textrazorTextRazor is a natural language processing API that extracts meaning, entities, and relationships from text, powering advanced content analysis and sentiment detection
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ónThis 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.
TEXTRAZOR_ACCOUNT_INFOAcciónThis 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
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Classify TextTEXTRAZOR_CLASSIFY_TEXTAcciónThis 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
TEXTRAZOR_CLASSIFY_TEXTAcciónThis 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
textstringObligatorioThe text content to be classified (up to 200kb UTF-8 encoded text)
classifiersstringObligatorioComma-separated list of classifiers to use for text classification
cleanup_modestringControls preprocessing cleanup mode (raw, stripTags, cleanHTML)
language_overridestringForce TextRazor to analyze content with specific language (ISO-639-2 code)
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Manage Custom ClassifiersTEXTRAZOR_CUSTOM_CLASSIFIER_MANAGERAcciónThis tool manages custom classifiers in textrazor, allowing users to create, update, and manage custom classification categories.
TEXTRAZOR_CUSTOM_CLASSIFIER_MANAGERAcciónThis tool manages custom classifiers in textrazor, allowing users to create, update, and manage custom classification categories.
Parámetros de entrada
limitintegerMaximum number of categories to return when listing categories.
offsetintegerOffset for pagination when listing categories.
operationstringObligatorioenumThe operation to perform on the classifier.
create_updatedeleteget_categoriesget_categorydelete_categorycategoriesobject[]List of categories to create/update. Required for create_update operation.
category_idstringThe category ID when performing operations on a specific category.
classifier_idstringObligatorioThe unique identifier for the classifier.
Parámetros de salida
dataobjectResponse model for a single category.
errorstringError if any occurred during the execution of the action
messagestringObligatorioA message describing the result of the operation.
successbooleanObligatorioWhether the operation was successful.
successfulbooleanObligatorioWhether or not the action execution was successful or not
Analyze Dependency TreesTEXTRAZOR_DEPENDENCY_TREES_ACTIONAcciónThe 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
TEXTRAZOR_DEPENDENCY_TREES_ACTIONAcciónThe 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
textstringObligatorioThe text to analyze for dependency trees (up to 200kb of UTF-8 encoded text)
cleanup_modestringControls preprocessing cleanup mode
language_overridestringISO-639-2 language code to force analysis in a specific language
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Dictionary ManagerTEXTRAZOR_DICTIONARY_MANAGERAcciónThe 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).
TEXTRAZOR_DICTIONARY_MANAGERAcciónThe 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.
operationstringObligatorioThe operation to perform on the dictionary.
dictionary_idstringThe ID of the dictionary to operate on. Required for all operations except 'list'.
Parámetros de salida
okbooleanObligatorioTrue if the operation was successful.
dataobjectThe response data from the operation, if any.
errorstringError if any occurred during the execution of the action
messagestringObligatorioResponse message describing the result of the operation.
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Entailments from TextTEXTRAZOR_EXTRACT_ENTAILMENTSAcciónThis 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.
TEXTRAZOR_EXTRACT_ENTAILMENTSAcciónThis 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
textstringObligatorioThe text to analyze for entailments (up to 200kb)
cleanup_modestringControls preprocessing cleanup mode. Options: raw, stripTags, cleanHTML
language_overridestringISO-639-2 language code to force analysis in a specific language
cleanup_return_cleanedbooleanWhen True, returns the cleaned text in response
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Named Entities from TextTEXTRAZOR_EXTRACT_ENTITIESAcciónExtract 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.
TEXTRAZOR_EXTRACT_ENTITIESAcciónExtract 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
textstringObligatorioThe text to analyze for entity extraction (max 200kb)
cleanup_modestringControls preprocessing cleanup mode
language_overridestringISO-639-2 language code to force analysis in a specific language
entities_allow_overlapbooleanWhen 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
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Phrases from TextTEXTRAZOR_EXTRACT_PHRASESAcciónThe 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.
TEXTRAZOR_EXTRACT_PHRASESAcciónThe 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
textstringObligatorioUTF-8 encoded text to be analyzed (up to 200KB)
languagestringISO-639-2 language code to force analysis in a specific language
cleanup_modestringControls preprocessing of the content
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Grammatical Relations from TextTEXTRAZOR_EXTRACT_RELATIONSAcciónThis 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.
TEXTRAZOR_EXTRACT_RELATIONSAcciónThis 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
textstringObligatorioThe text to analyze for relation extraction (max 200kb)
cleanup_modestringControls preprocessing cleanup mode
language_overridestringISO-639-2 language code to force analysis in a specific language
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Word SensesTEXTRAZOR_EXTRACT_WORD_SENSESAcciónThis 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.
TEXTRAZOR_EXTRACT_WORD_SENSESAcciónThis 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
textstringObligatorioThe text content to analyze for word senses (up to 200kb of UTF-8 encoded text)
cleanupModestringControls preprocessing cleanup mode
languageOverridestringISO-639-2 language code to force analysis in a specific language
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Spelling CorrectionTEXTRAZOR_SPELLING_CORRECTIONAcciónThis 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.
TEXTRAZOR_SPELLING_CORRECTIONAcciónThis 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
textstringObligatorioThe text to perform spelling correction on
languagestringISO-639-2 language code for specific language processing. If not provided, language will be auto-detected.
cleanup_modestringControls preprocessing mode. Valid options: raw, stripTags, cleanHTML
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Analyze Content with TextRazorTEXTRAZOR_TEXT_RAZOR_ANALYZE_CONTENTAcciónA 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.
TEXTRAZOR_TEXT_RAZOR_ANALYZE_CONTENTAcciónA 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
textstringObligatorioThe text content to be analyzed (up to 200kb UTF-8 encoded)
extractorsstring[]List of analysis features to perform
cleanup_modestringControls preprocessing cleanup mode
language_overridestringISO-639-2 language code to force analysis in a specific language
cleanup_use_metadatabooleanUse document metadata in analysis
cleanup_return_cleanedbooleanReturn the cleaned text in response
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Extract Topics from TextTEXTRAZOR_TOPIC_EXTRACTIONAcciónA 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.
TEXTRAZOR_TOPIC_EXTRACTIONAcciónA 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
textstringObligatorioThe text content to analyze for topic extraction.
cleanup_modestringControls preprocessing cleanup mode. Options: raw, stripTags, cleanHTML
language_overridestringISO-639-2 language code to force analysis in a specific language
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not