Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 16, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 16, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 16, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 16, 2025

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025

      Minecraft licensing robbed us of this controversial NFL schedule release video

      May 16, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The power of generators

      May 16, 2025
      Recent

      The power of generators

      May 16, 2025

      Simplify Factory Associations with Laravel’s UseFactory Attribute

      May 16, 2025

      This Week in Laravel: React Native, PhpStorm Junie, and more

      May 16, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025
      Recent

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Artificial Intelligence»ðŸ”¥ New PII Redaction and Entity Detection Features

    🔥 New PII Redaction and Entity Detection Features

    July 27, 2024

    Hey 👋, this weekly update contains the latest info on our new product features, tutorials, and our community.

    Join Us On Discord

    🔥PII Redaction: Now Available Across 47 Languages

    Our latest update expands PII Text Redaction support to 47 additional languages, ensuring comprehensive protection of personally identifiable information (PII) across diverse regions. This allows you to: 

    Identify and remove personal data such as addresses, phone numbers, and credit card details from your transcripts. Generate transcripts with PII removed, or “beep out” sensitive information in audio files. 

    Check out our docs for more detailed examples and for an in-depth dive into our updates, read our blog. 

    Here’s an example of how to use our API for PII redaction: 

    import assemblyai as aai

    aai.settings.api_key = “YOUR API KEY”

    audio_url = “https://github.com/AssemblyAI-Community/audio-examples/raw/main/20230607_me_canadian_wildfires.mp3”

    config = aai.TranscriptionConfig(speaker_labels=True).set_redact_pii(
    policies=[
    aai.PIIRedactionPolicy.person_name,
    aai.PIIRedactionPolicy.organization,
    aai.PIIRedactionPolicy.occupation,
    ],
    substitution=aai.PIISubstitutionPolicy.hash,
    )

    transcript = aai.Transcriber().transcribe(audio_url, config)

    for utterance in transcript.utterances:
    print(f”Speaker {utterance.speaker}: {utterance.text}”)

    print(transcript.text)

    Entity Detection Upgraded

    We’ve added 16 new entity types to our Entity Detection model, bringing the total to 44 types. This allows you to automatically identify and categorize critical information in your transcripts, such as names, organizations, addresses, and more with a 99% accuracy in major languages. Here’s an example of how to use our API for Entity Detection:

    import assemblyai as aai

    aai.settings.api_key = “YOUR API KEY”

    audio_url = “https://github.com/AssemblyAI-Community/audio-examples/raw/main/20230607_me_canadian_wildfires.mp3”

    config = aai.TranscriptionConfig(entity_detection=True)

    transcript = aai.Transcriber().transcribe(audio_url, config)

    for entity in transcript.entities:
    print(entity.text)
    print(entity.entity_type)
    print(f”Timestamp: {entity.start} – {entity.end}n”)

    Fresh From Our Blog

    Get started using Claude 3.5 Sonnet with audio data: Learn how to use the Claude 3 models with audio and video data in Python. Read more>>

    Florence-2: How it works and how to use it: Microsoft’s Florence-2 is a foundational image model that can perform almost every common task in computer vision. Learn how Florence-2 works and how to use it in this guide.  Read more>>

    How to Create a Real-Time Language Translation Service with AssemblyAI and DeepL in JavaScript: Translate speech in real-time in JavaScript with AssemblyAI and DeepL. Read more>>

    Our Trending YouTube Tutorials

    Get the latest from AssemblyAI

    Sign up and receive updates on new product updates and our weekly tutorials & blogs.

    Sign up here

    Source: Read More 

    Hostinger
    Facebook Twitter Reddit Email Copy Link
    Previous ArticleLWiAI Podcast #175 – GPT-4o Mini, OpenAI’s Strawberry, Mixture of A Million Experts
    Next Article AI achieves silver-medal standard solving International Mathematical Olympiad problems

    Related Posts

    Security

    Nmap 7.96 Launches with Lightning-Fast DNS and 612 Scripts

    May 17, 2025
    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-48187 – RAGFlow Authentication Bypass

    May 17, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    UN adopts Chinese resolution to broaden access to AI

    Artificial Intelligence

    Il podcast di Marco’s Box – Puntata 203

    Linux

    Circular’s new Ring Slim smart ring for athletes rolls out

    Development

    Telegram Founder’s Arrest Sparks Debate: Social Media, Freedom, and Russian Ties

    Development
    GetResponse

    Highlights

    Artificial Intelligence

    The Ugly Duckling’s New World – Bookspotz Chatstories

    June 6, 2024

    Start Your Own ChatGPT Office with AI Agents: Revolutionize Your Business with Intelligent Virtual Assistants…

    Google joins OpenAI in adopting Anthropic’s protocol for connecting AI agents – why it matters

    April 10, 2025

    CVE-2025-1495 – IBM Business Automation Workflow Information Disclosure Vulnerability

    May 3, 2025

    Street Art by Rone in Perth’s Historic Centenary Galleries

    August 3, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.