essay_grader / app.py
lowrollr
very simple app
a8a2d3f
raw
history blame
145 Bytes
import gradio as gr
def grade_essay(essay):
return 5
demo = gr.Interface(fn=grade_essay, inputs="text", outputs="text")
demo.launch()