import streamlit as st import streamlit_chat import json import os from pymongo import MongoClient from bson import ObjectId from dotenv import load_dotenv import pinecone from langchain_google_genai import GoogleGenerativeAIEmbeddings from langchain_google_genai import ChatGoogleGenerativeAI from langchain_core.prompts import ChatPromptTemplate import re st.set_page_config(layout="wide", page_title="IOCL Chatbot", page_icon="📄") load_dotenv() import logging from pytz import timezone, utc from datetime import datetime logging.basicConfig( level=logging.DEBUG, # This is for your application logs format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', datefmt='%Y-%m-%d %H:%M:%S' ) # Suppress pymongo debug logs by setting the pymongo logger to a higher level pymongo_logger = logging.getLogger('pymongo') pymongo_logger.setLevel(logging.WARNING) PINECONE_API = os.getenv("PINECONE_API_KEY") pc = pinecone.Pinecone( api_key=PINECONE_API ) index_name = "iocl2" index = pc.Index(index_name) # MongoDB connection setup MONGO_URI = os.getenv("MONGO_URI") client = MongoClient(MONGO_URI) db = client["chatbot_db"] chat_sessions = db["chat_sessions3"] # Set LLM models FLASH_API = os.getenv("FLASH_API") embeddings = GoogleGenerativeAIEmbeddings(model="models/embedding-001", google_api_key=FLASH_API) llm = ChatGoogleGenerativeAI(model="gemini-1.5-flash", temperature=0, max_tokens=None, google_api_key=FLASH_API) # Load the extracted JSON data # Initialize session state for current chat session if 'current_chat_id' not in st.session_state: st.session_state['current_chat_id'] = None if 'chat_history' not in st.session_state: st.session_state['chat_history'] = [] if 'regenerate' not in st.session_state: st.session_state['regenerate'] = False # Track regenerate button state # Function to create a new chat session in MongoDB def create_new_chat_session(): # Get the current time in IST ind_time = datetime.now(timezone("Asia/Kolkata")) # Convert IST time to UTC for storing in MongoDB utc_time = ind_time.astimezone(utc) new_session = { "created_at": utc_time, # Store in UTC "messages": [] # Empty at first } session_id = chat_sessions.insert_one(new_session).inserted_id return str(session_id) # Function to load a chat session by MongoDB ID # Function to load the chat session by MongoDB ID (load full history for display) def load_chat_session(session_id): session = chat_sessions.find_one({"_id": ObjectId(session_id)}) if session: # Load the full chat history (no slicing here) st.session_state['chat_history'] = session['messages'] # Function to update chat session in MongoDB (store last 15 question-answer pairs) # Function to update chat session in MongoDB (store entire chat history) def update_chat_session(session_id, question, answer, improved_question): # Append the new question-answer pair to the full messages array chat_sessions.update_one( {"_id": ObjectId(session_id)}, {"$push": { "messages": {"$each": [{"question": question, 'improved_question': improved_question, "answer": answer}]}}} ) # Function to replace the last response in MongoDB def replace_last_response_in_mongo(session_id, new_answer): last_message_index = len(st.session_state['chat_history']) - 1 if last_message_index >= 0: # Replace the last response in MongoDB chat_sessions.update_one( {"_id": ObjectId(session_id)}, {"$set": {f"messages.{last_message_index}.answer": new_answer}} ) # Function to regenerate the response def regenerate_response(): try: if st.session_state['chat_history']: last_question = st.session_state['chat_history'][-1]["question"] # Get the last question # Exclude the last response from the history when sending the question to LLM previous_history = st.session_state['chat_history'][:-1] # Exclude the last Q&A pair with st.spinner("Please wait, regenerating the response!"): # Generate a new response for the last question using only the previous history query = get_context_from_messages(last_question, previous_history) if query: logging.info(f"Extracted query is :{query}\n") extracted_query = get_query_from_llm_answer(query) if extracted_query: query = extracted_query else: query = last_question query_embedding = embeddings.embed_query(query) search_results = index.query(vector=query_embedding, top_k=10, include_metadata=True) matches = search_results['matches'] content = "" for i, match in enumerate(matches): chunk = match['metadata']['chunk'] url = match['metadata']['url'] content += f"chunk{i}: {chunk}\n" + f"url{i}: {url}\n" new_reply = generate_summary(content, query, previous_history) st.session_state['chat_history'][-1]["answer"] = new_reply # Update MongoDB with the new response if st.session_state['current_chat_id']: replace_last_response_in_mongo(st.session_state['current_chat_id'], new_reply) st.session_state['regenerate'] = False # Reset regenerate flag st.rerun() except Exception as e: st.error("Error occured in Regenerating response, please try again later.") def generate_summary(chunks, query, chat_history): try: # Limit the history sent to the LLM to the latest 3 question-answer pairs limited_history = chat_history[-3:] if len(chat_history) > 3 else chat_history # Create conversation history for the LLM, only using the last 15 entries history_text = "\n".join([f"User: {q['improved_question']}\nLLM: {q['answer']}" for q in limited_history]) # Define the system and user prompts including the limited history prompt = ChatPromptTemplate.from_messages([ ("system", """You are a chatbot specializing in answering queries related to Indian Oil Corporation Limited (IOCL). You will be provided with chunks of data from the IOCL website to answer user queries. Each chunk will include associated URLs, You must give the url of the chunks which you are using to answer the query. Key Guidelines: 1.If the user query is not clear, or you think multiple answers are possbile, you should ask for clarification with proper reasoning. 2.Do not mention chunk name in any of your replies. 2.Detailed and Clear: Provide thorough, clear, and concise responses without omitting relevant information from the data chunks. 3.Natural Summarization: When answering, you must not directly quote chunk names,formats. Instead, summarize or interpret the data naturally and conversationally. 4.Use Conversation History: Refer back to the conversation history to maintain consistency and build on prior responses, if applicable. 5.Ignore Unanswered Queries: If the conversation history contains previous responses like "The answer is not available in the context," disregard them when formulating your current response. 6.Graceful Handling of General Queries: If a user sends greetings, introduction, salutations, or unrelated questions, respond appropriately and conversationally. 7.Include Source URLs: Always include the URLs from the relevant chunks of data that you're using to answer the query. 8.Thoroughly looks for answer to the query in the provided chunks before replying, if you feel the query is irrelevant or answer is not present then you can ask user to clarify or tell that it cannot be answered. 9.Sometimes chunks might contain very less data still use it if its relevant. """), ("human", f''' "Query":\n {query}\n Below are the pinecone chunks that should be used to answer the user query: "Extracted Data": \n{chunks}\n Below is the previous conversation history: "Previous Conversation History": \n{history_text}\n ''' ) ]) # Chain the prompt with LLM for response generation chain = prompt | llm result = chain.invoke({"Query": query, "Extracted Data": chunks, "Previous Conversation History": history_text}) # Return the generated response logging.info(f"LLM answer is :{result}") return result.content except Exception as e: st.error(f"Error answering your question: {e}") return None def get_context_from_messages(query, chat_history): try: logging.info(f"Getting context from original query: {query}") # Limit the history sent to the LLM to the latest 3 question-answer pairs limited_history = chat_history[-3:] if len(chat_history) > 3 else chat_history # Create conversation history for the LLM, only using the last 15 entries history_text = "\n".join([f"User: {q['question']}\nLLM: {q['answer']}" for q in limited_history]) # Define the system and user prompts including the limited history prompt = ChatPromptTemplate.from_messages([ ("system", """"I will provide you with a user query and up to the last 3 messages from the chat history which includes both questions and answers.Your task is to understand the user query nicely and restructure it if required such that it makes complete sense and is completely self contained. The provided queries are related to Indian Oil Corporation limited (IOCL). 1. If the query is a follow-up, use the provided chat history to reconstruct a well-defined, contextually complete query that can stand alone." 2. if the query is self contained, if applicable try to improve it to make is coherent. 3. if the user query is salutations, greetings or not relevant in that case give the query back as it is. I have provided an output format below, stricly follow it. Do not give anything else other than just the output. expected_output_format: "query: String or None" """), ("human", f''' "Query":\n {query}\n "Previous Conversation History": \n{history_text}\n ''' ) ]) # Chain the prompt with LLM for response generation chain = prompt | llm result = chain.invoke({"Query": query, "Previous Conversation History": history_text}) logging.info(f"llm answer for query extraction is :{result}") # Return the generated response return result.content except Exception as e: logging.error(f"exception occured in getting query from original query :{e}") return None def get_query_from_llm_answer(llm_output): match = re.search(r'query:\s*(.*)', llm_output) if match: query = match.group(1).strip().strip('"') # Remove leading/trailing spaces and quotes return None if query.lower() == "none" else query return None # Sidebar for showing chat sessions and creating new sessions st.sidebar.header("Chat Sessions") # Button for creating a new chat if st.sidebar.button("New Chat"): new_chat_id = create_new_chat_session() st.session_state['current_chat_id'] = new_chat_id st.session_state['chat_history'] = [] # List existing chat sessions with delete button (dustbin icon) existing_sessions = chat_sessions.find().sort("created_at", -1) for session in existing_sessions: session_id = str(session['_id']) # Retrieve stored UTC time and convert it to IST for display utc_time = session['created_at'] ist_time = utc_time.replace(tzinfo=utc).astimezone(timezone("Asia/Kolkata")) session_date = ist_time.strftime("%Y-%m-%d %H:%M:%S") # Format for display col1, col2 = st.sidebar.columns([8, 1]) with col1: if st.button(f"Session {session_date}", key=session_id): st.session_state['current_chat_id'] = session_id load_chat_session(session_id) # Display delete icon (dustbin) with col2: if st.button("🗑️", key=f"delete_{session_id}"): chat_sessions.delete_one({"_id": ObjectId(session_id)}) st.rerun() # Refresh the app to remove the deleted session from the sidebar # Main chat interface st.markdown('