Spaces:
Running
Running
Commit ·
879f4aa
1
Parent(s): 1d23fc1
2000 charecter length
Browse files
app.py
CHANGED
|
@@ -78,7 +78,7 @@ def process_text(input_text):
|
|
| 78 |
# Gradio Interface
|
| 79 |
iface = gr.Interface(
|
| 80 |
fn=process_text,
|
| 81 |
-
inputs=gr.Textbox(lines=5, placeholder="Enter text to humanize...", max_length=
|
| 82 |
outputs="text",
|
| 83 |
title="AI Text Humanizer",
|
| 84 |
description="Enter text, and the AI will rewrite it in a more human-like way.",
|
|
|
|
| 78 |
# Gradio Interface
|
| 79 |
iface = gr.Interface(
|
| 80 |
fn=process_text,
|
| 81 |
+
inputs=gr.Textbox(lines=5, placeholder="Enter text to humanize...", max_length=2000),
|
| 82 |
outputs="text",
|
| 83 |
title="AI Text Humanizer",
|
| 84 |
description="Enter text, and the AI will rewrite it in a more human-like way.",
|