devin-ai commited on
Commit
e07f113
·
verified ·
1 Parent(s): c1c0ae0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -54,10 +54,11 @@ def read_sql_query(sql,db):
54
  st.set_page_config("DataChat: Explore Your Database")
55
  st.header("DataChat: Chat With SQL Database")
56
 
57
- buff, col, buff2 = st.beta_columns([1,3,1])
58
 
59
- question=st.text_input("enter your input/question",key="question_input")
60
- table_name = col.text_input("Enter the correct table name",key="question_input")
 
61
 
62
  input=f"{question} in {table_name} table"
63
 
 
54
  st.set_page_config("DataChat: Explore Your Database")
55
  st.header("DataChat: Chat With SQL Database")
56
 
57
+
58
 
59
+ question=st.text_input("Enter your input/question",key="question_input")
60
+
61
+ table_name = st.text_input("Enter the correct table name",key="question_input")
62
 
63
  input=f"{question} in {table_name} table"
64