Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|