AlekseyKorshuk commited on
Commit
64dea2b
1 Parent(s): 3d3e0b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -13,6 +13,14 @@ demo = gr.Interface(
13
  fn=predict,
14
  inputs='text',
15
  outputs='text',
 
 
 
 
 
 
 
 
16
  )
17
 
18
  demo.launch()
 
13
  fn=predict,
14
  inputs='text',
15
  outputs='text',
16
+ example=[
17
+ [
18
+ "I arrived in Bali in the morning, after a long flight from my home country. As I stepped out of the airport, I was immediately struck by the warm, humid air and the sound of birds chirping in the trees. I was greeted by a friendly taxi driver who offered to take me to my hotel in Kuta, a popular beach town on the south coast of the island."
19
+ ],
20
+ [
21
+ "Upon my arrival in Bali in the morning, it was already late according to the time zone of my hometown after a long journey. On coming out of the airport I felt the steam hot air and the song of the singing insects in the trees. A kind taxi driver gave me a ride to a resort at Kuta – beach town located on the southern coast of the island."
22
+ ]
23
+ ]
24
  )
25
 
26
  demo.launch()