File size: 325 Bytes
0d3453c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

def create_personal_info_tab():
    pii_interface = gr.Interface.load("models/iiiorg/piiranha-v1-detect-personal-information")

    with gr.Row():
        gr.Markdown("This tool identifies personal information such as names, emails, phone numbers, etc.")
    with gr.Row():
        pii_interface.render()