Spaces:
Sleeping
Sleeping
Commit
·
1d23de4
0
Parent(s):
Duplicate from gli-mrunal/GPT_instruct_chatbot
Browse filesCo-authored-by: Mrunal <[email protected]>
- .env +2 -0
- .gitattributes +35 -0
- .gitignore +160 -0
- README.md +14 -0
- app.py +149 -0
- htmlTemplates.py +44 -0
- requirements.txt +13 -0
.env
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
OPENAI_API_KEY=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
|
2 |
+
HUGGINGFACEHUB_API_TOKEN=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
|
.gitattributes
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
30 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
31 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
32 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
images/bot.jpg filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# C extensions
|
7 |
+
*.so
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
.Python
|
11 |
+
build/
|
12 |
+
develop-eggs/
|
13 |
+
dist/
|
14 |
+
downloads/
|
15 |
+
eggs/
|
16 |
+
.eggs/
|
17 |
+
lib/
|
18 |
+
lib64/
|
19 |
+
parts/
|
20 |
+
sdist/
|
21 |
+
var/
|
22 |
+
wheels/
|
23 |
+
share/python-wheels/
|
24 |
+
*.egg-info/
|
25 |
+
.installed.cfg
|
26 |
+
*.egg
|
27 |
+
MANIFEST
|
28 |
+
|
29 |
+
# PyInstaller
|
30 |
+
# Usually these files are written by a python script from a template
|
31 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32 |
+
*.manifest
|
33 |
+
*.spec
|
34 |
+
|
35 |
+
# Installer logs
|
36 |
+
pip-log.txt
|
37 |
+
pip-delete-this-directory.txt
|
38 |
+
|
39 |
+
# Unit test / coverage reports
|
40 |
+
htmlcov/
|
41 |
+
.tox/
|
42 |
+
.nox/
|
43 |
+
.coverage
|
44 |
+
.coverage.*
|
45 |
+
.cache
|
46 |
+
nosetests.xml
|
47 |
+
coverage.xml
|
48 |
+
*.cover
|
49 |
+
*.py,cover
|
50 |
+
.hypothesis/
|
51 |
+
.pytest_cache/
|
52 |
+
cover/
|
53 |
+
|
54 |
+
# Translations
|
55 |
+
*.mo
|
56 |
+
*.pot
|
57 |
+
|
58 |
+
# Django stuff:
|
59 |
+
*.log
|
60 |
+
local_settings.py
|
61 |
+
db.sqlite3
|
62 |
+
db.sqlite3-journal
|
63 |
+
|
64 |
+
# Flask stuff:
|
65 |
+
instance/
|
66 |
+
.webassets-cache
|
67 |
+
|
68 |
+
# Scrapy stuff:
|
69 |
+
.scrapy
|
70 |
+
|
71 |
+
# Sphinx documentation
|
72 |
+
docs/_build/
|
73 |
+
|
74 |
+
# PyBuilder
|
75 |
+
.pybuilder/
|
76 |
+
target/
|
77 |
+
|
78 |
+
# Jupyter Notebook
|
79 |
+
.ipynb_checkpoints
|
80 |
+
|
81 |
+
# IPython
|
82 |
+
profile_default/
|
83 |
+
ipython_config.py
|
84 |
+
|
85 |
+
# pyenv
|
86 |
+
# For a library or package, you might want to ignore these files since the code is
|
87 |
+
# intended to run in multiple environments; otherwise, check them in:
|
88 |
+
# .python-version
|
89 |
+
|
90 |
+
# pipenv
|
91 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
92 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
93 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
94 |
+
# install all needed dependencies.
|
95 |
+
#Pipfile.lock
|
96 |
+
|
97 |
+
# poetry
|
98 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
99 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
100 |
+
# commonly ignored for libraries.
|
101 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
102 |
+
#poetry.lock
|
103 |
+
|
104 |
+
# pdm
|
105 |
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
106 |
+
#pdm.lock
|
107 |
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
108 |
+
# in version control.
|
109 |
+
# https://pdm.fming.dev/#use-with-ide
|
110 |
+
.pdm.toml
|
111 |
+
|
112 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
113 |
+
__pypackages__/
|
114 |
+
|
115 |
+
# Celery stuff
|
116 |
+
celerybeat-schedule
|
117 |
+
celerybeat.pid
|
118 |
+
|
119 |
+
# SageMath parsed files
|
120 |
+
*.sage.py
|
121 |
+
|
122 |
+
# Environments
|
123 |
+
.env
|
124 |
+
.venv
|
125 |
+
env/
|
126 |
+
venv/
|
127 |
+
ENV/
|
128 |
+
env.bak/
|
129 |
+
venv.bak/
|
130 |
+
|
131 |
+
# Spyder project settings
|
132 |
+
.spyderproject
|
133 |
+
.spyproject
|
134 |
+
|
135 |
+
# Rope project settings
|
136 |
+
.ropeproject
|
137 |
+
|
138 |
+
# mkdocs documentation
|
139 |
+
/site
|
140 |
+
|
141 |
+
# mypy
|
142 |
+
.mypy_cache/
|
143 |
+
.dmypy.json
|
144 |
+
dmypy.json
|
145 |
+
|
146 |
+
# Pyre type checker
|
147 |
+
.pyre/
|
148 |
+
|
149 |
+
# pytype static type analyzer
|
150 |
+
.pytype/
|
151 |
+
|
152 |
+
# Cython debug symbols
|
153 |
+
cython_debug/
|
154 |
+
|
155 |
+
# PyCharm
|
156 |
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
157 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
158 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
+
#.idea/
|
README.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: GPT Instruct Chatbot
|
3 |
+
emoji: 🏆
|
4 |
+
colorFrom: red
|
5 |
+
colorTo: purple
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.21.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
license: mit
|
11 |
+
duplicated_from: gli-mrunal/GPT_instruct_chatbot
|
12 |
+
---
|
13 |
+
|
14 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# GPT Chatbot
|
2 |
+
|
3 |
+
# Create Conda virtual environment
|
4 |
+
# conda create --name gpt_chatbot python=3.9.4
|
5 |
+
# conda activate gpt_chatbot
|
6 |
+
|
7 |
+
# Installation
|
8 |
+
# pip install streamlit pypdf2 langchain python-dotenv faiss-cpu openai huggingface_hub
|
9 |
+
# pip install tiktoken
|
10 |
+
|
11 |
+
# pip install InstructorEmbedding sentence_transformers
|
12 |
+
|
13 |
+
# Could not import tiktoken python package. This is needed in order to for OpenAIEmbeddings. Please install it with `pip install tiktoken`.
|
14 |
+
# run the app using the following command in anaconda VS Code terminal
|
15 |
+
# streamlit run app.py
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
import streamlit as st
|
20 |
+
from dotenv import load_dotenv
|
21 |
+
from PyPDF2 import PdfReader
|
22 |
+
from langchain.text_splitter import CharacterTextSplitter
|
23 |
+
from langchain.embeddings import OpenAIEmbeddings, HuggingFaceInstructEmbeddings
|
24 |
+
from langchain.vectorstores import FAISS # FAISS instead of PineCone
|
25 |
+
from langchain.llms import OpenAI
|
26 |
+
from langchain.llms import HuggingFaceHub
|
27 |
+
from langchain.chat_models import ChatOpenAI
|
28 |
+
from langchain.memory import ConversationBufferMemory
|
29 |
+
from langchain.chains import ConversationalRetrievalChain
|
30 |
+
from htmlTemplates import css, bot_template, user_template
|
31 |
+
|
32 |
+
def get_pdf_text(pdf_docs):
|
33 |
+
text =""
|
34 |
+
for pdf in pdf_docs:
|
35 |
+
pdf_reader = PdfReader(pdf)
|
36 |
+
for page in pdf_reader.pages:
|
37 |
+
text += page.extract_text()
|
38 |
+
return text
|
39 |
+
|
40 |
+
def get_text_chunks(text):
|
41 |
+
text_splitter = CharacterTextSplitter(
|
42 |
+
separator="\n",
|
43 |
+
chunk_size=1000,
|
44 |
+
chunk_overlap=200,
|
45 |
+
length_function=len
|
46 |
+
)
|
47 |
+
chunks = text_splitter.split_text(text)
|
48 |
+
return chunks
|
49 |
+
|
50 |
+
def get_vectorstore(text_chunks):
|
51 |
+
# embeddings = OpenAIEmbeddings()
|
52 |
+
embeddings = HuggingFaceInstructEmbeddings(model_name="hkunlp/instructor-xl")
|
53 |
+
vectorstore = FAISS.from_texts(texts=text_chunks, embedding=embeddings)
|
54 |
+
return vectorstore
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
def get_conversation_chain(vectorstore):
|
59 |
+
llm = OpenAI()
|
60 |
+
#llm = ChatOpenAI()
|
61 |
+
#llm = HuggingFaceHub(repo_id="google/flan-t5-xxl", model_kwargs={"temperature":0.5, "max_length":512})
|
62 |
+
memory = ConversationBufferMemory(memory_key='chat_history', return_messages=True)
|
63 |
+
conversation_chain = ConversationalRetrievalChain.from_llm(
|
64 |
+
llm=llm,
|
65 |
+
retriever=vectorstore.as_retriever(),
|
66 |
+
memory=memory
|
67 |
+
)
|
68 |
+
return conversation_chain
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
def handle_userinput(user_question):
|
73 |
+
# st.session_state.conversation contains all the configuration from our vectorstore and memory.
|
74 |
+
response = st.session_state.conversation({'question': user_question})
|
75 |
+
# st.write(response)
|
76 |
+
st.session_state.chat_history = response['chat_history']
|
77 |
+
|
78 |
+
for i, message in enumerate(st.session_state.chat_history):
|
79 |
+
if i % 2 == 0:
|
80 |
+
st.write(user_template.replace("{{MSG}}", message.content), unsafe_allow_html=True)
|
81 |
+
else:
|
82 |
+
st.write(bot_template.replace("{{MSG}}", message.content), unsafe_allow_html=True)
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
def main():
|
88 |
+
load_dotenv()
|
89 |
+
st.set_page_config(page_title="Chat with multiple law journal PDFs",
|
90 |
+
page_icon=":books:")
|
91 |
+
|
92 |
+
st.write(css, unsafe_allow_html=True)
|
93 |
+
|
94 |
+
if "conversation" not in st.session_state:
|
95 |
+
st.session_state.conversation = None
|
96 |
+
|
97 |
+
if "chat_history" not in st.session_state:
|
98 |
+
st.session_state.chat_history = None
|
99 |
+
|
100 |
+
st.header("Chat with multiple PDFs :books:")
|
101 |
+
|
102 |
+
user_question = st.text_input("Ask a question about your documents:")
|
103 |
+
if user_question:
|
104 |
+
handle_userinput(user_question)
|
105 |
+
|
106 |
+
#st.write(user_template.replace("{{MSG}}", "hello robot"), unsafe_allow_html=True)
|
107 |
+
#st.write(bot_template.replace("{{MSG}}", "hello human"), unsafe_allow_html=True)
|
108 |
+
|
109 |
+
# "https://i.ibb.co/rdZC7LZ/Photo-logo-1.png"
|
110 |
+
# "https://huggingface.co/spaces/gli-mrunal/GPT_instruct_chatbot/blob/main/images/bot.jpg"
|
111 |
+
# "https://huggingface.co/spaces/gli-mrunal/GPT_instruct_chatbot/blob/main/images/CSUN_Matadors_logo.svg.png"
|
112 |
+
|
113 |
+
with st.sidebar:
|
114 |
+
st.subheader("Your documents")
|
115 |
+
|
116 |
+
pdf_docs = st.file_uploader(
|
117 |
+
"Upload your PDfs here and click on 'Process'", accept_multiple_files=True)
|
118 |
+
if st.button("Process"):
|
119 |
+
with st.spinner("Processing"):
|
120 |
+
# --------------- get pdf text -------------------
|
121 |
+
|
122 |
+
raw_text = get_pdf_text(pdf_docs)
|
123 |
+
#st.write(raw_text)
|
124 |
+
|
125 |
+
# ---------- get the text chunks -------------------------
|
126 |
+
|
127 |
+
text_chunks = get_text_chunks(raw_text)
|
128 |
+
#st.write(text_chunks)
|
129 |
+
|
130 |
+
|
131 |
+
# -------------- create vector store------------------------
|
132 |
+
# https://openai.com/pricing --> Embedding Models
|
133 |
+
# Chose to use the best embedding model - intructor_xl ranked higher than OpenAi's embeddings from huggingface leaderboard
|
134 |
+
# https://huggingface.co/spaces/mteb/leaderboard
|
135 |
+
|
136 |
+
vectorstore = get_vectorstore(text_chunks)
|
137 |
+
|
138 |
+
# create conversation chain
|
139 |
+
st.session_state.conversation = get_conversation_chain(vectorstore)
|
140 |
+
#conversation = get_conversation_chain(vectorstore)
|
141 |
+
|
142 |
+
#st.session_state.conversation
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
if __name__ == '__main__':
|
149 |
+
main()
|
htmlTemplates.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
css = '''
|
2 |
+
<style>
|
3 |
+
.chat-message {
|
4 |
+
padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 1rem; display: flex
|
5 |
+
}
|
6 |
+
.chat-message.user {
|
7 |
+
background-color: #2b313e
|
8 |
+
}
|
9 |
+
.chat-message.bot {
|
10 |
+
background-color: #475063
|
11 |
+
}
|
12 |
+
.chat-message .avatar {
|
13 |
+
width: 20%;
|
14 |
+
}
|
15 |
+
.chat-message .avatar img {
|
16 |
+
max-width: 78px;
|
17 |
+
max-height: 78px;
|
18 |
+
border-radius: 50%;
|
19 |
+
object-fit: cover;
|
20 |
+
}
|
21 |
+
.chat-message .message {
|
22 |
+
width: 80%;
|
23 |
+
padding: 0 1.5rem;
|
24 |
+
color: #fff;
|
25 |
+
}
|
26 |
+
'''
|
27 |
+
|
28 |
+
bot_template = '''
|
29 |
+
<div class="chat-message bot">
|
30 |
+
<div class="avatar">
|
31 |
+
<img src="https://github.com/gli-mrunal/test_images/blob/main/gpt.jpg?raw=true" style="max-height: 78px; max-width: 78px; border-radius: 50%; object-fit: cover;">
|
32 |
+
</div>
|
33 |
+
<div class="message">{{MSG}}</div>
|
34 |
+
</div>
|
35 |
+
'''
|
36 |
+
|
37 |
+
user_template = '''
|
38 |
+
<div class="chat-message user">
|
39 |
+
<div class="avatar">
|
40 |
+
<img src="https://github.com/gli-mrunal/test_images/blob/main/user.png?raw=true">
|
41 |
+
</div>
|
42 |
+
<div class="message">{{MSG}}</div>
|
43 |
+
</div>
|
44 |
+
'''
|
requirements.txt
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
langchain
|
2 |
+
PyPDF2==3.0.1
|
3 |
+
python-dotenv==1.0.0
|
4 |
+
streamlit==1.18.1
|
5 |
+
openai==0.27.6
|
6 |
+
faiss-cpu==1.7.4
|
7 |
+
|
8 |
+
# uncomment to use huggingface llms
|
9 |
+
huggingface-hub==0.14.1
|
10 |
+
|
11 |
+
# uncomment to use instructor embeddings
|
12 |
+
InstructorEmbedding==1.0.1
|
13 |
+
sentence-transformers==2.2.2
|