2023-05-15 08:10:29 +03:00
|
|
|
import anthropic
|
2023-05-13 00:05:31 +03:00
|
|
|
import streamlit as st
|
2023-05-14 11:30:03 +03:00
|
|
|
from streamlit.logger import get_logger
|
2023-05-13 00:05:31 +03:00
|
|
|
from langchain.chains import ConversationalRetrievalChain
|
|
|
|
from langchain.memory import ConversationBufferMemory
|
|
|
|
from langchain.llms import OpenAI
|
2023-05-14 11:30:03 +03:00
|
|
|
from langchain.chat_models import ChatAnthropic
|
|
|
|
from langchain.vectorstores import SupabaseVectorStore
|
2023-05-17 13:12:52 +03:00
|
|
|
from stats import add_usage
|
2023-05-13 00:05:31 +03:00
|
|
|
|
2023-05-14 11:30:03 +03:00
|
|
|
memory = ConversationBufferMemory(
|
|
|
|
memory_key="chat_history", return_messages=True)
|
|
|
|
openai_api_key = st.secrets.openai_api_key
|
|
|
|
anthropic_api_key = st.secrets.anthropic_api_key
|
|
|
|
logger = get_logger(__name__)
|
2023-05-13 00:05:31 +03:00
|
|
|
|
2023-05-14 11:30:03 +03:00
|
|
|
|
2023-05-15 08:10:29 +03:00
|
|
|
def count_tokens(question, model):
|
|
|
|
count = f'Words: {len(question.split())}'
|
|
|
|
if model.startswith("claude"):
|
|
|
|
count += f' | Tokens: {anthropic.count_tokens(question)}'
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
2023-05-17 13:12:52 +03:00
|
|
|
def chat_with_doc(model, vector_store: SupabaseVectorStore, stats_db):
|
|
|
|
|
2023-05-16 12:50:47 +03:00
|
|
|
if 'chat_history' not in st.session_state:
|
|
|
|
st.session_state['chat_history'] = []
|
2023-05-16 13:13:51 +03:00
|
|
|
|
2023-05-16 12:50:47 +03:00
|
|
|
|
|
|
|
|
2023-05-14 11:30:03 +03:00
|
|
|
question = st.text_area("## Ask a question")
|
2023-05-16 12:50:47 +03:00
|
|
|
columns = st.columns(3)
|
|
|
|
with columns[0]:
|
|
|
|
button = st.button("Ask")
|
|
|
|
with columns[1]:
|
|
|
|
count_button = st.button("Count Tokens", type='secondary')
|
|
|
|
with columns[2]:
|
|
|
|
clear_history = st.button("Clear History", type='secondary')
|
|
|
|
|
2023-05-16 13:13:51 +03:00
|
|
|
|
2023-05-16 12:50:47 +03:00
|
|
|
|
|
|
|
if clear_history:
|
2023-05-20 17:19:35 +03:00
|
|
|
# Clear memory in Langchain
|
|
|
|
memory.clear()
|
2023-05-16 12:50:47 +03:00
|
|
|
st.session_state['chat_history'] = []
|
|
|
|
st.experimental_rerun()
|
|
|
|
|
2023-05-13 00:05:31 +03:00
|
|
|
if button:
|
2023-05-16 12:50:47 +03:00
|
|
|
qa = None
|
2023-05-17 13:12:52 +03:00
|
|
|
if not st.session_state["overused"]:
|
|
|
|
add_usage(stats_db, "chat", "prompt" + question, {"model": model, "temperature": st.session_state['temperature']})
|
|
|
|
if model.startswith("gpt"):
|
|
|
|
logger.info('Using OpenAI model %s', model)
|
|
|
|
qa = ConversationalRetrievalChain.from_llm(
|
|
|
|
OpenAI(
|
|
|
|
model_name=st.session_state['model'], openai_api_key=openai_api_key, temperature=st.session_state['temperature'], max_tokens=st.session_state['max_tokens']), vector_store.as_retriever(), memory=memory, verbose=True)
|
|
|
|
elif anthropic_api_key and model.startswith("claude"):
|
|
|
|
logger.info('Using Anthropics model %s', model)
|
|
|
|
qa = ConversationalRetrievalChain.from_llm(
|
|
|
|
ChatAnthropic(
|
|
|
|
model=st.session_state['model'], anthropic_api_key=anthropic_api_key, temperature=st.session_state['temperature'], max_tokens_to_sample=st.session_state['max_tokens']), vector_store.as_retriever(), memory=memory, verbose=True, max_tokens_limit=102400)
|
|
|
|
|
|
|
|
|
|
|
|
st.session_state['chat_history'].append(("You", question))
|
2023-05-16 12:50:47 +03:00
|
|
|
|
2023-05-17 13:12:52 +03:00
|
|
|
# Generate model's response and add it to chat history
|
|
|
|
model_response = qa({"question": question})
|
|
|
|
logger.info('Result: %s', model_response)
|
2023-05-16 12:50:47 +03:00
|
|
|
|
2023-05-17 13:12:52 +03:00
|
|
|
st.session_state['chat_history'].append(("Quivr", model_response["answer"]))
|
2023-05-15 08:10:29 +03:00
|
|
|
|
2023-05-17 13:12:52 +03:00
|
|
|
# Display chat history
|
|
|
|
st.empty()
|
|
|
|
for speaker, text in st.session_state['chat_history']:
|
|
|
|
st.markdown(f"**{speaker}:** {text}")
|
|
|
|
else:
|
|
|
|
st.error("You have used all your free credits. Please try again later or self host.")
|
|
|
|
|
2023-05-15 08:10:29 +03:00
|
|
|
if count_button:
|
|
|
|
st.write(count_tokens(question, model))
|