Merge pull request #328 from editor-syntax/patch-3
fix: streamlit_chat_app.py
This commit is contained in:
commit
0817c93f20
1 changed files with 3 additions and 4 deletions
|
@ -74,7 +74,6 @@ user_input = input_placeholder.text_input(
|
|||
)
|
||||
submit_button = st.button("Submit")
|
||||
|
||||
|
||||
if (user_input and user_input != st.session_state['input_text']) or submit_button:
|
||||
output = query(user_input, st.session_state['query_method'])
|
||||
|
||||
|
@ -84,6 +83,7 @@ if (user_input and user_input != st.session_state['input_text']) or submit_butto
|
|||
st.session_state.current_conversation['generated_responses'].append(escaped_output)
|
||||
save_conversations(st.session_state.conversations, st.session_state.current_conversation)
|
||||
st.session_state['input_text'] = ''
|
||||
st.session_state['input_field_key'] += 1 # Increment key value for new widget
|
||||
user_input = input_placeholder.text_input(
|
||||
'You:', value=st.session_state['input_text'], key=f'input_text_{st.session_state["input_field_key"]}'
|
||||
) # Clear the input field
|
||||
|
@ -92,9 +92,8 @@ if (user_input and user_input != st.session_state['input_text']) or submit_butto
|
|||
if st.sidebar.button("New Conversation"):
|
||||
st.session_state['selected_conversation'] = None
|
||||
st.session_state['current_conversation'] = {'user_inputs': [], 'generated_responses': []}
|
||||
st.session_state['input_field_key'] += 1
|
||||
|
||||
st.session_state['query_method'] = st.sidebar.selectbox("Select API:", options=avail_query_methods, index=0)
|
||||
st.session_state['input_field_key'] += 1 # Increment key value for new widget
|
||||
st.session_state['query_method'] = st.sidebar.selectbox("Select API:", options=avail_query_methods, index=0)
|
||||
|
||||
# Proxy
|
||||
st.session_state['proxy'] = st.sidebar.text_input("Proxy: ")
|
||||
|
|
Loading…
Reference in a new issue