| import streamlit as st |
| import os |
| import requests |
| from dotenv import load_dotenv |
|
|
| |
| from langchain.vectorstores import Chroma |
| from langchain_community.embeddings import HuggingFaceEmbeddings |
| from langchain_groq import ChatGroq |
| from langchain.chains import RetrievalQA |
| import zipfile |
|
|
| |
| load_dotenv() |
| groq_api_key = os.getenv("GROQ_API_KEY") |
|
|
| |
| @st.cache_resource |
| def init_chain(): |
| |
| |
| zip_file_path = "cspc_db.zip" |
| |
| |
| extract_to_path = "cspc_db" |
| |
| |
| if not os.path.exists(extract_to_path): |
| os.makedirs(extract_to_path) |
| |
| |
| with zipfile.ZipFile(zip_file_path, 'r') as zip_ref: |
| zip_ref.extractall(extract_to_path) |
| |
| model_kwargs = {'trust_remote_code': True} |
| embedding = HuggingFaceEmbeddings(model_name='nomic-ai/nomic-embed-text-v1.5', model_kwargs=model_kwargs) |
| llm = ChatGroq(groq_api_key=groq_api_key, model_name="llama3-70b-8192", temperature=0.2) |
| vectordb = Chroma(persist_directory='cspc_db', embedding_function=embedding) |
|
|
| |
| chain = RetrievalQA.from_chain_type(llm=llm, |
| chain_type="stuff", |
| retriever=vectordb.as_retriever(k=5), |
| return_source_documents=True) |
| return chain |
|
|
| |
| st.set_page_config( |
| page_title="CSPC Citizens Charter Conversational Agent", |
| page_icon="cspclogo.png" |
| ) |
|
|
| with st.sidebar: |
| st.title('CSPCean Conversational Agent') |
| st.subheader('Ask anything CSPC Related here!') |
|
|
| st.markdown('''**About CSPC:** |
| History, Core Values, Mission and Vision''') |
|
|
| st.markdown('''**Admission & Graduation:** |
| Apply, Requirements, Process, Graduation''') |
|
|
| st.markdown('''**Student Services:** |
| Scholarships, Orgs, Facilities''') |
|
|
| st.markdown('''**Academics:** |
| Degrees, Courses, Faculty''') |
|
|
| st.markdown('''**Officials:** |
| President, VPs, Deans, Admin''') |
|
|
| st.markdown(''' |
| Access the resources here: |
| |
| - [CSPC Citizen’s Charter](https://cspc.edu.ph/governance/citizens-charter/) |
| - [About CSPC](https://cspc.edu.ph/about/) |
| - [College Officials](https://cspc.edu.ph/college-officials/) |
| ''') |
| st.markdown('Team XceptionNet') |
|
|
| |
| if "messages" not in st.session_state: |
| st.session_state.chain = init_chain() |
| st.session_state.messages = [{"role": "assistant", "content": "How may I help you today?"}] |
|
|
| |
| def generate_response(prompt_input): |
| |
| result = '' |
| |
| |
| conversation_history = "" |
| recent_messages = st.session_state.messages[-3:] |
|
|
| for message in recent_messages: |
| conversation_history += f"{message['role']}: {message['content']}\n" |
| |
| |
| conversation_history += f"user: {prompt_input}\n" |
|
|
| |
| res = st.session_state.chain.invoke(conversation_history) |
| |
| |
| if res['result'].startswith('According to the provided context, '): |
| res['result'] = res['result'][35:] |
| res['result'] = res['result'][0].upper() + res['result'][1:] |
| elif res['result'].startswith('Based on the provided context, '): |
| res['result'] = res['result'][31:] |
| res['result'] = res['result'][0].upper() + res['result'][1:] |
| elif res['result'].startswith('According to the provided text, '): |
| res['result'] = res['result'][34:] |
| res['result'] = res['result'][0].upper() + res['result'][1:] |
| elif res['result'].startswith('According to the context, '): |
| res['result'] = res['result'][26:] |
| res['result'] = res['result'][0].upper() + res['result'][1:] |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
|
|
| |
| |
| return res['result'] |
|
|
| |
| for message in st.session_state.messages: |
| with st.chat_message(message["role"]): |
| st.write(message["content"]) |
|
|
| |
| if prompt := st.chat_input(placeholder="Ask a question..."): |
| |
| st.session_state.messages.append({"role": "user", "content": prompt}) |
| with st.chat_message("user"): |
| st.write(prompt) |
|
|
| |
| with st.chat_message("assistant"): |
| message_placeholder = st.empty() |
| with st.spinner("Generating response..."): |
| |
| response = generate_response(prompt) |
| message_placeholder.markdown(response) |
| st.session_state.messages.append({"role": "assistant", "content": response}) |
|
|
| |
| def clear_chat_history(): |
| |
| st.session_state.messages = [{"role": "assistant", "content": "How may I help you today?"}] |
| |
| |
| st.session_state.chain = init_chain() |
|
|
| |
| if "recent_user_messages" in st.session_state: |
| del st.session_state["recent_user_messages"] |
|
|
| st.sidebar.button('Clear Chat History', on_click=clear_chat_history) |