mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
28 lines
No EOL
756 B
JSON
28 lines
No EOL
756 B
JSON
[
|
|
{
|
|
"name": "Zip code Recognizer",
|
|
"supported_language": "en",
|
|
"patterns": [
|
|
{
|
|
"name": "zip code (weak)",
|
|
"regex": "(\\b\\d{5}(?:\\-\\d{4})?\\b)",
|
|
"score": 0.01
|
|
}
|
|
],
|
|
"context": ["zip", "code"],
|
|
"supported_entity": "ZIP"
|
|
},
|
|
{
|
|
"name": "Swiss AHV Number Recognizer",
|
|
"supported_language": "en",
|
|
"patterns": [
|
|
{
|
|
"name": "AHV number (strong)",
|
|
"regex": "(756\\.\\d{4}\\.\\d{4}\\.\\d{2})|(756\\d{10})",
|
|
"score": 0.95
|
|
}
|
|
],
|
|
"context": ["AHV", "social security", "Swiss"],
|
|
"supported_entity": "AHV_NUMBER"
|
|
}
|
|
] |