Spaces:
Sleeping
Sleeping
File size: 309 Bytes
99bbd9b 34a5262 99bbd9b | 1 2 3 4 5 6 7 8 9 | """
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() |