Talk2DatabaseAgent / app /services /sql_agent_instance.py
Kshitijk20's picture
added modular code
34a5262
raw
history blame contribute delete
309 Bytes
"""
SQLAgent singleton instance module.
This creates and maintains a single instance of the SQLAgent class
that can be imported and used throughout the application.
"""
# from app.services.sql_agent import SQLAgent
from app.agents.sql_agent import SQLAgent
# Create a singleton instance
sql_agent = SQLAgent()