check_paraphrase
Detect paraphrased or reworded content between two texts, even across languages, by comparing semantic similarity of sentences.
Instructions
Finds REWORDED copies between two texts — same meaning, different words, including across languages (e.g. English vs Spanish) — that a literal copy check can't see. It embeds each sentence and compares cosine similarity. NOTE: this SENDS BOTH TEXTS to the SignsOfAI server to embed them (endpoint from SIGNSOFAI_API_ENDPOINT). Requires the embedding feature to be enabled on the server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| textA | Yes | First document. | |
| textB | Yes | Second document. | |
| threshold | No | Cosine similarity threshold 0..1 to count as a paraphrase. Default 0.72. |