saritha commited on
Commit
21e25fd
·
verified ·
1 Parent(s): 92fe439

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -27,6 +27,13 @@ def response_from_llam3(query):
27
  iface = gr.Interface(
28
  fn=response_from_llam3,
29
  inputs="text",
30
- outputs="text"
 
 
 
 
 
 
 
31
  )
32
  iface.launch()
 
27
  iface = gr.Interface(
28
  fn=response_from_llam3,
29
  inputs="text",
30
+ outputs="text",
31
+ examples=[
32
+ ['What is importance of fasting according to Ayurveda?'],
33
+ ['What are the medicinal values of Tusli?'],
34
+ ['What are the three different doshas?'],
35
+ ['What is the ideal diet according to ayurveda?']
36
+ ],
37
+ cache_examples=False,
38
  )
39
  iface.launch()