Commit
·
83c6516
1
Parent(s):
dd9d480
Update
Browse files- app-ngrok.py +3 -4
app-ngrok.py
CHANGED
@@ -5,8 +5,6 @@ import requests
|
|
5 |
from time import sleep
|
6 |
import re
|
7 |
|
8 |
-
|
9 |
-
|
10 |
def format(text):
|
11 |
# Split the text by "|", and get the last element in the list which should be the final query
|
12 |
try:
|
@@ -49,7 +47,7 @@ def generate(input_message: str, db_info="", temperature=0.3, top_p=0.9, top_k=0
|
|
49 |
"ngrok-skip-browser-warning": "1" # added this line
|
50 |
}
|
51 |
|
52 |
-
for _ in range(3):
|
53 |
try:
|
54 |
response = requests.post(url, json=payload, headers=headers)
|
55 |
response_text = response.json()["results"][0]["text"]
|
@@ -69,6 +67,7 @@ with gr.Blocks(theme='gradio/soft') as demo:
|
|
69 |
header = gr.HTML("""
|
70 |
<h1 style="text-align: center">SQL Skeleton WizardCoder Demo</h1>
|
71 |
<h3 style="text-align: center">🕷️☠️🧙♂️ Generate SQL queries from Natural Language 🕷️☠️🧙♂️</h3>
|
|
|
72 |
""")
|
73 |
|
74 |
output_box = gr.Code(label="Generated SQL", lines=2, interactive=True)
|
@@ -91,7 +90,7 @@ with gr.Blocks(theme='gradio/soft') as demo:
|
|
91 |
["What are the number of concerts that occurred in the stadium with the largest capacity ?", "| 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 |"],
|
92 |
["How many male singers performed in concerts in the year 2023?", "| 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 |"],
|
93 |
["List the names of all singers who performed in a concert with the theme 'Rock'", "| 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 |"]
|
94 |
-
], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty], fn=generate, cache_examples=True, outputs=output_box)
|
95 |
|
96 |
quantized_model = "richardr1126/spider-skeleton-wizard-coder-ggml"
|
97 |
merged_model = "richardr1126/spider-skeleton-wizard-coder-merged"
|
|
|
5 |
from time import sleep
|
6 |
import re
|
7 |
|
|
|
|
|
8 |
def format(text):
|
9 |
# Split the text by "|", and get the last element in the list which should be the final query
|
10 |
try:
|
|
|
47 |
"ngrok-skip-browser-warning": "1" # added this line
|
48 |
}
|
49 |
|
50 |
+
for _ in range(3): # Try 3 times
|
51 |
try:
|
52 |
response = requests.post(url, json=payload, headers=headers)
|
53 |
response_text = response.json()["results"][0]["text"]
|
|
|
67 |
header = gr.HTML("""
|
68 |
<h1 style="text-align: center">SQL Skeleton WizardCoder Demo</h1>
|
69 |
<h3 style="text-align: center">🕷️☠️🧙♂️ Generate SQL queries from Natural Language 🕷️☠️🧙♂️</h3>
|
70 |
+
<p>Note: Should take around 30-60s to generate.</p>
|
71 |
""")
|
72 |
|
73 |
output_box = gr.Code(label="Generated SQL", lines=2, interactive=True)
|
|
|
90 |
["What are the number of concerts that occurred in the stadium with the largest capacity ?", "| 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 |"],
|
91 |
["How many male singers performed in concerts in the year 2023?", "| 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 |"],
|
92 |
["List the names of all singers who performed in a concert with the theme 'Rock'", "| 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 |"]
|
93 |
+
], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty], fn=generate, cache_examples=False if os.name == 'posix' or os.name == 'nt' else True, outputs=output_box)
|
94 |
|
95 |
quantized_model = "richardr1126/spider-skeleton-wizard-coder-ggml"
|
96 |
merged_model = "richardr1126/spider-skeleton-wizard-coder-merged"
|