fahmifauzi commited on
Commit
af1bed7
·
verified ·
1 Parent(s): ad451a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -29,7 +29,8 @@ demo = gr.Interface(fn=generate_text,
29
  inputs=[gr.Textbox(label="Prompt", lines=5)],
30
  outputs=[gr.Textbox(label="Generated Text", lines=5)],
31
  title="Text Generator",
32
- description="Text generation using `mistralai/Mistral-7B-Instruct-v0.1` model."
 
33
  )
34
 
35
  demo.launch()
 
29
  inputs=[gr.Textbox(label="Prompt", lines=5)],
30
  outputs=[gr.Textbox(label="Generated Text", lines=5)],
31
  title="Text Generator",
32
+ description="Text generation using `mistralai/Mistral-7B-Instruct-v0.1` model.",
33
+ examples=["I like ice cream", "That cat is cute"]
34
  )
35
 
36
  demo.launch()