Spaces:
Runtime error
Runtime error
File size: 355 Bytes
eae71ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
from transformers import pipeline
pipe = pipeline(model="fmops/distilbert-prompt-injection")
id2label = {
'LABEL_0': 'benign',
'LABEL_1': 'prompt injection'
}
def greet(prompt):
return {id2label[x['label']]: x['score'] for x in pipe(prompt)}
iface = gr.Interface(fn=greet, inputs="text", outputs="label")
iface.launch() |