Spaces:
Running
Running
quack
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ default_schema = 'CREATE TABLE hn.hacker_news(title VARCHAR, url VARCHAR, "text"
|
|
52 |
schema = expander.text_input("Current schema:", value=default_schema)
|
53 |
|
54 |
# Input field for text prompt
|
55 |
-
text_prompt = st.text_input("What
|
56 |
|
57 |
if text_prompt:
|
58 |
sql_query = generate_sql(text_prompt, schema)
|
|
|
52 |
schema = expander.text_input("Current schema:", value=default_schema)
|
53 |
|
54 |
# Input field for text prompt
|
55 |
+
text_prompt = st.text_input("What can I quack for you?", value="Read a CSV file from test.csv")
|
56 |
|
57 |
if text_prompt:
|
58 |
sql_query = generate_sql(text_prompt, schema)
|