Spaces:
Running
Running
Upload 3 files
Browse files- .gitattributes +1 -0
- app.py +76 -0
- data/Processed Data.pdf +3 -0
- llama-2-7b-chat.ggmlv3.q4_0.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
data/Processed[[:space:]]Data.pdf filter=lfs diff=lfs merge=lfs -text
|
app.py
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from streamlit_chat import message
|
3 |
+
from langchain.chains import ConversationalRetrievalChain
|
4 |
+
from langchain_community.document_loaders import PyPDFLoader, DirectoryLoader
|
5 |
+
from langchain_community.embeddings import HuggingFaceEmbeddings
|
6 |
+
from langchain_community.llms import CTransformers
|
7 |
+
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
8 |
+
from langchain_community.vectorstores import FAISS
|
9 |
+
from langchain.memory import ConversationBufferMemory
|
10 |
+
|
11 |
+
#load the pdf files from the path
|
12 |
+
loader = DirectoryLoader('data/',glob="*.pdf",loader_cls=PyPDFLoader)
|
13 |
+
documents = loader.load()
|
14 |
+
|
15 |
+
#split text into chunks
|
16 |
+
text_splitter = RecursiveCharacterTextSplitter(chunk_size=500,chunk_overlap=50)
|
17 |
+
text_chunks = text_splitter.split_documents(documents)
|
18 |
+
|
19 |
+
#create embeddings
|
20 |
+
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-MiniLM-L6-v2",
|
21 |
+
model_kwargs={'device':"cpu"})
|
22 |
+
|
23 |
+
# #vectorstore
|
24 |
+
vector_store = FAISS.from_documents(text_chunks,embeddings)
|
25 |
+
|
26 |
+
# #create llm
|
27 |
+
llm = CTransformers(model="llama-2-7b-chat.ggmlv3.q4_0.bin",model_type="llama",
|
28 |
+
config={'max_new_tokens':128,'temperature':0.01})
|
29 |
+
|
30 |
+
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
|
31 |
+
|
32 |
+
chain = ConversationalRetrievalChain.from_llm(llm=llm,chain_type='stuff',
|
33 |
+
retriever=vector_store.as_retriever(search_kwargs={"k":2}),
|
34 |
+
memory=memory)
|
35 |
+
|
36 |
+
st.title("Geo ChatBot ")
|
37 |
+
def conversation_chat(query):
|
38 |
+
result = chain({"question": query, "chat_history": st.session_state['history']})
|
39 |
+
st.session_state['history'].append((query, result["answer"]))
|
40 |
+
return result["answer"]
|
41 |
+
|
42 |
+
def initialize_session_state():
|
43 |
+
if 'history' not in st.session_state:
|
44 |
+
st.session_state['history'] = []
|
45 |
+
|
46 |
+
if 'generated' not in st.session_state:
|
47 |
+
st.session_state['generated'] = ["Hello! Ask me anything about 🤗"]
|
48 |
+
|
49 |
+
if 'past' not in st.session_state:
|
50 |
+
st.session_state['past'] = ["Hey! 👋"]
|
51 |
+
|
52 |
+
def display_chat_history():
|
53 |
+
reply_container = st.container()
|
54 |
+
container = st.container()
|
55 |
+
|
56 |
+
with container:
|
57 |
+
with st.form(key='my_form', clear_on_submit=True):
|
58 |
+
user_input = st.text_input("Question:", placeholder="Ask about geology", key='input')
|
59 |
+
submit_button = st.form_submit_button(label='Send')
|
60 |
+
|
61 |
+
if submit_button and user_input:
|
62 |
+
output = conversation_chat(user_input)
|
63 |
+
|
64 |
+
st.session_state['past'].append(user_input)
|
65 |
+
st.session_state['generated'].append(output)
|
66 |
+
|
67 |
+
if st.session_state['generated']:
|
68 |
+
with reply_container:
|
69 |
+
for i in range(len(st.session_state['generated'])):
|
70 |
+
message(st.session_state["past"][i], is_user=True, key=str(i) + '_user', avatar_style="thumbs")
|
71 |
+
message(st.session_state["generated"][i], key=str(i), avatar_style="fun-emoji")
|
72 |
+
|
73 |
+
# Initialize session state
|
74 |
+
initialize_session_state()
|
75 |
+
# Display chat history
|
76 |
+
display_chat_history()
|
data/Processed Data.pdf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3a8bd0f407206465af2f7b0c575feeeeeaf35bc4a6753d9992614c02c7ebf7e
|
3 |
+
size 1918617
|
llama-2-7b-chat.ggmlv3.q4_0.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8daa9615cce30c259a9555b1cc250d461d1bc69980a274b44d7eda0be78076d8
|
3 |
+
size 3791725184
|