Ali-C137 commited on
Commit
5793a45
1 Parent(s): ef0f1bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -25,10 +25,6 @@ def generate(Name, Employer, Position, Organization, Hard_skills, Soft_skills, m
25
  title = "Motivation Letter Generator w/ GPT-Neo-1.3B"
26
  article = "Impress your employer"
27
 
28
- gr.Interface(
29
- fn=generate,
30
- inputs=["text", "text", "text", "text", "text", "text"],
31
- outputs="text",
32
- title=title,
33
- article=article).launch()
34
 
 
 
25
  title = "Motivation Letter Generator w/ GPT-Neo-1.3B"
26
  article = "Impress your employer"
27
 
28
+ gr = gr.Interface(fn=generate, inputs=["text", "text", "text", "text", "text", "text"], outputs="text", title=title, article=article)
 
 
 
 
 
29
 
30
+ gr.launch()