merve HF Staff commited on
Commit
2f8466b
·
1 Parent(s): 0f3065b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def generate_answers(text):
24
  answer = tokenizer.decode(results[0], skip_special_tokens=True)
25
  return answer
26
 
27
- examples = [["Once upon a time, "]]
28
  title = "Text Generation with Miniature GPT"
29
  description = "Gradio Demo for a miniature with GPT. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
30
 
 
24
  answer = tokenizer.decode(results[0], skip_special_tokens=True)
25
  return answer
26
 
27
+ examples = [["Once upon a time, "], ["In a galaxy far far away"]]
28
  title = "Text Generation with Miniature GPT"
29
  description = "Gradio Demo for a miniature with GPT. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
30