tdoehmen commited on
Commit
b91e941
1 Parent(s): b10f321
Files changed (1) hide show
  1. app.py +1 -1
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 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)
 
52
  schema = expander.text_input("Current schema:", value=default_schema)
53
 
54
  # Input field for text prompt
55
+ text_prompt = st.text_input("What DuckDB SQL query can I write for you?", value="Read a CSV file from test.csv")
56
 
57
  if text_prompt:
58
  sql_query = generate_sql(text_prompt, schema)