saritha commited on
Commit
9e56a64
·
verified ·
1 Parent(s): b2cbbb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -74,6 +74,12 @@ with gr.Blocks() as demo:
74
  submit_button = gr.Button("Submit")
75
  output_llama = gr.Textbox(label="Llama 3 8B 👾", placeholder="", lines=10, interactive=False)
76
  output_mistral = gr.Textbox(label="Mistral 7B 🌠", placeholder="", lines=10, interactive=False)
 
 
 
 
 
 
77
 
78
  submit_button.click(fn=chat_with_models, inputs=input_text, outputs=[output_llama, output_mistral])
79
 
 
74
  submit_button = gr.Button("Submit")
75
  output_llama = gr.Textbox(label="Llama 3 8B 👾", placeholder="", lines=10, interactive=False)
76
  output_mistral = gr.Textbox(label="Mistral 7B 🌠", placeholder="", lines=10, interactive=False)
77
+ examples=[
78
+ ['What is importance of fasting according to Ayurveda?'],
79
+ ['What are the medicinal values of Tusli?'],
80
+ ['What are the three different doshas?'],
81
+ ['What is the ideal diet according to ayurveda?']
82
+ ],
83
 
84
  submit_button.click(fn=chat_with_models, inputs=input_text, outputs=[output_llama, output_mistral])
85