Spaces:
Sleeping
Sleeping
File size: 1,601 Bytes
5f097cc 03dba14 5f097cc 03dba14 c74f24a 0870da0 c74f24a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import streamlit as st
import sqlite3
def get_system_instruction(username):
conn = sqlite3.connect('users.db')
c = conn.cursor()
c.execute('SELECT instruction FROM system_instructions WHERE username=?', (username,))
instruction = c.fetchone()
conn.close()
if instruction:
return instruction[0]
else:
return "Default system instruction."
def save_system_instruction(username, instruction):
conn = sqlite3.connect('users.db')
c = conn.cursor()
c.execute('SELECT * FROM system_instructions WHERE username=?', (username,))
existing_instruction = c.fetchone()
if existing_instruction:
c.execute('UPDATE system_instructions SET instruction=? WHERE username=?', (instruction, username))
else:
c.execute('INSERT INTO system_instructions(username, instruction) VALUES (?,?)', (username, instruction))
conn.commit()
conn.close()
def show_settings():
st.subheader("Settings")
username = st.session_state["username"]
system_instruction = get_system_instruction(username)
st.write("System Instruction:")
instruction = st.text_area("", value=system_instruction, height=200)
if st.button("Save Changes"):
save_system_instruction(username, instruction)
st.success("System instruction saved successfully.")
st.write("Note: System instruction is not used in this version of the app.")
if st.session_state["authenticated"]:
show_settings()
else:
if not st.session_state["is_starting"]:
st.write("You are not authenticated. Please log in to access this page.") |