Spaces:
Sleeping
Sleeping
File size: 41,660 Bytes
99bbd9b c9e9e4d 99bbd9b c9e9e4d 99bbd9b c9e9e4d 99bbd9b c9e9e4d 99bbd9b c9e9e4d 99bbd9b 25ef9d2 b7755d4 25ef9d2 99bbd9b | 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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 | # from langchain_community.utilities import SQLDatabase
# from langchain_groq import ChatGroq
# from langgraph.graph import StateGraph, END, START
# from langchain_core.messages import AIMessage, ToolMessage, AnyMessage, HumanMessage
# from langgraph.graph.message import AnyMessage, add_messages
# from langchain_core.tools import tool
# from typing import Annotated, Literal, TypedDict, Any
# from pydantic import BaseModel, Field
# from langchain_core.runnables import RunnableLambda, RunnableWithFallbacks
# from langgraph.prebuilt import ToolNode
# from langchain_core.prompts import ChatPromptTemplate
# from langchain_community.agent_toolkits import SQLDatabaseToolkit
# from dotenv import load_dotenv
# import os
# from IPython.display import display
# import PIL
# from langgraph.errors import GraphRecursionError
# import os
# import io
# from typing import Annotated, Any, TypedDict
# from IPython.display import Image, display
# from langchain_core.runnables.graph import MermaidDrawMethod
# from typing import Optional
# class SQLAgent:
# def __init__(self, model="llama3-70b-8192"):
# load_dotenv()
# # Initialize instance variables
# self.db = None
# self.toolkit = None
# self.tools = None
# self.list_tables_tool = None
# self.sql_db_query = None
# self.get_schema_tool = None
# self.app = None
# # Setting up LLM
# self.llm = ChatGroq(model=model)
# # Register the tool method
# self.query_to_database = self._create_query_tool()
# def _create_query_tool(self):
# """Create the query tool bound to this instance"""
# print("creating _create_query_tool")
# @tool
# def query_to_database(query: str) -> str:
# """
# Execute a SQL query against the database and return the result.
# If the query is invalid or returns no result, an error message will be returned.
# In case of an error, the user is advised to rewrite the query and try again.
# """
# if self.db is None:
# return "Error: Database connection not established. Please set up the connection first."
# result = self.db.run_no_throw(query)
# if not result:
# return "Error: Query failed. Please rewrite your query and try again."
# return result
# return query_to_database
# def setup_database_connection(self, connection_string: str):
# """Set up database connection and initialize tools"""
# try:
# # Initialize database connection
# self.db = SQLDatabase.from_uri(connection_string)
# print("Database connection successful!")
# try:
# # Initialize toolkit and tools
# self.toolkit = SQLDatabaseToolkit(db=self.db, llm=self.llm)
# self.tools = self.toolkit.get_tools()
# for tool in self.tools:
# print(f"Initialized tool: {tool.name}")
# # Create instances of the tools
# self.list_tables_tool = next((tool for tool in self.tools if tool.name == "sql_db_list_tables"), None)
# self.sql_db_query = next((tool for tool in self.tools if tool.name == "sql_db_query"), None)
# self.get_schema_tool = next((tool for tool in self.tools if tool.name == "sql_db_schema"), None)
# if not all([self.list_tables_tool, self.sql_db_query, self.get_schema_tool]):
# raise ValueError("Failed to initialize one or more required database tools")
# # Initialize workflow and compile it into an app
# self.initialize_workflow()
# return self.db
# except Exception as e:
# print(f"Error initializing tools and workflow: {str(e)}")
# raise ValueError(f"Failed to initialize database tools: {str(e)}")
# except ImportError as e:
# print(f"Database driver import error: {str(e)}")
# raise ValueError(f"Missing database driver or invalid database type: {str(e)}")
# except ValueError as e:
# print(f"Invalid connection string or configuration: {str(e)}")
# raise
# except Exception as e:
# print(f"Unexpected error during database connection: {str(e)}")
# raise ValueError(f"Failed to establish database connection: {str(e)}")
# def initialize_workflow(self):
# """Initialize the workflow graph"""
# print("Intializing Workflow....")
# # Binding tools with LLM
# llm_to_get_schema = self.llm.bind_tools([self.get_schema_tool]) if self.get_schema_tool else None
# llm_with_tools = self.llm.bind_tools([self.query_to_database])
# class State(TypedDict):
# messages: Annotated[list[AnyMessage], add_messages]
# class SubmitFinalAnswer(BaseModel):
# final_answer: str = Field(..., description="The final answer to the user")
# llm_with_final_answer = self.llm.bind_tools([SubmitFinalAnswer])
# def handle_tool_error(state: State):
# error = state.get("error")
# tool_calls = state["messages"][-1].tool_calls
# return {"messages": [ToolMessage(content=f"Error: {repr(error)}\n please fix your mistakes.", tool_call_id=tc["id"],) for tc in tool_calls]}
# def create_node_from_tool_with_fallback(tools: list) -> RunnableWithFallbacks[Any, dict]:
# return ToolNode(tools).with_fallbacks([RunnableLambda(handle_tool_error)], exception_key="error")
# list_tables = create_node_from_tool_with_fallback([self.list_tables_tool]) if self.list_tables_tool else None
# get_schema = create_node_from_tool_with_fallback([self.get_schema_tool]) if self.get_schema_tool else None
# query_database = create_node_from_tool_with_fallback([self.query_to_database])
# query_check_system = """You are a SQL expert. Carefully review the SQL query for common mistakes, including:
# Issues with NULL handling (e.g., NOT IN with NULLs)
# Improper use of UNION instead of UNION ALL
# Incorrect use of BETWEEN for exclusive ranges
# Data type mismatches or incorrect casting
# Quoting identifiers improperly
# Incorrect number of arguments in functions
# Errors in JOIN conditions
# If you find any mistakes, rewrite the query to fix them. If it's correct, reproduce it as is."""
# query_check_prompt = ChatPromptTemplate.from_messages([("system", query_check_system), ("placeholder", "{messages}")])
# check_generated_query = query_check_prompt | llm_with_tools
# def check_the_given_query(state: State):
# return {"messages": [check_generated_query.invoke({"messages": [state["messages"][-1]]})]}
# query_gen_system_prompt = """You are a SQL expert with a strong attention to detail.Given an input question, output a syntactically correct SQLite query to run, then look at the results of the query and return the answer.
# 1. DO NOT call any tool besides SubmitFinalAnswer to submit the final answer.
# When generating the query:
# 2. Output the SQL query that answers the input question without a tool call.
# 3. Unless the user specifies a specific number of examples they wish to obtain, always limit your query to at most 5 results.
# 4. You can order the results by a relevant column to return the most interesting examples in the database.
# 5. Never query for all the columns from a specific table, only ask for the relevant columns given the question.
# 6. If you get an error while executing a query, rewrite the query and try again.
# 7. If you get an empty result set, you should try to rewrite the query to get a non-empty result set.
# 8. NEVER make stuff up if you don't have enough information to answer the query... just say you don't have enough information.
# 9. If you have enough information to answer the input question, simply invoke the appropriate tool to submit the final answer to the user.
# 10. DO NOT make any DML statements (INSERT, UPDATE, DELETE, DROP etc.) to the database. Do not return any sql query except answer."""
# query_gen_prompt = ChatPromptTemplate.from_messages([("system", query_gen_system_prompt), ("placeholder", "{messages}")])
# query_generator = query_gen_prompt | llm_with_final_answer
# def first_tool_call(state: State) -> dict[str, list[AIMessage]]:
# return {"messages": [AIMessage(content="", tool_calls=[{"name": "sql_db_list_tables", "args": {}, "id": "tool_abcd123"}])]}
# def generation_query(state: State):
# message = query_generator.invoke(state)
# tool_messages = []
# if message.tool_calls:
# for tc in message.tool_calls:
# if tc["name"] != "SubmitFinalAnswer":
# tool_messages.append(
# ToolMessage(
# content=f"Error: The wrong tool was called: {tc['name']}. Please fix your mistakes. Remember to only call SubmitFinalAnswer to submit the final answer. Generated queries should be outputted WITHOUT a tool call.",
# tool_call_id=tc["id"],
# )
# )
# else:
# tool_messages = []
# return {"messages": [message] + tool_messages}
# def should_continue(state: State):
# messages = state["messages"]
# last_message = messages[-1]
# if getattr(last_message, "tool_calls", None):
# # Check if the tool call is SubmitFinalAnswer
# if len(last_message.tool_calls) > 0 and last_message.tool_calls[0]["name"] == "SubmitFinalAnswer":
# return END
# else:
# # Wrong tool called, route to error handling (not implemented here)
# return "query_gen" # Or a dedicated error node
# elif last_message.content.startswith("Error:"):
# return "query_gen"
# else:
# return "correct_query"
# def llm_get_schema(state: State):
# response = llm_to_get_schema.invoke(state["messages"])
# return {"messages": [response]}
# # Create workflow
# workflow = StateGraph(State)
# workflow.add_node("first_tool_call", first_tool_call)
# workflow.add_node("list_tables_tool", list_tables)
# workflow.add_node("get_schema_tool", get_schema)
# workflow.add_node("model_get_schema", llm_get_schema)
# workflow.add_node("query_gen", generation_query)
# workflow.add_node("correct_query", check_the_given_query)
# workflow.add_node("execute_query", query_database)
# workflow.add_edge(START, "first_tool_call")
# workflow.add_edge("first_tool_call", "list_tables_tool")
# workflow.add_edge("list_tables_tool", "model_get_schema")
# workflow.add_edge("model_get_schema", "get_schema_tool")
# workflow.add_edge("get_schema_tool", "query_gen")
# workflow.add_conditional_edges("query_gen", should_continue, {END: END, "correct_query": "correct_query", "query_gen": "query_gen"})
# workflow.add_edge("correct_query", "execute_query")
# workflow.add_edge("execute_query", "query_gen")
# # Compile the workflow into an executable app
# self.app = workflow.compile()
# # # Generate the graph image as bytes
# # image_bytes = self.app.get_graph().draw_mermaid_png()
# # # Convert bytes to an Image object
# # image = Image.open(io.BytesIO(image_bytes))
# # # Save the image to a file
# # image.save("workflow_graph.png")
# # print(f"Workflow graph saved")
# def is_query_relevant(self, query: str) -> bool:
# """Check if the query is relevant to the database using the LLM."""
# # Retrieve the schema of the relevant tables
# if self.list_tables_tool:
# relevant_tables = self.list_tables_tool.invoke("")
# # print(relevant_tables)
# table_list= relevant_tables.split(", ")
# print(table_list)
# # print(agent.get_schema_tool.invoke(table_list[0]))
# schema = ""
# for table in table_list:
# schema+= self.get_schema_tool.invoke(table)
# print(schema)
# # if self.get_schema_tool:
# # schema_response = self.get_schema_tool.invoke({})
# # table_schema = schema_response.content # Assuming this returns the schema as a string
# relevance_check_prompt = (
# """You are an expert SQL agent which takes user query in Natural language and find out it have releavnce with the given schema or not. Please determine if the following query is related to a database.Here is the schema of the tables present in database:\n{schema}\n\n. If the query related to given schema respond with 'yes'. Here is the query: {query}. Answer with only 'yes' or 'no'."""
# ).format(schema=relevant_tables, query=query)
# response = self.llm.invoke([{"role": "user", "content": relevance_check_prompt}])
# # Assuming the LLM returns a simple 'yes' or 'no'
# return response.content == "yes"
# def execute_query(self, query: str):
# """Execute a query through the workflow"""
# if self.db is None:
# raise ValueError("Database connection not established. Please set up the connection first.")
# if self.app is None:
# raise ValueError("Workflow not initialized. Please set up the connection first.")
# # First, handle simple queries like "list tables" directly
# query_lower = query.lower()
# if any(phrase in query_lower for phrase in ["list all the tables", "show tables", "name of tables",
# "which tables are present", "how many tables", "list all tables"]):
# if self.list_tables_tool:
# tables = self.list_tables_tool.invoke("")
# return f"The tables in the database are: {tables}"
# else:
# return "Error: Unable to list tables. The list_tables_tool is not initialized."
# if not self.is_query_relevant(query):
# print("Not relevent to database.")
# # If not relevant, let the LLM answer the question directly
# non_relevant_prompt = (
# """You are an expert SQL agent created by Kshitij Kumrawat. You can only assist with questions related to databases so repond the user with the following example resonse and Do not answer any questions that are not related to databases.:
# Please ask a question that pertains to database operations, such as querying tables, retrieving data, or understanding the database schema. """
# )
# # Invoke the LLM with the non-relevant prompt
# response = self.llm.invoke([{"role": "user", "content": non_relevant_prompt}])
# # print(response.content)
# return response.content
# # If relevant, proceed with the SQL workflow
# response = self.app.invoke({"messages": [HumanMessage(content=query, role="user")]})
# # More robust final answer extraction
# if (
# response
# and response["messages"]
# and response["messages"][-1].tool_calls
# and len(response["messages"][-1].tool_calls) > 0
# and "args" in response["messages"][-1].tool_calls[0]
# and "final_answer" in response["messages"][-1].tool_calls[0]["args"]
# ):
# return response["messages"][-1].tool_calls[0]["args"]["final_answer"]
# else:
# return "Error: Could not extract final answer."
from langchain_community.utilities import SQLDatabase
from langchain_groq import ChatGroq
from langgraph.graph import StateGraph, END, START
from langchain_core.messages import AIMessage, ToolMessage, AnyMessage, HumanMessage
from langgraph.graph.message import AnyMessage, add_messages
from langchain_core.tools import tool
from typing import Annotated, Literal, TypedDict, Any
from pydantic import BaseModel, Field
from langchain_core.runnables import RunnableLambda, RunnableWithFallbacks
from langgraph.prebuilt import ToolNode
from langchain_core.prompts import ChatPromptTemplate
from langchain_community.agent_toolkits import SQLDatabaseToolkit
from dotenv import load_dotenv
import os
from IPython.display import display
import PIL
from langgraph.errors import GraphRecursionError
import os
import io
from typing import Annotated, Any, TypedDict
from langgraph.graph import StateGraph, END, MessagesState
from IPython.display import Image, display
from langchain_core.runnables.graph import MermaidDrawMethod
from typing import Optional, Dict
from langchain_community.utilities import SQLDatabase
from langchain_community.agent_toolkits import SQLDatabaseToolkit
from langchain_groq import ChatGroq
from langchain_core.messages import HumanMessage, AIMessage
from langchain_core.prompts import ChatPromptTemplate
# from langchain_core.pydantic_v1 import BaseModel, Field
from langgraph.graph import StateGraph, END, MessagesState
from typing import TypedDict, Annotated, List, Literal, Dict, Any
from langchain_google_genai import ChatGoogleGenerativeAI
from dotenv import load_dotenv
load_dotenv()
import os
# os.environ["GROQ_API_KEY"]=os.getenv("GROQ_API_KEY")
os.environ["GEMINI_API_KEY"]=os.getenv("GEMINI_API_KEY")
class SQLAgent:
def __init__(self, model="gemma2-9b-it"):
# Initialize instance variables
self.db = None
self.toolkit = None
self.tools = None
self.list_tables_tool = None
self.sql_db_query = None
self.get_schema_tool = None
self.app = None
# Setting up LLM
# self.llm = ChatGroq(model=model,api_key = os.getenv("GROQ_API_KEY"))
self.llm = ChatGoogleGenerativeAI(model="gemini-2.5-flash-lite", google_api_key=os.environ["GEMINI_API_KEY"])
# Register the tool method
self.query_to_database = self._create_query_tool()
def _create_query_tool(self):
"""Create the query tool bound to this instance"""
print("creating _create_query_tool")
@tool
def query_to_database(query: str) -> str:
"""
Execute a SQL query against the database and return the result.
If the query is invalid or returns no result, an error message will be returned.
In case of an error, the user is advised to rewrite the query and try again.
"""
if self.db is None:
return "Error: Database connection not established. Please set up the connection first."
result = self.db.run_no_throw(query)
if not result:
return "Error: Query failed. Please rewrite your query and try again."
return result
return query_to_database
def setup_database_connection(self, connection_string: str):
"""Set up database connection and initialize tools"""
try:
# Initialize database connection
self.db = SQLDatabase.from_uri(connection_string)
print("Database connection successful!")
try:
# Initialize toolkit and tools
self.toolkit = SQLDatabaseToolkit(db=self.db, llm=self.llm)
self.tools = self.toolkit.get_tools()
for tool in self.tools:
print(f"Initialized tool: {tool.name}")
# Create instances of the tools
self.list_tables_tool = next((tool for tool in self.tools if tool.name == "sql_db_list_tables"), None)
self.query_tool = next((tool for tool in self.tools if tool.name == "sql_db_query"), None)
self.get_schema_tool = next((tool for tool in self.tools if tool.name == "sql_db_schema"), None)
self.query_checker_tool = next((tool for tool in self.tools if tool.name == "sql_db_query_checker"), None)
if not all([self.list_tables_tool, self.query_tool, self.get_schema_tool, self.query_checker_tool]):
raise ValueError("Failed to initialize one or more required database tools")
# Initialize workflow and compile it into an app
self.initialize_workflow()
return self.db
except Exception as e:
print(f"Error initializing tools and workflow: {str(e)}")
raise ValueError(f"Failed to initialize database tools: {str(e)}")
except ImportError as e:
print(f"Database driver import error: {str(e)}")
raise ValueError(f"Missing database driver or invalid database type: {str(e)}")
except ValueError as e:
print(f"Invalid connection string or configuration: {str(e)}")
raise
except Exception as e:
print(f"Unexpected error during database connection: {str(e)}")
raise ValueError(f"Failed to establish database connection: {str(e)}")
def initialize_workflow(self):
"""Initialize the workflow graph"""
print("Intializing Workflow....")
class SQLAgentState(MessagesState):
"""State for the agent"""
next_tool : str = ""
tables_list: str = ""
schema_of_table: str = ""
query_gen : str= ""
check_query: str = ""
execute_query : str = ""
task_complete: bool = False
response_to_user: str= ""
current_task: str = ""
query: str = "" ## query of the human stored in it
class DBQuery(BaseModel):
query: str = Field(..., description="The SQL query to execute")
def creating_sql_agent_chain():
"""Creating a sql agent chain"""
print("Creating a sql agent chain")
sql_agent_prompt = ChatPromptTemplate.from_messages([
("system", """You are a supervisor SQL agent managing tools to get the answer to the user's query.
Based on the current state, decide which tool should be called next:
1. list_table_tools - List all tables from the database
2. get_schema - Get the schema of required tables
3. generate_query - Generate a SQL query
4. check_query - Check if the query is correct
5. execute_query - Execute the query
6. response - Create response for the user
Current state:
- Tables listed: {tables_list}
- Schema retrieved: {schema_of_table}
- Query generated: {query_gen}
- Query checked: {check_query}
- Query executed: {execute_query}
- Response created: {response_to_user}
If no tables are listed, respond with 'list_table_tools'.
If tables are listed but no schema, respond with 'get_schema'.
If schema exists but no query generated, respond with 'generate_query'.
If query generated but not checked, respond with 'check_query'.
If query checked but not executed, respond with 'execute_query'.
If query executed but no response, respond with 'response'.
If everything is complete, respond with 'DONE'.
Respond with ONLY the tool name or 'DONE'.
"""),
("human", "{task}")
])
return sql_agent_prompt | self.llm
def sql_agent(state: SQLAgentState) -> Dict:
"""Agent decides which tool to call next"""
messages = state["messages"]
task = messages[-1].content if messages else "No task"
# Store the original query in state if not already stored
if not state.get("query"):
state["query"] = task
# Check what's been completed (convert to boolean properly)
tables_list = bool(state.get("tables_list", "").strip())
schema_of_table = bool(state.get("schema_of_table", "").strip())
query_gen = bool(state.get("query_gen", "").strip())
check_query = bool(state.get("check_query", "").strip())
execute_query = bool(state.get("execute_query", "").strip())
response_to_user = bool(state.get("response_to_user", "").strip())
print(f"State check - Tables: {tables_list}, Schema: {schema_of_table}, Query: {query_gen}, Check: {check_query}, Execute: {execute_query}, Response: {response_to_user}")
chain = creating_sql_agent_chain()
decision = chain.invoke({
"task": task,
"tables_list": tables_list,
"schema_of_table": schema_of_table,
"query_gen": query_gen,
"check_query": check_query,
"execute_query": execute_query,
"response_to_user": response_to_user
})
decision_text = decision.content.strip().lower()
print(f"Agent decision: {decision_text}")
if "done" in decision_text:
next_tool = "end"
agent_msg = "β
SQL Agent: All tasks complete!"
elif "list_table_tools" in decision_text:
next_tool = "list_table_tools"
agent_msg = "π SQL Agent: Listing all tables in database."
elif "get_schema" in decision_text:
next_tool = "get_schema"
agent_msg = "π SQL Agent: Getting schema of tables."
elif "generate_query" in decision_text:
next_tool = "generate_query"
agent_msg = "π SQL Agent: Generating SQL query."
elif "check_query" in decision_text:
next_tool = "check_query"
agent_msg = "π SQL Agent: Checking SQL query."
elif "execute_query" in decision_text:
next_tool = "execute_query"
agent_msg = "π SQL Agent: Executing query."
elif "response" in decision_text:
next_tool = "response"
agent_msg = "π SQL Agent: Creating response."
else:
next_tool = "end"
agent_msg = "β
SQL Agent: Task complete."
return {
"messages": [AIMessage(content=agent_msg)],
"next_tool": next_tool,
"current_task": task
}
def list_table_tools(state: SQLAgentState) -> Dict:
"""List all the tables"""
tables_list = self.list_tables_tool.invoke("")
print(f"Tables found: {tables_list}")
return {
"messages": [AIMessage(content=f"Tables found: {tables_list}")],
"tables_list": tables_list,
"next_tool": "sql_agent"
}
def get_schema(state: SQLAgentState) -> Dict:
"""Get the schema of required tables"""
print("π Getting schema...")
tables_list = state.get("tables_list", "")
if not tables_list:
tables_list = self.list_tables_tool.invoke("")
tables = [table.strip() for table in tables_list.split(",")]
full_schema = ""
for table in tables:
try:
schema = self.get_schema_tool.invoke(table)
full_schema += f"\nTable: {table}\n{schema}\n"
except Exception as e:
print(f"Error getting schema for {table}: {e}")
print(f"π Schema collected for tables: {tables}")
return {
"messages": [AIMessage(content=f"Schema retrieved: {full_schema}")],
"schema_of_table": full_schema,
"tables_list": tables_list,
"next_tool": "sql_agent"
}
def generate_query(state: SQLAgentState) -> Dict:
"""Generate a SQL Query according to the user query"""
schema = state.get("schema_of_table", "")
human_query = state.get("query", "")
tables = state.get("tables_list", "")
print(f"Generating query for: {human_query}")
generate_query_system_prompt = """You are a SQL expert that generates precise SQL queries based on user questions.
You will be provided with:
- User's question
- Available tables
- Complete schema information
Generate a SQL query that:
- Uses correct column names from schema
- Properly joins tables if needed
- Includes appropriate WHERE clauses
- Uses proper aggregation functions when needed
Respond ONLY with the SQL query. Do not explain."""
combined_input = f"""
User Question: {human_query}
Tables: {tables}
Schema: {schema}
"""
generate_query_prompt = ChatPromptTemplate.from_messages([
("system", generate_query_system_prompt),
("human", "{input}")
])
try:
formatted_prompt = generate_query_prompt.invoke({"input": combined_input})
generate_query_llm = self.llm.with_structured_output(DBQuery)
result = generate_query_llm.invoke(formatted_prompt)
print(f"β
Query generated: {result.query}")
return {
"messages": [AIMessage(content=f"Query generated: {result.query}")],
"query_gen": result.query,
"next_tool": "sql_agent"
}
except Exception as e:
print(f"β Failed to generate query: {e}")
return {
"messages": [AIMessage(content="β οΈ Failed to generate SQL query.")],
"query_gen": "",
"next_tool": "sql_agent"
}
def check_query(state: SQLAgentState) -> Dict:
"""Check if the query is correct"""
query = state.get("query_gen", "")
print(f"Checking query: {query}")
if not query:
return {
"messages": [AIMessage(content="No query to check")],
"check_query": "",
"next_tool": "sql_agent"
}
try:
checked_query = self.query_checker_tool.invoke(query)
## if checked query contains ``` anywhere remove it
if "```" in checked_query or "sql" in checked_query:
checked_query = checked_query.replace("```", "").replace("sql", "").strip()
print(f"Query checked: {checked_query}")
return {
"messages": [AIMessage(content=f"Query checked: {checked_query}")],
"check_query": checked_query if checked_query else query,
"next_tool": "sql_agent"
}
except Exception as e:
print(f"Error checking query: {e}")
return {
"messages": [AIMessage(content="Query check failed, using original query")],
"check_query": query,
"next_tool": "sql_agent"
}
def execute_query_(state: SQLAgentState) -> Dict:
"""Execute the SQL query"""
query = state.get("check_query", "") or state.get("query_gen", "")
print(f"Executing query: {query}")
if not query:
return {
"messages": [AIMessage(content="No query to execute")],
"execute_query": "",
"next_tool": "sql_agent"
}
try:
results = self.query_tool.invoke(query)
print(f"Query results: {results}")
return {
"messages": [AIMessage(content=f"Query executed successfully: {results}")],
"execute_query": results,
"next_tool": "sql_agent"
}
except Exception as e:
print(f"Error executing query: {e}")
return {
"messages": [AIMessage(content=f"Query execution failed: {e}")],
"execute_query": "",
"next_tool": "sql_agent"
}
def create_response(state: SQLAgentState) -> Dict:
"""Create a final response for the user"""
print("Creating final response...")
query = state.get("check_query", "") or state.get("query_gen", "")
result = state.get("execute_query", "")
human_query = state.get("query", "")
response_prompt = f"""Create a clear, concise response for the user based on:
User Question: {human_query}
SQL Query: {query}
Query Result: {result}
Provide a natural language answer that directly addresses the user's question. Make sure to provide only answer to human question, no any internal process results and explaination, just answer related to the human query."""
try:
response = self.llm.invoke([HumanMessage(content=response_prompt)])
print(f"Response created: {response.content}")
return {
"messages": [response],
"response_to_user": response.content,
"next_tool": "sql_agent",
"task_complete": True
}
except Exception as e:
print(f"Error creating response: {e}")
return {
"messages": [AIMessage(content="Failed to create response")],
"response_to_user": "",
"next_tool": "sql_agent",
"task_complete": True
}
def router(state: SQLAgentState):
"""Route to the next node"""
print("π Entering router...")
next_tool = state.get("next_tool", "")
print(f"β‘οΈ Next tool: {next_tool}")
if next_tool == "end" or state.get("task_complete", False):
return END
valid_tools = [
"sql_agent", "list_table_tools", "get_schema", "generate_query",
"check_query", "execute_query", "response"
]
return next_tool if next_tool in valid_tools else "sql_agent"
# Create workflow
workflow = StateGraph(SQLAgentState)
# Add nodes
workflow.add_node("sql_agent", sql_agent)
workflow.add_node("list_table_tools", list_table_tools)
workflow.add_node("get_schema", get_schema)
workflow.add_node("generate_query", generate_query)
workflow.add_node("check_query", check_query)
workflow.add_node("execute_query", execute_query_)
workflow.add_node("response", create_response)
# Set entry point
workflow.set_entry_point("sql_agent")
# Add routing
for node in ["sql_agent", "list_table_tools", "get_schema", "generate_query", "check_query", "execute_query", "response"]:
workflow.add_conditional_edges(
node,
router,
{
"sql_agent": "sql_agent",
"list_table_tools": "list_table_tools",
"get_schema": "get_schema",
"generate_query": "generate_query",
"check_query": "check_query",
"execute_query": "execute_query",
"response": "response",
END: END
}
)
# Compile the graph
self.app = workflow.compile()
def is_query_relevant(self, query: str) -> bool:
"""Check if the query is relevant to the database using the LLM."""
# Retrieve the schema of the relevant tables
if self.list_tables_tool:
relevant_tables = self.list_tables_tool.invoke("")
# print(relevant_tables)
table_list= relevant_tables.split(", ")
print(table_list)
# print(agent.get_schema_tool.invoke(table_list[0]))
schema = ""
for table in table_list:
schema+= self.get_schema_tool.invoke(table)
print(schema)
# if self.get_schema_tool:
# schema_response = self.get_schema_tool.invoke({})
# table_schema = schema_response.content # Assuming this returns the schema as a string
relevance_check_prompt = (
"""You are an expert SQL agent which takes user query in Natural language and find out it have releavnce with the given schema or not. Please determine if the following query is related to a database.Here is the schema of the tables present in database:\n{schema}\n\n. If the query related to given schema respond with 'yes'. Here is the query: {query}. Answer with only 'yes' or 'no'."""
).format(schema=relevant_tables, query=query)
response = self.llm.invoke([{"role": "user", "content": relevance_check_prompt}])
# Assuming the LLM returns a simple 'yes' or 'no'
return response.content == "yes"
## called from the fastapi endpoint
def execute_query(self, query: str):
"""Execute a query through the workflow"""
if self.db is None:
raise ValueError("Database connection not established. Please set up the connection first.")
if self.app is None:
raise ValueError("Workflow not initialized. Please set up the connection first.")
# First, handle simple queries like "list tables" directly
query_lower = query.lower()
if any(phrase in query_lower for phrase in ["list all the tables", "show tables", "name of tables",
"which tables are present", "how many tables", "list all tables"]):
if self.list_tables_tool:
tables = self.list_tables_tool.invoke("")
return f"The tables in the database are: {tables}"
else:
return "Error: Unable to list tables. The list_tables_tool is not initialized."
# Check if the query is relevant to the database
if not self.is_query_relevant(query):
print("Not relevent to database.")
# If not relevant, let the LLM answer the question directly
non_relevant_prompt = (
"""You are an expert SQL agent created by Kshitij Kumrawat. You can only assist with questions related to databases so repond the user with the following example resonse and Do not answer any questions that are not related to databases.:
Please ask a question that pertains to database operations, such as querying tables, retrieving data, or understanding the database schema. """
)
# Invoke the LLM with the non-relevant prompt
response = self.llm.invoke([{"role": "user", "content": non_relevant_prompt}])
# print(response.content)
return response.content
# If relevant, proceed with the SQL workflow
# response = self.app.invoke({"messages": [HumanMessage(content=query, role="user")]})
response = self.app.invoke({
"messages": [HumanMessage(content=query)],
"query": query
})
return response["messages"][-1].content
# # More robust final answer extraction
# if (
# response
# and response["messages"]
# and response["messages"][-1].tool_calls
# and len(response["messages"][-1].tool_calls) > 0
# and "args" in response["messages"][-1].tool_calls[0]
# and "final_answer" in response["messages"][-1].tool_calls[0]["args"]
# ):
# return response["messages"][-1].tool_calls[0]["args"]["final_answer"]
# else:
# return "Error: Could not extract final answer."
|