Spaces:
Running on Zero
Running on Zero
Bot commited on
Commit ·
3790900
1
Parent(s): dbdf0a6
Remove internal progress-log reference from comment
Browse files
app.py
CHANGED
|
@@ -209,9 +209,8 @@ def execute_sql(sql: str):
|
|
| 209 |
|
| 210 |
# Verified working (question, schema) pairs for the "Try an Example" button.
|
| 211 |
# Each was manually tested against the live deployed model before being
|
| 212 |
-
# added here
|
| 213 |
-
#
|
| 214 |
-
# every one below produced a correct, sensible query + result when tested.
|
| 215 |
DEFAULT_SCHEMA = """CREATE TABLE customers (id INTEGER, name TEXT, region TEXT, revenue REAL)
|
| 216 |
CREATE TABLE orders (id INTEGER, customer_id INTEGER, amount REAL, date TEXT)"""
|
| 217 |
|
|
|
|
| 209 |
|
| 210 |
# Verified working (question, schema) pairs for the "Try an Example" button.
|
| 211 |
# Each was manually tested against the live deployed model before being
|
| 212 |
+
# added here, rather than guessed -- every one below produced a correct,
|
| 213 |
+
# sensible query + result when tested.
|
|
|
|
| 214 |
DEFAULT_SCHEMA = """CREATE TABLE customers (id INTEGER, name TEXT, region TEXT, revenue REAL)
|
| 215 |
CREATE TABLE orders (id INTEGER, customer_id INTEGER, amount REAL, date TEXT)"""
|
| 216 |
|