Spaces:
Runtime error
Runtime error
File size: 13,811 Bytes
6095294 3aaa15d 6095294 ba9021e 6095294 | 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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | # You can find this code for Chainlit python streaming here (https://docs.chainlit.io/concepts/streaming/python)
# OpenAI Chat completion
import os
import getpass
from openai import AsyncOpenAI
import chainlit as cl
from chainlit.prompt import Prompt, PromptMessage
from chainlit.playground.providers import ChatOpenAI
from langchain_community.vectorstores import FAISS
from dotenv import load_dotenv
from uuid import uuid4
from langchain.tools.retriever import create_retriever_tool
from langgraph.prebuilt import ToolExecutor
import operator
from typing import Annotated, Sequence, TypedDict
import json
from langchain import hub
from langchain.output_parsers import PydanticOutputParser
from langchain.prompts import PromptTemplate
from langchain.tools.render import format_tool_to_openai_function
from langchain_core.utils.function_calling import convert_to_openai_tool
from langchain_core.messages import BaseMessage, FunctionMessage, HumanMessage
from langchain.output_parsers.openai_tools import PydanticToolsParser
from langchain_core.pydantic_v1 import BaseModel, Field
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
from langgraph.prebuilt import ToolInvocation
from langchain_core.output_parsers import StrOutputParser
from langgraph.graph import END, StateGraph
import pprint
load_dotenv()
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_PROJECT"] = f"AIE1 - AquaExpert - {uuid4().hex[0:8]}"
@cl.on_chat_start # marks a function that will be executed at the start of a user session
async def start_chat():
embeddings = OpenAIEmbeddings(
model="text-embedding-3-small"
)
vr_vector_store = FAISS.load_local("faiss_visitreports_index", embeddings, allow_dangerous_deserialization=True)
retriever_visitreports = vr_vector_store.as_retriever()
ct_vector_store = FAISS.load_local("faiss_coolingtower_index", embeddings, allow_dangerous_deserialization=True)
retriever_coolingtower = ct_vector_store.as_retriever()
cl_vector_store = FAISS.load_local("faiss_closedloop_index", embeddings, allow_dangerous_deserialization=True)
retriever_closedloop = cl_vector_store.as_retriever()
customer_reports = create_retriever_tool(
retriever_visitreports,
"retrieve_reports_info",
"Search and return specific information stored in cooling tower and closed-loop system service reports. "
"This includes but is not limited to chemical treatment details, operational parameters, maintenance activities, "
"system performance data, and recommendations for adjustments. It allows users to query past records for "
"conductivity levels, pH balances, inhibitor dosages, corrosion and scaling indices, microbial counts, and more. "
"The retriever can also provide historical trends, equipment status updates, and any flagged issues from the visit logs. "
"Utilize this tool to gain insights into water quality, chemical balances, and equipment health as reported by service technicians."
)
cooling_tower_procedures = create_retriever_tool(
retriever_coolingtower,
"retrieve_coolingtower_procedures",
"Search and return specific information stored in the database of cooling tower procedures. "
"This tool is adept at extracting detailed procedural documentation, inspection guidelines, "
"and maintenance protocols for cooling towers. Users can retrieve comprehensive steps for "
"routine checks and complex maintenance tasks, including but not limited to film fill inspections, "
"distribution deck examinations, general structural assessments, cold water basin inspections, "
"chemical descaling processes, and rust removal techniques. It serves as an indispensable resource for "
"ensuring adherence to industry best practices and maintaining the operational integrity of cooling tower systems. "
)
closed_loop_procedures = create_retriever_tool(
retriever_closedloop,
"retrieve_closedloop_procedures",
"Search and return specific information stored in documentation and reports relevant to closed-loop system maintenance and treatment procedures. "
"This tool is designed to provide access to a comprehensive set of guidelines and best practices for maintaining closed-loop systems, including but not limited to disinfection processes, descaling operations, and iron deposit removal. "
"Whether you're looking for step-by-step instructions for small closed loop disinfection or methods for utilizing Magcare 300 in descaling and deposit removal, this retriever tool can efficiently locate and present the necessary procedures from the vector database. "
)
tools = [customer_reports, cooling_tower_procedures, closed_loop_procedures]
tool_executor = ToolExecutor(tools)
class AgentState(TypedDict):
messages: Annotated[Sequence[BaseMessage], operator.add]
def should_retrieve(state):
"""
Decides whether the agent should retrieve more information or end the process.
This function checks the last message in the state for a function call. If a function call is
present, the process continues to retrieve information. Otherwise, it ends the process.
Args:
state (messages): The current state
Returns:
str: A decision to either "continue" the retrieval process or "end" it
"""
print("---DECIDE TO RETRIEVE---")
messages = state["messages"]
last_message = messages[-1]
# If there is no function call, then we finish
if "function_call" not in last_message.additional_kwargs:
print("---DECISION: DO NOT RETRIEVE / DONE---")
return "end"
# Otherwise there is a function call, so we continue
else:
print("---DECISION: RETRIEVE---")
return "continue"
def grade_documents(state):
"""
Determines whether the retrieved documents are relevant to the question.
Args:
state (messages): The current state
Returns:
str: A decision for whether the documents are relevant or not
"""
print("---CHECK RELEVANCE---")
# Data model
class grade(BaseModel):
"""Binary score for relevance check."""
binary_score: str = Field(description="Relevance score 'yes' or 'no'")
# LLM
model = ChatOpenAI(temperature=0, model="gpt-4-0125-preview", streaming=True)
# Tool
grade_tool_oai = convert_to_openai_tool(grade)
# LLM with tool and enforce invocation
llm_with_tool = model.bind(
tools=[convert_to_openai_tool(grade_tool_oai)],
tool_choice={"type": "function", "function": {"name": "grade"}},
)
# Parser
parser_tool = PydanticToolsParser(tools=[grade])
# Prompt
prompt = PromptTemplate(
template="""You are a grader assessing relevance of a retrieved document to a user question. \n
Here is the retrieved document: \n\n {context} \n\n
Here is the user question: {question} \n
If the document contains keyword(s) or semantic meaning related to the user question, grade it as relevant. \n
Give a binary score 'yes' or 'no' score to indicate whether the document is relevant to the question.""",
input_variables=["context", "question"],
)
# Chain
chain = prompt | llm_with_tool | parser_tool
messages = state["messages"]
last_message = messages[-1]
question = messages[0].content
docs = last_message.content
score = chain.invoke(
{"question": question,
"context": docs}
)
grade = score[0].binary_score
if grade == "yes":
print("---DECISION: DOCS RELEVANT---")
return "yes"
else:
print("---DECISION: DOCS NOT RELEVANT---")
print(grade)
return "no"
### Nodes
def agent(state):
"""
Invokes the agent model to generate a response based on the current state. Given
the question, it will decide to retrieve using the retriever tool, or simply end.
Args:
state (messages): The current state
Returns:
dict: The updated state with the agent response apended to messages
"""
print("---CALL AGENT---")
messages = state["messages"]
model = ChatOpenAI(temperature=0, streaming=True, model="gpt-4-0125-preview")
functions = [format_tool_to_openai_function(t) for t in tools]
model = model.bind_functions(functions)
response = model.invoke(messages)
# We return a list, because this will get added to the existing list
return {"messages": [response]}
def retrieve(state):
"""
Uses tool to execute retrieval.
Args:
state (messages): The current state
Returns:
dict: The updated state with retrieved docs
"""
print("---EXECUTE RETRIEVAL---")
messages = state["messages"]
# Based on the continue condition
# we know the last message involves a function call
last_message = messages[-1]
# We construct an ToolInvocation from the function_call
action = ToolInvocation(
tool=last_message.additional_kwargs["function_call"]["name"],
tool_input=json.loads(
last_message.additional_kwargs["function_call"]["arguments"]
),
)
print("Retrieve Action: ", action)
# We call the tool_executor and get back a response
response = tool_executor.invoke(action)
function_message = FunctionMessage(content=str(response), name=action.tool)
# We return a list, because this will get added to the existing list
return {"messages": [function_message]}
def rewrite(state):
"""
Transform the query to produce a better question.
Args:
state (messages): The current state
Returns:
dict: The updated state with re-phrased question
"""
print("---TRANSFORM QUERY---")
messages = state["messages"]
question = messages[0].content
msg = [HumanMessage(
content=f""" \n
Look at the input and try to reason about the underlying semantic intent / meaning. \n
Here is the initial question:
\n ------- \n
{question}
\n ------- \n
Formulate an improved question: """,
)]
# Grader
model = ChatOpenAI(temperature=0, model="gpt-4-0125-preview", streaming=True)
response = model.invoke(msg)
return {"messages": [response]}
def generate(state):
"""
Generate answer
Args:
state (messages): The current state
Returns:
dict: The updated state with re-phrased question
"""
print("---GENERATE---")
messages = state["messages"]
question = messages[0].content
last_message = messages[-1]
question = messages[0].content
docs = last_message.content
# Prompt
prompt = hub.pull("rlm/rag-prompt")
# LLM
llm = ChatOpenAI(model_name="gpt-4-0125-preview", temperature=0, streaming=True)
# Post-processing
def format_docs(docs):
return "\n\n".join(doc.page_content for doc in docs)
# Chain
rag_chain = prompt | llm | StrOutputParser()
# Run
response = rag_chain.invoke({"context": docs, "question": question})
return {"messages": [response]}
# Define a new graph
workflow = StateGraph(AgentState)
# Define the nodes we will cycle between
workflow.add_node("agent", agent) # agent
workflow.add_node("retrieve", retrieve) # retrieval
workflow.add_node("rewrite", rewrite) # retrieval
workflow.add_node("generate", generate) # retrieval
# Call agent node to decide to retrieve or not
workflow.set_entry_point("agent")
# Decide whether to retrieve
workflow.add_conditional_edges(
"agent",
# Assess agent decision
should_retrieve,
{
# Call tool node
"continue": "retrieve",
"end": END,
},
)
# Edges taken after the `action` node is called.
workflow.add_conditional_edges(
"retrieve",
# Assess agent decision
grade_documents,
{
"yes": "generate",
"no": "rewrite",
},
)
workflow.add_edge("generate", END)
workflow.add_edge("rewrite", "agent")
# Compile
app = workflow.compile()
def convert_inputs(input_object):
return {"messages" : [HumanMessage(content=input_object["question"])]}
def parse_output(input_state):
return input_state["messages"][-1]
agent_chain = convert_inputs | app | parse_output
cl.user_session.set("agent_chain", agent_chain)
@cl.on_message # marks a function that should be run each time the chatbot receives a message from a user
async def main(message: cl.Message):
agent_chain = cl.user_session.get("agent_chain")
print(message.content)
msg = cl.Message(content="")
result = agent_chain.invoke({"question" : message.content})
if hasattr(result, 'content'):
# If 'result' is an object with a 'content' attribute
text_content = result.content
print("object")
elif isinstance(result, dict) and 'content' in result:
# If 'result' is a dictionary and has a 'content' key
text_content = result['content']
print("dict")
else:
# Otherwise, assume 'result' is already the text content
text_content = result
print("text")
# Now, 'text_content' holds the actual text, so assign it to 'msg.content'
msg.content = text_content
# Send and close the message stream
await msg.send()
|