vsouza commited on
Commit
de9d96d
·
1 Parent(s): 79d0a75

test cookie

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,9 +59,9 @@ with st.sidebar:
59
  st.header("Configuration")
60
  thread_id = st.sidebar.text_input("Enter your Thread ID:", placeholder="Leave empty to start a new thread")
61
  c1, c2 = st.columns(2)
62
-
63
  if c1.button("Start Chat", use_container_width=True):
64
- print(get_all_cookies())
65
  st.session_state.start_chat = True
66
  if thread_id:
67
  st.session_state.thread_id = thread_id
 
59
  st.header("Configuration")
60
  thread_id = st.sidebar.text_input("Enter your Thread ID:", placeholder="Leave empty to start a new thread")
61
  c1, c2 = st.columns(2)
62
+ st.write(get_all_cookies())
63
  if c1.button("Start Chat", use_container_width=True):
64
+
65
  st.session_state.start_chat = True
66
  if thread_id:
67
  st.session_state.thread_id = thread_id