Yannael commited on
Commit
79d098f
·
verified ·
1 Parent(s): af1eea4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,5 +9,5 @@ def predict(prompt):
9
  completion = model(prompt)[0]["generated_text"]
10
  return completion
11
 
12
- gr.Interface(fn=predict, inputs="text", outputs="text").launch()
13
 
 
9
  completion = model(prompt)[0]["generated_text"]
10
  return completion
11
 
12
+ gr.Interface(fn=predict, inputs="text", outputs="text", title="My completion app").launch()
13