text_similarity
Calculate similarity between two texts (Jaccard similarity).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text1 | Yes | First text | |
| text2 | Yes | Second text |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text1_words | Yes | Unique word count in text1 | |
| text2_words | Yes | Unique word count in text2 | |
| common_words | Yes | Number of words shared between both texts | |
| jaccard_similarity | Yes | Jaccard similarity coefficient (0-1) | |
| similarity_percent | Yes | Similarity as a percentage (0-100) |