imseldrith commited on
Commit
9b219ba
·
1 Parent(s): b215183

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -91,11 +91,9 @@ examples = [
91
  iface = gr.Interface(
92
  fn=detect_ai_content,
93
  inputs=inputs + [file_input],
94
- outputs="json",
95
  title="AI-Generated Content Detector",
96
  description="This app uses a simple stylometry analysis technique to estimate the percentage of AI-generated content in a given text.",
97
- article="Stylometry Analysis",
98
- article_link="https://en.wikipedia.org/wiki/Stylometry",
99
  show_input=True,
100
  show_output=True,)
101
  iface.launch()
 
91
  iface = gr.Interface(
92
  fn=detect_ai_content,
93
  inputs=inputs + [file_input],
94
+ outputs=[outputs,file_output],
95
  title="AI-Generated Content Detector",
96
  description="This app uses a simple stylometry analysis technique to estimate the percentage of AI-generated content in a given text.",
 
 
97
  show_input=True,
98
  show_output=True,)
99
  iface.launch()