ravindravala commited on
Commit
879f4aa
·
1 Parent(s): 1d23fc1

2000 charecter length

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=500),
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.",