Text Similarity
Computes deterministic Jaccard, overlap, and cosine-like frequency similarity for two texts.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
left | text | Yes | Left |
right | text | Yes | Right |
Outputs
| Name | Type | Description |
|---|---|---|
jaccard | number | Jaccard |
overlap | number | Overlap |
cosine | number | Cosine |
work | array | Work |
Sample request
{
"left": "alpha beta beta",
"right": "beta gamma beta"
}