codelx24's picture
Upload app.py
4f0feee verified
raw
history blame
288 Bytes
import gradio as gr
from authormist import Humanizer
humanizer = Humanizer()
def humanize(text):
return humanizer.humanize(text)
demo = gr.Interface(
fn=humanize,
inputs="textbox",
outputs="textbox",
title="AuthorMist AI Humanizer"
)
demo.launch()