Commit
·
3e0ecb5
1
Parent(s):
c28c713
Update
Browse files- app-ngrok.py +4 -5
app-ngrok.py
CHANGED
@@ -148,11 +148,10 @@ with gr.Blocks(theme='gradio/soft') as demo:
|
|
148 |
<p>📊 All inputs/outputs are logged to Firebase, to help me see where the model still needs improvements.</a>.</p>
|
149 |
""")
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], fn=generate, cache_examples=False if platform.system() == "Windows" or platform.system() == "Darwin" else True, outputs=output_box)
|
156 |
|
157 |
with gr.Accordion("More Examples", open=False):
|
158 |
examples = gr.Examples([
|
|
|
148 |
<p>📊 All inputs/outputs are logged to Firebase, to help me see where the model still needs improvements.</a>.</p>
|
149 |
""")
|
150 |
|
151 |
+
examples = gr.Examples([
|
152 |
+
["What is the average, minimum, and maximum age of all singers from France?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
|
153 |
+
["How many students have dogs?", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid | pets.pettype = 'Dog' |"],
|
154 |
+
], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], fn=generate, cache_examples=False if platform.system() == "Windows" or platform.system() == "Darwin" else True, outputs=output_box)
|
|
|
155 |
|
156 |
with gr.Accordion("More Examples", open=False):
|
157 |
examples = gr.Examples([
|