-
Notifications
You must be signed in to change notification settings - Fork 43
/
app_colab.py
156 lines (129 loc) · 5.96 KB
/
app_colab.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import streamlit as st
import tempfile, os
from langchain_openai import OpenAIEmbeddings
from langchain_openai import ChatOpenAI
from langchain_community.vectorstores import AstraDB
from langchain.schema.runnable import RunnableMap
from langchain.prompts import ChatPromptTemplate
from langchain.callbacks.base import BaseCallbackHandler
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain_community.document_loaders import PyPDFLoader
# Streaming call back handler for responses
class StreamHandler(BaseCallbackHandler):
def __init__(self, container, initial_text=""):
self.container = container
self.text = initial_text
def on_llm_new_token(self, token: str, **kwargs):
self.text += token
self.container.markdown(self.text + "▌")
# Function for Vectorizing uploaded data into Astra DB
def vectorize_text(uploaded_files, vector_store):
for uploaded_file in uploaded_files:
if uploaded_file is not None:
# Write to temporary file
temp_dir = tempfile.TemporaryDirectory()
file = uploaded_file
print(f"""Processing: {file}""")
temp_filepath = os.path.join(temp_dir.name, file.name)
with open(temp_filepath, 'wb') as f:
f.write(file.getvalue())
# Process TXT
if uploaded_file.name.endswith('txt'):
file = [uploaded_file.read().decode()]
text_splitter = RecursiveCharacterTextSplitter(
chunk_size = 1500,
chunk_overlap = 100
)
texts = text_splitter.create_documents(file, [{'source': uploaded_file.name}])
vector_store.add_documents(texts)
st.info(f"Loaded {len(texts)} chunks")
# Cache prompt for future runs
@st.cache_data()
def load_prompt():
template = """You're a helpful AI assistent tasked to answer the user's questions.
You're friendly and you answer extensively with multiple sentences. You prefer to use bulletpoints to summarize.
CONTEXT:
{context}
QUESTION:
{question}
YOUR ANSWER:"""
return ChatPromptTemplate.from_messages([("system", template)])
# Cache OpenAI Chat Model for future runs
@st.cache_resource()
def load_chat_model(openai_api_key):
return ChatOpenAI(
openai_api_key=openai_api_key,
temperature=0.3,
model='gpt-3.5-turbo',
streaming=True,
verbose=True
)
# Cache the Astra DB Vector Store for future runs
@st.cache_resource(show_spinner='Connecting to Astra DB Vector Store')
def load_vector_store(_astra_db_endpoint, astra_db_secret, openai_api_key):
# Connect to the Vector Store
vector_store = AstraDB(
embedding=OpenAIEmbeddings(openai_api_key=openai_api_key),
collection_name="my_store",
api_endpoint=astra_db_endpoint,
token=astra_db_secret
)
return vector_store
# Cache the Retriever for future runs
@st.cache_resource(show_spinner='Getting retriever')
def load_retriever(_vector_store):
# Get the retriever for the Chat Model
retriever = vector_store.as_retriever(
search_kwargs={"k": 5}
)
return retriever
# Start with empty messages, stored in session state
if 'messages' not in st.session_state:
st.session_state.messages = []
# Draw a title and some markdown
st.title("Your personal Efficiency Booster")
st.markdown("""Generative AI is considered to bring the next Industrial Revolution.
Why? Studies show a **37% efficiency boost** in day to day work activities!""")
# Get the secrets
astra_db_endpoint = st.sidebar.text_input('Astra DB Endpoint', type="password")
astra_db_secret = st.sidebar.text_input('Astra DB Secret', type="password")
openai_api_key = st.sidebar.text_input('OpenAI API Key', type="password")
# Draw all messages, both user and bot so far (every time the app reruns)
for message in st.session_state.messages:
st.chat_message(message['role']).markdown(message['content'])
# Draw the chat input box
if not openai_api_key.startswith('sk-') or not astra_db_endpoint.startswith('https') or not astra_db_secret.startswith('AstraCS'):
st.warning('Please enter your Astra DB Endpoint, Astra DB Secret and Open AI API Key!', icon='⚠')
else:
prompt = load_prompt()
chat_model = load_chat_model(openai_api_key)
vector_store = load_vector_store(astra_db_endpoint, astra_db_secret, openai_api_key)
retriever = load_retriever(vector_store)
# Include the upload form for new data to be Vectorized
with st.sidebar:
st.divider()
uploaded_file = st.file_uploader('Upload a document for additional context', type=['txt'], accept_multiple_files=True)
submitted = st.button('Save to Astra DB')
if submitted:
vectorize_text(uploaded_file, vector_store)
if question := st.chat_input("What's up?"):
# Store the user's question in a session object for redrawing next time
st.session_state.messages.append({"role": "human", "content": question})
# Draw the user's question
with st.chat_message('human'):
st.markdown(question)
# UI placeholder to start filling with agent response
with st.chat_message('assistant'):
response_placeholder = st.empty()
# Generate the answer by calling OpenAI's Chat Model
inputs = RunnableMap({
'context': lambda x: retriever.get_relevant_documents(x['question']),
'question': lambda x: x['question']
})
chain = inputs | prompt | chat_model
response = chain.invoke({'question': question}, config={'callbacks': [StreamHandler(response_placeholder)]})
answer = response.content
# Store the bot's answer in a session object for redrawing next time
st.session_state.messages.append({"role": "ai", "content": answer})
# Write the final answer without the cursor
response_placeholder.markdown(answer)