From f34f561617c5e6c9c875afb46d420a839c97084b Mon Sep 17 00:00:00 2001 From: noptuno Date: Thu, 27 Apr 2023 20:38:18 -0400 Subject: Resolved merge conflicts and merged pr_218 into STREAMLIT_CHAT_IMPLEMENTATION --- README.md | 4 ++-- gui/streamlit_chat_app.py | 5 +++-- .../forefront/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 4705 bytes openai_rev/forefront/__pycache__/mail.cpython-39.pyc | Bin 0 -> 2387 bytes openai_rev/forefront/__pycache__/models.cpython-39.pyc | Bin 0 -> 1048 bytes openai_rev/quora/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 16849 bytes openai_rev/quora/__pycache__/api.cpython-39.pyc | Bin 0 -> 14020 bytes openai_rev/quora/__pycache__/mail.cpython-39.pyc | Bin 0 -> 2456 bytes openai_rev/theb/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1897 bytes openai_rev/you/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 3467 bytes 10 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 openai_rev/forefront/__pycache__/__init__.cpython-39.pyc create mode 100644 openai_rev/forefront/__pycache__/mail.cpython-39.pyc create mode 100644 openai_rev/forefront/__pycache__/models.cpython-39.pyc create mode 100644 openai_rev/quora/__pycache__/__init__.cpython-39.pyc create mode 100644 openai_rev/quora/__pycache__/api.cpython-39.pyc create mode 100644 openai_rev/quora/__pycache__/mail.cpython-39.pyc create mode 100644 openai_rev/theb/__pycache__/__init__.cpython-39.pyc create mode 100644 openai_rev/you/__pycache__/__init__.cpython-39.pyc diff --git a/README.md b/README.md index a37dc9b2..914128ff 100644 --- a/README.md +++ b/README.md @@ -49,8 +49,8 @@ Please note the following: ## Todo -- [ ] Add a GUI for the repo -- [ ] Make a general package named `openai_rev`, instead of different folders +- [x] Add a GUI for the repo +- [x] Make a general package named `openai_rev`, instead of different folders - [ ] Live api status to know which are down and which can be used - [ ] Integrate more API's in `./unfinished` as well as other ones in the lists - [ ] Make an API to use as proxy for other projects diff --git a/gui/streamlit_chat_app.py b/gui/streamlit_chat_app.py index ed3474fd..3ced571a 100644 --- a/gui/streamlit_chat_app.py +++ b/gui/streamlit_chat_app.py @@ -7,7 +7,7 @@ import streamlit as st from streamlit_chat import message from query_methods import query, avail_query_methods import pickle - +import openai_rev conversations_file = "conversations.pkl" @@ -71,9 +71,10 @@ if st.sidebar.button("New Conversation"): st.session_state['current_conversation'] = {'user_inputs': [], 'generated_responses': []} st.session_state['input_field_key'] += 1 - +print(openai_rev.Provider.__methods__.keys()) st.session_state['query_method'] = st.sidebar.selectbox( "Select API:", + options=avail_query_methods.keys(), index=0 ) diff --git a/openai_rev/forefront/__pycache__/__init__.cpython-39.pyc b/openai_rev/forefront/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 00000000..f1b82a23 Binary files /dev/null and b/openai_rev/forefront/__pycache__/__init__.cpython-39.pyc differ diff --git a/openai_rev/forefront/__pycache__/mail.cpython-39.pyc b/openai_rev/forefront/__pycache__/mail.cpython-39.pyc new file mode 100644 index 00000000..c903d3db Binary files /dev/null and b/openai_rev/forefront/__pycache__/mail.cpython-39.pyc differ diff --git a/openai_rev/forefront/__pycache__/models.cpython-39.pyc b/openai_rev/forefront/__pycache__/models.cpython-39.pyc new file mode 100644 index 00000000..153edef7 Binary files /dev/null and b/openai_rev/forefront/__pycache__/models.cpython-39.pyc differ diff --git a/openai_rev/quora/__pycache__/__init__.cpython-39.pyc b/openai_rev/quora/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 00000000..f5e4ef8d Binary files /dev/null and b/openai_rev/quora/__pycache__/__init__.cpython-39.pyc differ diff --git a/openai_rev/quora/__pycache__/api.cpython-39.pyc b/openai_rev/quora/__pycache__/api.cpython-39.pyc new file mode 100644 index 00000000..01645ec7 Binary files /dev/null and b/openai_rev/quora/__pycache__/api.cpython-39.pyc differ diff --git a/openai_rev/quora/__pycache__/mail.cpython-39.pyc b/openai_rev/quora/__pycache__/mail.cpython-39.pyc new file mode 100644 index 00000000..009a06ef Binary files /dev/null and b/openai_rev/quora/__pycache__/mail.cpython-39.pyc differ diff --git a/openai_rev/theb/__pycache__/__init__.cpython-39.pyc b/openai_rev/theb/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 00000000..00d672bd Binary files /dev/null and b/openai_rev/theb/__pycache__/__init__.cpython-39.pyc differ diff --git a/openai_rev/you/__pycache__/__init__.cpython-39.pyc b/openai_rev/you/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 00000000..7ba27a73 Binary files /dev/null and b/openai_rev/you/__pycache__/__init__.cpython-39.pyc differ -- cgit v1.2.3