improved

🌐 New powerful NER: Customize your Sensitive Content Selection

Select the sensitive elements that matter to you.
Our new Named Entity Recognition (NER) now offers an extensive range of entity categories. To exploit the full potential of this new NER, here's the game-changer: YOU get to choose which entities you want to conceal. So, to harness the full power of our enhanced NER, update your code to specify the types of entities you want to hide in each of your requests using the new "entities" parameter.


params = {
    'language':'english_16',
    'gender':'f',
    'voice':True,
    'content':True,
    'entities': 'Name,Country,Product,City,Event,Medical Condition'
}
var params = {
        'language': 'french_8',
        'gender': 'f',
        'voice': 'True',
        'content': 'True',
        'entities': 'Name,Country,Product,City,Event,Medical Condition'
};

Previous output:

Hey how are you My name is <PER> I'm from <LOC> <LOC> I have some back pain so I'm taking some paracetamol We go tomorrow to an event in <LOC> Call Vivatech and we will see you there Thank you

New output:

Hey how are you My name is <Name> I'm from <City> <Country> I have some <Medical Condition> so I'm taking some <Product> We'll go tomorrow to an event in <City> call it <Event> and we will see you there Thank you