import datetime import os import dotenv import streamlit as st import spacy from langchain_core.tracers.langchain import LangChainTracer from langchain.callbacks.base import BaseCallbackHandler from langsmith.client import Client import web_crawler as wc import models as md import nlp_rag as nr import web_rag as wr dotenv.load_dotenv() nlp = nr.get_nlp_model() ls_tracer = LangChainTracer( project_name=os.getenv("LANGSMITH_PROJECT_NAME"), client=Client() ) class StreamHandler(BaseCallbackHandler): """Stream handler that appends tokens to container.""" 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) def create_links_markdown(sources_list): """ Create a markdown string for each source in the provided JSON. Args: sources_list (list): A list of dictionaries representing the sources. Each dictionary should have 'title', 'link', and 'snippet' keys. Returns: str: A markdown string with a bullet point for each source, including the title linked to the URL and the snippet. """ markdown_list = [] for source in sources_list: title = source['title'] link = source['link'] snippet = source['snippet'] markdown = f"- [{title}]({link})\n {snippet}" markdown_list.append(markdown) return "\n".join(markdown_list) st.set_page_config(layout="wide") st.title("🔍 Simple Search Agent 💬") if "models" not in st.session_state: models = [] if os.getenv("MISTRAL_API_KEY"): models.append("mistral") if os.getenv("HF_TOKEN"): models.append("huggingface") if os.getenv("COHERE_API_KEY"): models.append("cohere") if os.getenv("FIREWORKS_API_KEY"): models.append("fireworks") if os.getenv("TOGETHER_API_KEY"): models.append("together") if os.getenv("COHERE_API_KEY"): models.append("cohere") if os.getenv("OPENAI_API_KEY"): models.append("openai") if os.getenv("GROQ_API_KEY"): models.append("groq") if os.getenv("OLLAMA_API_KEY"): models.append("ollama") if os.getenv("CREDENTIALS_PROFILE_NAME"): models.append("bedrock") st.session_state["models"] = models with st.sidebar.expander("Options", expanded=False): model_provider = st.selectbox("Model provider 🧠", st.session_state["models"]) temperature = st.slider("Model temperature 🌡️", 0.0, 1.0, 0.1, help="The higher the more creative") max_pages = st.slider("Max pages to retrieve 🔍", 1, 20, 10, help="How many web pages to retrieve from the internet") top_k_documents = st.slider("Nbr of doc extracts to consider 📄", 1, 20, 10, help="How many of the top extracts to consider") with st.sidebar.expander("Links", expanded=False): links_md = st.markdown("") if "messages" not in st.session_state: st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}] for message in st.session_state.messages: st.chat_message(message["role"]).write(message["content"]) if message["role"] == "assistant" and 'message_id' in message: st.download_button( label="Download", data=message["content"], file_name=f"{message['message_id']}.txt", mime="text/plain" ) if prompt := st.chat_input("Enter your instructions..." ): st.chat_message("user").write(prompt) st.session_state.messages.append({"role": "user", "content": prompt}) chat = md.get_model(model_provider, temperature) with st.status("Thinking", expanded=True): st.write("I first need to do some research") optimized_search_query = wr.optimize_search_query(chat, query=prompt, callbacks=[ls_tracer]) st.write(f"I should search the web for: {optimized_search_query}") sources = wc.get_sources(optimized_search_query, max_pages=max_pages) links_md.markdown(create_links_markdown(sources)) st.write(f"I'll now retrieve the {len(sources)} webpages and documents I found") contents = wc.get_links_contents(sources, use_selenium=False) st.write(f"Reading through the {len(contents)} sources I managed to retrieve") chunks = nr.recursive_split_documents(contents) relevant_results = nr.semantic_search(optimized_search_query, chunks, nlp, top_n=top_k_documents) st.write(f"I collected {len(relevant_results)} chunks of data and I can now answer") rag_prompt = nr.build_rag_prompt(query=prompt, relevant_results=relevant_results) with st.chat_message("assistant"): st_cb = StreamHandler(st.empty()) response = "" for chunk in chat.stream(rag_prompt, config={"callbacks": [ls_tracer]}): if isinstance(chunk, dict): chunk_text = chunk.get('text') or chunk.get('content', '') elif isinstance(chunk, str): chunk_text = chunk elif hasattr(chunk, 'content'): chunk_text = chunk.content else: chunk_text = str(chunk) if isinstance(chunk_text, list): chunk_text = ' '.join( item['text'] if isinstance(item, dict) and 'text' in item else str(item) for item in chunk_text if item is not None ) elif chunk_text is not None: chunk_text = str(chunk_text) else: continue response += chunk_text st_cb.on_llm_new_token(chunk_text) response = response.strip() message_id = f"{prompt}{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}" st.session_state.messages.append({"role": "assistant", "content": response}) if st.session_state.messages[-1]["role"] == "assistant": st.download_button( label="Download", data=st.session_state.messages[-1]["content"], file_name=f"{message_id}.txt", mime="text/plain" )