Spaces:
Runtime error
Runtime error
File size: 27,460 Bytes
bb2f1af | 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 | # --- IMPORTS ---
from flask import Flask, request, jsonify, render_template
from flask_socketio import SocketIO, emit
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain.agents import initialize_agent, AgentType, create_react_agent, AgentExecutor
from langchain_community.agent_toolkits import create_sql_agent, SQLDatabaseToolkit
from langchain_community.utilities import SQLDatabase
from langchain.tools import Tool
from langchain.memory import ConversationBufferMemory
from pymongo import MongoClient
import threading
import os, re, traceback, ast
from bson import json_util
from dotenv import load_dotenv
from werkzeug.utils import secure_filename
from werkzeug.exceptions import HTTPException
from langchain.prompts import ChatPromptTemplate
from tabulate import tabulate
from fuzzywuzzy import fuzz
# from langchain_groq import ChatGroq
def error_safe(f):
def wrapper(*args, **kwargs):
try:
return f(*args, **kwargs)
except HTTPException as he:
return jsonify({"status": "error", "message": he.description}), he.code
except Exception as e:
print("[ERROR] Uncaught Exception in", f.__name__)
traceback.print_exc()
return jsonify({"status": "error", "message": str(e)}), 500
wrapper.__name__ = f.__name__
return wrapper
# --- ENV + FLASK SETUP ---
load_dotenv()
os.environ["GEMINI_API_KEY"] = os.getenv("GEMINI_API_KEY")
app = Flask(__name__)
app.config['SECRET_KEY'] = os.urandom(32)
app.config['UPLOAD_FOLDER'] = 'uploads'
socketio = SocketIO(app, cors_allowed_origins="*")
os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
llm = ChatGoogleGenerativeAI(
temperature=0.2,
model="gemini-2.0-flash",
max_retries=50,
api_key=os.getenv("GEMINI_API_KEY")
)
# llm = ChatGroq(temperature=0.2, model_name="mistral-saba-24b",api_key=os.getenv("GROQ_API_KEY"))
# --- GLOBALS ---
agent_executor = None
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True, input_key="input")
mongo_db = None
client = None
db_mode = None # "mongo" or "sql"
# --- SHARED ---
def is_schema_request(prompt: str) -> bool:
pattern = re.compile(r'\b(schema|table names|tables|columns|structure|column names|collections?|field names|metadata|describe|show)\b', re.IGNORECASE)
return bool(pattern.search(prompt))
def is_sensitive_request(prompt: str) -> bool:
sensitive_keywords = [
"password", "token", "credential", "secret", "api key", "schema", "structure",
"collection name", "field name", "user_id", "order_id", "payment_id",
"internal", "database structure", "table structure", "email", "phone", "contact", "ssn"
]
lowered = prompt.lower()
return any(keyword in lowered for keyword in sensitive_keywords)
intent_prompt = ChatPromptTemplate.from_messages([
("system", "Classify if the user is asking schema/structure/sensitive info (tables, columns, schema): YES or NO."),
("human", "{prompt}")
])
intent_checker = intent_prompt | llm
def is_schema_leak_request(prompt):
try:
classification = intent_checker.invoke({"prompt": prompt})
return "yes" in classification.content.strip().lower()
except:
return False
# --- INIT SQL AGENT ---
def init_sql_agent(db_path):
global agent_executor, db_mode
db = SQLDatabase.from_uri(f"sqlite:///{db_path}")
toolkit = SQLDatabaseToolkit(db=db, llm=llm)
prefix = '''You are a helpful SQL expert agent that ALWAYS returns natural language answers using the tools.'''
# Always format your responses in Markdown. For example:
# - Use bullet points
# - Use bold for headers
# - Wrap code in triple backticks
# - Tables should use Markdown table syntax
# You must NEVER:
# - Show or mention SQL syntax.
# - Reveal table names, column names, or database schema.
# - Respond with any technical details or structure of the database.
# - Return code or tool names.
# - Give wrong Answers.
# You must ALWAYS:
# - Respond in plain, friendly language.
# - Don't Summarize the result for the user (e.g., "There are 9 tables in the system.")
# - If asked to list table names or schema, politely refuse and respond with:
# "I'm sorry, I can't share database structure information."
# - ALWAYS HAVE TO SOLVE COMPLEX USER QUERIES. FOR THAT, UNDERSTAND THE PROMPT, ANALYSE PROPER AND THEN GIVE ANSWER.
# - Your Answers should be correct, you have to do understand process well and give accurate answers.
# - IF USER ASK ABOUT DATA, Which is not there in a database, then GIVE FOLLOWING ANSWER:
# "There is no such data in the Database."
# Strict Rules You MUST Follow:
# - NEVER display or mention SQL queries.
# - NEVER explain SQL syntax or logic.
# - NEVER return technical or code-like responses.
# - ONLY respond in natural, human-friendly language.
# - You are not allow to give the name of any COLUMNS, TABLES, DATABASE, ENTITY, SYNTAX, STRUCTURE, DESIGN, ETC...
# If the user asks for anything other than retrieving data (SELECT), respond using this exact message:
# "I'm not allowed to perform operations other than SELECT queries. Please ask something that involves reading data."
# Do not return SQL queries or raw technical responses to the user.
# For example:
# Wrong: SELECT * FROM ...
# Correct: The user assigned to the cart is Alice Smith.
# Use the tools provided to get the correct data from the database and summarize the response clearly.
# If the input is unclear or lacks sufficient data, ask for clarification using the SubmitFinalAnswer tool.
# Never return SQL queries as your response.
# If you cannot find an answer,
# Double-check your query and running it again.
# - If a query fails, revise and try again.
# - Else 'No data found' using SubmitFinalAnswer.No SQL, no code. '''
agent_executor = create_sql_agent(
llm=llm,
toolkit=toolkit,
verbose=True,
prefix=prefix,
agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
memory=memory,
agent_executor_kwargs={"handle_parsing_errors": True},
)
db_mode = "sql"
# --- INIT MONGO AGENT ---
system_message = """
You are **MongoDBQueryBot**, a highly intelligent and accurate assistant for answering questions about data stored in a MongoDB database using tools.
### π¨ Critical Instructions (Strictly Follow These):
- You **must always** use tools provided to answer user questions.
- Always join IDs with associated human-readable values like names or titles when answering.
- Prefer displaying `user name`, `employee name`, or `product name` instead of internal IDs like `user_id`, `emp_id`, or `product_id`.
- Avoid responding only with technical identifiers. Make responses meaningful to users.
- **Never** guess or fabricate any information.
- **Do not** show raw JSON, field names, or database structure.
- Your role is **read-only**: do not suggest or perform insert/update/delete.
- After Using All the available tools, if you are Unable to find any documents, then give followig ANSWER:
"Please, rephrase your query because I can't exactly understand, what you want !"
- If a query can't be answered or is unrelated to reading data, reply:
β "I'm only allowed to retrieve data. Please ask a query involving reading information."
- IF USER ASK ABOUT DATA, Which is not there in a database, then GIVE FOLLOWING ANSWER:
"There is no such data in the Database."
- When returning answers:
- Do **not return internal IDs** like `user_id`, `order_id`, `payment_id`, etc.
- Instead, use human-readable fields like `name`, `full_name`, `user_name`, etc., from related collections.
- If only an ID is available, try joining the relevant collections to fetch the proper display name.
### π§ How to Think:
- Understand **exactly** what the user is trying to ask. Do not answer if unclear β ask for clarification.
- Translate the user prompt into tool inputs by identifying:
- Which collection to search
- What value or field they're referring to
- The correct format expected by the tool
### π οΈ Tool Usage Guide:
- Use `FindDocuments` for queries like:
- "Show me all employees named John"
- "What is the salary of Manager X?"
- Use `ListCollections` to discover available data types (but donβt share them directly).
- **IMPORTANT : Don't Iterate only in one tool, if you can't able to answer using current tool you using, then swith the tool !**
- Use `JoinCollections` to resolve IDs into names when the question asks about people, customers, or products.
- When resolving names from payments, use this format:
`from=Payments, key=order_id, to=Orders, match=order_id, next_key=user_id, next_to=Users, next_match=user_id, return=name`
- Your goal is to **return the person's name** (e.g., `name`, `user_name`, `full_name`) not their ID.
- Always prioritize returning names instead of internal identifiers.
- Examples:
- For payment-related questions β Join Payments β Orders β Users and return name
- For order questions β Join Orders β Users and return user names
### π§Ύ Response Format:
- Use **clear markdown with tables** when displaying data.
- If no data is found: return `**No documents found.**`
- Stay professional, brief, and relevant.
### π« Never Do This:
- Do not leak MongoDB structure, schema, or field names.
- Do not suggest code, MongoDB syntax, or field mappings.
- Do not hallucinate or make assumptions.
Start by analyzing the prompt carefully, select the right tool, invoke it, and return a user-friendly answer based on the result.
"""
def find_docs_tool_func(query: str) -> str:
"""
Flexible MongoDB search with fallback:
- First tries in specified collection.
- If no results found, falls back to search across all collections.
Input format:
- collection=<collection>, key=<field>, value=<value>
- OR: collection=<collection>, value=<value>
"""
try:
parts = dict(part.strip().split("=", 1) for part in query.split(",") if "=" in part)
collection = parts.get("collection")
key = parts.get("key")
value = parts.get("value")
if not collection:
return "β 'collection' is required."
def query_collection(coll_name):
if key and value:
return list(mongo_db[coll_name].find({key: value}, {'_id': 0}))
elif value:
return [doc for doc in mongo_db[coll_name].find({}, {'_id': 0}) if any(str(v).lower() == value.lower() for v in doc.values())]
else:
return list(mongo_db[coll_name].find({}, {'_id': 0}))
docs = query_collection(collection)
if docs:
return "\n markdown\n" + tabulate(docs, headers="keys", tablefmt="github") + "\n"
for coll in mongo_db.list_collection_names():
if coll == collection:
continue
docs = query_collection(coll)
if docs:
return "\n markdown\n" + tabulate(docs, headers="keys", tablefmt="github") + "\n"
return "**No documents found.**"
except Exception as e:
return f"Invalid input format or error: {str(e)}"
def aggregate_group_by(_input: str):
try:
if _input.strip().startswith("{"):
# Parse JSON-like string
args = ast.literal_eval(_input)
collection = args.get("collection_name") or args.get("collection")
field = args.get("group_by") or args.get("field")
else:
# Handle legacy input format
args = dict(x.split("=") for x in _input.split(","))
collection = args["collection"]
field = args["field"]
pipeline = [
{"$group": {"_id": f"${field}", "count": {"$sum": 1}}},
{"$project": {"_id": 0, field: "$_id", "count": 1}}
]
result = list(mongo_db[collection].aggregate(pipeline))
if not result:
return "**No data found.**"
return "\n markdown\n" + tabulate(result, headers="keys", tablefmt="github") + "\n"
except Exception as e:
return f"Aggregation failed: {e}"
def get_all_documents(collection: str):
try:
docs = list(mongo_db[collection].find({}, {'_id': 0}))
if not docs:
return "**No documents found.**"
return "\n markdown\n" + tabulate(docs, headers="keys", tablefmt="github") + "\n"
except Exception as e:
return f"Error fetching documents: {e}"
def fuzzy_find_documents(query: str):
try:
parts = dict(part.strip().split("=", 1) for part in query.split(","))
collection = parts["collection"]
value = parts["value"]
threshold = int(parts.get("threshold", 80))
matches = []
for doc in mongo_db[collection].find({}, {'_id': 0}):
if any(fuzz.partial_ratio(str(v).lower(), value.lower()) >= threshold for v in doc.values()):
matches.append(doc)
if not matches:
return "**No fuzzy matches found.**"
return "\n markdown\n" + tabulate(matches, headers="keys", tablefmt="github") + "\n"
except Exception as e:
return f"Fuzzy match error: {e}"
# def join_collections_tool_func(_input: str):
# try:
# # Parse input like: from=Products, key=category_id, to=Categories, match=category_id, return=category_name
# args = dict(x.strip().split("=", 1) for x in _input.split(","))
# from_collection = args["from"]
# foreign_key = args["key"]
# to_collection = args["to"]
# match_key = args["match"]
# return_field = args["return"]
# results = []
# foreign_lookup = {
# doc[match_key]: doc.get(return_field)
# for doc in mongo_db[to_collection].find()
# if match_key in doc
# }
# for doc in mongo_db[from_collection].find({}, {'_id': 0}):
# doc[return_field] = foreign_lookup.get(doc.get(foreign_key), "Unknown")
# results.append(doc)
# if not results:
# return "**No documents found.**"
# return "\n markdown\n" + tabulate(results, headers="keys", tablefmt="github") + "\n"
# except Exception as e:
# return f"Join failed: {e}"
def join_collections_tool_func(_input: str):
"""
Supports 2-level join (Payments β Orders β Users) or any pair-wise join
Input formats:
- from=Payments, key=order_id, to=Orders, match=order_id, next_key=user_id, next_to=Users, next_match=user_id, return=name
- from=Products, key=category_id, to=Categories, match=category_id, return=category_name
"""
try:
args = dict(x.strip().split("=", 1) for x in _input.split(","))
from_coll = args["from"]
key = args["key"]
to_coll = args["to"]
match = args["match"]
return_field = args["return"]
next_key = args.get("next_key")
next_to = args.get("next_to")
next_match = args.get("next_match")
# First join (e.g., Payments β Orders)
to_docs = {doc[match]: doc for doc in mongo_db[to_coll].find() if match in doc}
joined = []
for doc in mongo_db[from_coll].find({}, {'_id': 0}):
foreign_doc = to_docs.get(doc.get(key))
if not foreign_doc:
continue
merged = {**doc, **foreign_doc}
joined.append(merged)
# Second join (e.g., Orders β Users)
if next_key and next_to and next_match:
next_docs = {doc[next_match]: doc for doc in mongo_db[next_to].find() if next_match in doc}
for doc in joined:
user_doc = next_docs.get(doc.get(next_key))
if user_doc:
doc[return_field] = user_doc.get(return_field, "Unknown")
else:
doc[return_field] = "Unknown"
# Prepare final result
if not joined:
return "**No documents found.**"
final = [{return_field: doc.get(return_field)} for doc in joined if return_field in doc]
return "\n markdown\n" + tabulate(final, headers="keys", tablefmt="github") + "\n"
except Exception as e:
return f"Join failed: {e}"
def smart_join_router(prompt: str) -> str:
"""
An intelligent router that suggests the correct JoinCollections input string
for common user intent like payments β orders β users β name.
"""
prompt_lower = prompt.lower()
if "payment" in prompt_lower and any(term in prompt_lower for term in ["who", "name", "user", "person"]):
return "from=Payments, key=order_id, to=Orders, match=order_id, next_key=user_id, next_to=Users, next_match=user_id, return=name"
elif "order" in prompt_lower and "name" in prompt_lower:
return "from=Orders, key=user_id, to=Users, match=user_id, return=name"
# Extend as needed
return "Unable to auto-generate join path. Please provide more context."
def init_mongo_agent(json_path):
global agent_executor, client, mongo_db, db_mode
client = MongoClient("mongodb://localhost:27017/")
mongo_db = client['uploaded_mongo']
with open(json_path, 'r', encoding='utf-8') as f:
data = json_util.loads(f.read())
# Handle both single-collection and multi-collection formats
if isinstance(data, list):
# Default collection name if only a list is provided
collection = mongo_db['default_collection']
collection.drop()
collection.insert_many(data)
elif isinstance(data, dict):
for col_name, docs in data.items():
collection = mongo_db[col_name]
collection.drop()
if isinstance(docs, list):
collection.insert_many(docs)
else:
collection.insert_one(docs)
else:
raise ValueError("Unsupported JSON format. Must be a list or dict.")
def list_collections(_input=None):
return mongo_db.list_collection_names()
find_docs_tool = Tool(
name="FindDocuments",
description=(
"Use this tool to find documents in a MongoDB collection.\n"
"Input format:\n"
"- `collection=<collection>, key=<field>, value=<value>` for precise queries\n"
"- OR `collection=<collection>, value=<value>` to search across all fields\n"
"If `key` is omitted, the tool will automatically scan all fields to find matching values.\n"
"Examples:\n"
"- `collection=default_collection, key=name, value=Lauren Alexander`\n"
"- `collection=default_collection, value=Lauren Alexander`"
),
func=find_docs_tool_func)
aggregate_tool = Tool(
name="AggregateGroupBy",
func=aggregate_group_by,
description=(
"Group documents and count by any field. Format: collection=<name>, field=<group_by_field>. E.g., collection=residents, field=gender"
)
)
get_all_documents_tool = Tool(
name="GetAllDocuments",
func=get_all_documents,
description=(
"Fetch all documents from a collection. Input: collection name only. Example: residents"
)
)
fuzzy_tool = Tool(
name="FuzzyFindDocuments",
func=fuzzy_find_documents,
description=("Fuzzy match documents across all fields in a collection. Format: collection=<name>, value=<search_term>, threshold=80 (optional)"
)
)
join_collection_tool = Tool(
name="JoinCollections",
func=join_collections_tool_func,
description=(
"Join collections to map foreign keys to human-readable values. Supports 1 or 2-level joins.\n"
"Formats:\n"
"- from=Payments, key=order_id, to=Orders, match=order_id, return=status\n"
"- from=Payments, key=order_id, to=Orders, match=order_id, next_key=user_id, next_to=Users, next_match=user_id, return=name"
)
)
smart_router_tool = Tool(
name="SmartJoinRouter",
func=smart_join_router,
description=(
"Suggest the correct JoinCollections input format based on user intent.\n"
"Use this when you are unsure how to form the join input."
)
)
tools = [
Tool(name="FindDocuments", func=find_docs_tool, description="Flexible MongoDB search..."),
Tool(name="ListCollections", func=lambda x: list_collections(), description="List all collections..."),
Tool(name="AggregateGroupBy", func=aggregate_tool, description="Group and count by any field..."),
Tool(name="GetAllDocuments", func=get_all_documents_tool, description="Fetch all documents from a collection..."),
Tool(name="FuzzyFindDocuments", func=fuzzy_tool, description="Fuzzy match documents across all fields..."),
Tool(name="JoinCollections", func=join_collection_tool, description="Join related collections to return names instead of IDs..."),
Tool(name="SmartJoinCollections", func=smart_router_tool, description="Smrt Join related collections to return names instead of IDs...")
]
agent_executor = initialize_agent(
tools=tools,
llm=llm,
agent_type=AgentType.CONVERSATIONAL_REACT_DESCRIPTION,
memory=memory,
verbose=True,
prefix=system_message,
handle_parsing_errors=True
)
db_mode = "mongo"
@app.errorhandler(Exception)
def handle_all_errors(e):
print(f"[ERROR] Global handler caught an exception: {str(e)}")
traceback.print_exc()
if isinstance(e, HTTPException):
return jsonify({"status": "error", "message": e.description}), e.code
return jsonify({"status": "error", "message": "An unexpected error occurred"}), 500
from werkzeug.exceptions import TooManyRequests
@app.errorhandler(TooManyRequests)
def handle_429_error(e):
return jsonify({
"status": "error",
"message": "π¦ Agent is busy, try again after sometime."
}), 429
# --- ROUTES ---
@app.route("/")
def index():
return render_template("index_db_json.html")
@app.route("/upload_db", methods=["POST"])
@error_safe
def upload_db():
file = request.files.get("file")
if not file or file.filename == "":
return jsonify(success=False, message="No file provided"), 400
filename = secure_filename(file.filename)
path = os.path.join(app.config["UPLOAD_FOLDER"], filename)
file.save(path)
try:
if filename.endswith(".json"):
init_mongo_agent(path)
return jsonify(success=True, message="MongoDB initialized")
elif filename.endswith(".db"):
init_sql_agent(path)
return jsonify(success=True, message="SQL DB initialized")
else:
return jsonify(success=False, message="Unsupported file format"), 400
except Exception as e:
traceback.print_exc()
return jsonify(success=False, message=f"Init failed: {e}"), 500
@app.route("/generate", methods=["POST"])
@error_safe
def generate():
try:
data = request.get_json(force=True)
prompt = data.get("prompt", "").strip()
if not prompt:
return jsonify({"status": "error", "message": "Prompt is required"}), 400
# if is_schema_leak_request(prompt) or is_schema_request(prompt):
# msg = "β Sorry, you're not allowed to access structure/schema information."
# socketio.emit("final", {"message": msg})
# return jsonify({"status": "blocked", "message": msg}), 403
# # NEW BLOCK: Sensitive intent detection
# if is_sensitive_request(prompt):
# msg = "β This query may involve sensitive or protected information. Please rephrase your question."
# socketio.emit("final", {"message": msg})
# return jsonify({"status": "blocked", "message": msg}), 403
except Exception as e:
traceback.print_exc()
return jsonify({"status": "error", "message": "Invalid input"}), 400
def run_agent():
try:
result = agent_executor.invoke({"input": prompt})
final_answer = result.get("output", "")
# Check for vague or failure phrases in the agent's answer
vague_phrases = [
"i am unable to answer this",
"i cannot answer",
"i'm unable to answer",
"i donβt know",
"i do not know",
"i am not sure",
"unable to proceed",
"i cannot determine",
"data is missing",
"i was not able to"
]
# if any(phrase in final_answer.lower() for phrase in vague_phrases) or final_answer.strip() == "":
# final_answer = "Please, rephrase your query because I can't exactly understand, what you want !"
# if any(phrase in final_answer.lower() for phrase in ["i am unable", "i'm unable", "i cannot", "i can't", "unable to answer"]):
# final_answer = "Please, rephrase your query because I can't exactly understand, what you want !"
socketio.emit("final", {"message": final_answer})
except Exception as e:
error_message = str(e)
if "429" in error_message and "quota" in error_message.lower():
user_friendly_msg = "π¦ Agent is busy, try again after sometime."
else:
user_friendly_msg = f"Agent failed: {error_message}"
socketio.emit("final", {"message": user_friendly_msg})
traceback.print_exc()
threading.Thread(target=run_agent).start()
return jsonify({"status": "ok"}), 200
if __name__ == "__main__":
socketio.run(app, debug=True)
|