mimoha commited on
Commit
65c291f
·
verified ·
1 Parent(s): f81e4b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -31,10 +31,10 @@ def generate_title(abstract):
31
 
32
  iface = gr.Interface(
33
  fn=generate_title,
34
- inputs=gr.Textbox(label="الملخص"),
35
- outputs=gr.Textbox(label="العناوين المولّدة"),
36
- title="مولد عناوين للأبحاث 🧠📄",
37
- description="أدخل ملخص بحث وسنولد لك 3 عناوين محتملة باستخدام T5"
38
  )
39
 
40
  iface.launch(share=True, show_error=True)
 
31
 
32
  iface = gr.Interface(
33
  fn=generate_title,
34
+ inputs=gr.Textbox(label="Summary"),
35
+ outputs=gr.Textbox(label="Generated titles"),
36
+ title="Research Title Generator",
37
+ description="Enter a search term and we will generate 3 possible titles for you using T5."
38
  )
39
 
40
  iface.launch(share=True, show_error=True)