get_edit_distance
Calculate the Levenshtein edit distance between two strings, returning the minimum number of single-character edits needed to transform one string into another.
Instructions
Levenshtein edit distance. Minimum single-character edits to transform s1 into s2.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| s1 | Yes | ||
| s2 | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |