2023-04-29 09:31:16 +00:00
|
|
|
import atexit
|
2023-05-01 07:23:40 +00:00
|
|
|
import Levenshtein
|
2023-04-27 23:15:50 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir))
|
|
|
|
|
|
|
|
import streamlit as st
|
|
|
|
from streamlit_chat import message
|
2023-04-28 10:33:51 +00:00
|
|
|
from query_methods import query, avail_query_methods
|
2023-04-27 23:15:50 +00:00
|
|
|
import pickle
|
|
|
|
|
|
|
|
conversations_file = "conversations.pkl"
|
|
|
|
|
|
|
|
def load_conversations():
|
|
|
|
try:
|
|
|
|
with open(conversations_file, "rb") as f:
|
|
|
|
return pickle.load(f)
|
|
|
|
except FileNotFoundError:
|
|
|
|
return []
|
2023-04-28 10:33:51 +00:00
|
|
|
except EOFError:
|
|
|
|
return []
|
|
|
|
|
2023-04-27 23:15:50 +00:00
|
|
|
|
|
|
|
def save_conversations(conversations, current_conversation):
|
|
|
|
updated = False
|
2023-04-30 01:42:57 +00:00
|
|
|
for idx, conversation in enumerate(conversations):
|
2023-04-27 23:15:50 +00:00
|
|
|
if conversation == current_conversation:
|
2023-04-30 01:42:57 +00:00
|
|
|
conversations[idx] = current_conversation
|
2023-04-27 23:15:50 +00:00
|
|
|
updated = True
|
|
|
|
break
|
|
|
|
if not updated:
|
|
|
|
conversations.append(current_conversation)
|
2023-04-29 09:31:16 +00:00
|
|
|
|
2023-04-28 10:33:51 +00:00
|
|
|
temp_conversations_file = "temp_" + conversations_file
|
|
|
|
with open(temp_conversations_file, "wb") as f:
|
2023-04-27 23:15:50 +00:00
|
|
|
pickle.dump(conversations, f)
|
2023-04-29 09:31:16 +00:00
|
|
|
|
2023-04-28 10:33:51 +00:00
|
|
|
os.replace(temp_conversations_file, conversations_file)
|
|
|
|
|
2023-05-01 19:44:58 +00:00
|
|
|
def delete_conversation(conversations, current_conversation):
|
|
|
|
for idx, conversation in enumerate(conversations):
|
|
|
|
conversations[idx] = current_conversation
|
|
|
|
break
|
|
|
|
conversations.remove(current_conversation)
|
|
|
|
|
|
|
|
temp_conversations_file = "temp_" + conversations_file
|
|
|
|
with open(temp_conversations_file, "wb") as f:
|
|
|
|
pickle.dump(conversations, f)
|
|
|
|
|
|
|
|
os.replace(temp_conversations_file, conversations_file)
|
2023-04-28 10:33:51 +00:00
|
|
|
|
|
|
|
def exit_handler():
|
|
|
|
print("Exiting, saving data...")
|
|
|
|
# Perform cleanup operations here, like saving data or closing open files.
|
|
|
|
save_conversations(st.session_state.conversations, st.session_state.current_conversation)
|
|
|
|
|
2023-04-29 09:31:16 +00:00
|
|
|
|
2023-04-28 10:33:51 +00:00
|
|
|
# Register the exit_handler function to be called when the program is closing.
|
|
|
|
atexit.register(exit_handler)
|
|
|
|
|
2023-04-27 23:15:50 +00:00
|
|
|
st.header("Chat Placeholder")
|
|
|
|
|
|
|
|
if 'conversations' not in st.session_state:
|
|
|
|
st.session_state['conversations'] = load_conversations()
|
|
|
|
|
|
|
|
if 'input_text' not in st.session_state:
|
|
|
|
st.session_state['input_text'] = ''
|
|
|
|
|
|
|
|
if 'selected_conversation' not in st.session_state:
|
|
|
|
st.session_state['selected_conversation'] = None
|
|
|
|
|
|
|
|
if 'input_field_key' not in st.session_state:
|
|
|
|
st.session_state['input_field_key'] = 0
|
2023-04-29 09:31:16 +00:00
|
|
|
|
2023-04-27 23:15:50 +00:00
|
|
|
if 'query_method' not in st.session_state:
|
|
|
|
st.session_state['query_method'] = query
|
|
|
|
|
2023-05-01 07:23:40 +00:00
|
|
|
if 'search_query' not in st.session_state:
|
|
|
|
st.session_state['search_query'] = ''
|
|
|
|
|
2023-04-27 23:15:50 +00:00
|
|
|
# Initialize new conversation
|
|
|
|
if 'current_conversation' not in st.session_state or st.session_state['current_conversation'] is None:
|
|
|
|
st.session_state['current_conversation'] = {'user_inputs': [], 'generated_responses': []}
|
|
|
|
|
|
|
|
input_placeholder = st.empty()
|
2023-04-29 09:31:16 +00:00
|
|
|
user_input = input_placeholder.text_input(
|
2023-05-01 07:23:40 +00:00
|
|
|
'You:', value=st.session_state['input_text'], key=f'input_text_-1'#{st.session_state["input_field_key"]}
|
2023-04-29 09:31:16 +00:00
|
|
|
)
|
2023-04-27 23:15:50 +00:00
|
|
|
submit_button = st.button("Submit")
|
|
|
|
|
2023-04-30 01:42:57 +00:00
|
|
|
if (user_input and user_input != st.session_state['input_text']) or submit_button:
|
2023-04-27 23:15:50 +00:00
|
|
|
output = query(user_input, st.session_state['query_method'])
|
2023-04-30 11:13:56 +00:00
|
|
|
|
2023-04-28 23:38:23 +00:00
|
|
|
escaped_output = output.encode('utf-8').decode('unicode-escape')
|
2023-04-29 09:31:16 +00:00
|
|
|
|
2023-05-01 07:23:40 +00:00
|
|
|
st.session_state['current_conversation']['user_inputs'].append(user_input)
|
2023-04-28 23:38:23 +00:00
|
|
|
st.session_state.current_conversation['generated_responses'].append(escaped_output)
|
2023-04-27 23:15:50 +00:00
|
|
|
save_conversations(st.session_state.conversations, st.session_state.current_conversation)
|
2023-04-30 01:42:57 +00:00
|
|
|
st.session_state['input_text'] = ''
|
2023-05-01 01:10:38 +00:00
|
|
|
st.session_state['input_field_key'] += 1 # Increment key value for new widget
|
2023-04-29 09:31:16 +00:00
|
|
|
user_input = input_placeholder.text_input(
|
2023-04-30 01:42:57 +00:00
|
|
|
'You:', value=st.session_state['input_text'], key=f'input_text_{st.session_state["input_field_key"]}'
|
2023-04-29 09:31:16 +00:00
|
|
|
) # Clear the input field
|
2023-04-27 23:15:50 +00:00
|
|
|
|
|
|
|
# Add a button to create a new conversation
|
|
|
|
if st.sidebar.button("New Conversation"):
|
|
|
|
st.session_state['selected_conversation'] = None
|
|
|
|
st.session_state['current_conversation'] = {'user_inputs': [], 'generated_responses': []}
|
2023-05-01 01:10:38 +00:00
|
|
|
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)
|
2023-04-27 23:15:50 +00:00
|
|
|
|
2023-04-30 05:19:46 +00:00
|
|
|
# Proxy
|
|
|
|
st.session_state['proxy'] = st.sidebar.text_input("Proxy: ")
|
|
|
|
|
2023-05-01 07:23:40 +00:00
|
|
|
# Searchbar
|
|
|
|
search_query = st.sidebar.text_input("Search Conversations:", value=st.session_state.get('search_query', ''), key='search')
|
|
|
|
|
|
|
|
if search_query:
|
|
|
|
filtered_conversations = []
|
2023-05-01 14:57:20 +00:00
|
|
|
indices = []
|
|
|
|
for idx, conversation in enumerate(st.session_state.conversations):
|
2023-05-01 07:23:40 +00:00
|
|
|
if search_query in conversation['user_inputs'][0]:
|
|
|
|
filtered_conversations.append(conversation)
|
2023-05-01 14:57:20 +00:00
|
|
|
indices.append(idx)
|
|
|
|
|
|
|
|
filtered_conversations = list(zip(indices, filtered_conversations))
|
|
|
|
conversations = sorted(filtered_conversations, key=lambda x: Levenshtein.distance(search_query, x[1]['user_inputs'][0]))
|
2023-05-01 07:23:40 +00:00
|
|
|
|
|
|
|
sidebar_header = f"Search Results ({len(conversations)})"
|
|
|
|
else:
|
2023-05-01 19:44:58 +00:00
|
|
|
conversations = st.session_state.conversations
|
2023-05-01 07:23:40 +00:00
|
|
|
sidebar_header = "Conversation History"
|
|
|
|
|
2023-04-27 23:15:50 +00:00
|
|
|
# Sidebar
|
2023-05-01 07:23:40 +00:00
|
|
|
st.sidebar.header(sidebar_header)
|
2023-05-01 19:44:58 +00:00
|
|
|
sidebar_col1, sidebar_col2 = st.sidebar.columns([5,1])
|
|
|
|
for idx, conversation in enumerate(conversations):
|
|
|
|
if sidebar_col1.button(f"Conversation {idx + 1}: {conversation['user_inputs'][0]}", key=f"sidebar_btn_{idx}"):
|
2023-04-30 01:42:57 +00:00
|
|
|
st.session_state['selected_conversation'] = idx
|
2023-05-01 06:43:17 +00:00
|
|
|
st.session_state['current_conversation'] = conversation
|
2023-05-01 19:44:58 +00:00
|
|
|
if sidebar_col2.button('🗑️', key=f"sidebar_btn_delete_{idx}"):
|
|
|
|
if st.session_state['selected_conversation'] == idx:
|
|
|
|
st.session_state['selected_conversation'] = None
|
|
|
|
st.session_state['current_conversation'] = {'user_inputs': [], 'generated_responses': []}
|
|
|
|
delete_conversation(conversations, conversation)
|
|
|
|
st.experimental_rerun()
|
2023-04-27 23:15:50 +00:00
|
|
|
if st.session_state['selected_conversation'] is not None:
|
2023-05-01 07:23:40 +00:00
|
|
|
conversation_to_display = conversations[st.session_state['selected_conversation']]
|
2023-04-27 23:15:50 +00:00
|
|
|
else:
|
|
|
|
conversation_to_display = st.session_state.current_conversation
|
|
|
|
|
|
|
|
if conversation_to_display['generated_responses']:
|
|
|
|
for i in range(len(conversation_to_display['generated_responses']) - 1, -1, -1):
|
|
|
|
message(conversation_to_display["generated_responses"][i], key=f"display_generated_{i}")
|
2023-05-01 06:43:17 +00:00
|
|
|
message(conversation_to_display['user_inputs'][i], is_user=True, key=f"display_user_{i}")
|