Spaces:
Running
Running
Update app.py
Browse files
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()
|
116 |
-
|
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 |
|