File size: 593 Bytes
300155c
 
 
 
 
 
9810626
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0c72c75
9810626
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os

import gradio as gr
import openai


openai.api_key = os.environ['OPENAI_API_KEY']

def moderation(text):
    response = openai.Moderation.create(input=text)
    output = response["results"][0]
    return output

iface = gr.Interface(
    fn=moderation,
    inputs=gr.inputs.Textbox(lines=10, label="Text"),
    outputs="text",
    title="OpenAI Moderation API",
    description="This is a demo of the OpenAI Moderation API. Enter text in the box below and click submit to see the output.",
    allow_flagging=False,
    layout="vertical",
    theme="huggingface",
)


iface.launch()