jonathanjordan21 commited on
Commit
acb7006
·
verified ·
1 Parent(s): 3d00f79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -112,11 +112,13 @@ if prompt := st.chat_input("Ask me anything.."):
112
  st.session_state.messages.append({"role": "assistant", "content": response})
113
 
114
  # Insert data into the table
115
- st.session_state.conn.cursor().execute(
116
- "INSERT INTO chat_history (input_text, response_text, created_at) VALUES (%s, %s, %s)",
117
- (prompt, response, datetime.now(timezone.utc) + timedelta(hours=7))
 
118
  )
119
 
120
  # Commit the transaction
121
  st.session_state.conn.commit()
 
122
 
 
112
  st.session_state.messages.append({"role": "assistant", "content": response})
113
 
114
  # Insert data into the table
115
+ cur = st.session_state.conn.cursor()
116
+ cur.execute(
117
+ f"INSERT INTO chat_history (input_text, response_text, created_at) VALUES ({prompt}, {response}, {datetime.now(timezone.utc) + timedelta(hours=7)})"
118
+ # (prompt, response, datetime.now(timezone.utc) + timedelta(hours=7))
119
  )
120
 
121
  # Commit the transaction
122
  st.session_state.conn.commit()
123
+ cur.close()
124