Spaces:
Sleeping
Sleeping
File size: 40,096 Bytes
05c44b5 | 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 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 | # =========================================================
# ULTRA ADVANCED HYBRID NLP TO SQL ENGINE
# PROFESSIONAL MULTI-FILTER ENGINE
# MISTRAL / SQLCODER READY
# =========================================================
import re
import traceback
import os
from huggingface_hub import InferenceClient
from dotenv import load_dotenv
from sqlalchemy import create_engine, text
# =========================================================
# ENVIRONMENT SETUP
# =========================================================
load_dotenv()
HF_TOKEN = os.getenv("HF_TOKEN")
DATABASE_URL = os.getenv("DATABASE_URL")
# Initialize Mistral client
client = None
try:
if HF_TOKEN:
client = InferenceClient(
model="mistralai/Mistral-7B-Instruct-v0.2",
token=HF_TOKEN
)
print("β
Mistral client initialized")
else:
print("β οΈ HF_TOKEN not set - LLM features disabled")
except Exception as e:
print(f"β οΈ Mistral client error: {e}")
client = None
# Initialize database engine
engine = None
try:
if DATABASE_URL:
engine = create_engine(DATABASE_URL)
print("β
Database connection initialized")
else:
print("β οΈ DATABASE_URL not set - Database features disabled")
except Exception as e:
print(f"β οΈ Database connection warning: {e}")
engine = None
# =========================================================
# CONFIG
# =========================================================
USE_LLM = True
# =========================================================
# DATABASE KNOWLEDGE
# =========================================================
SCHEMA = {
"table": "vehicle_logs",
"columns": [
"timestamp",
"plate",
"state",
"vehicle_type",
"vehicle_conf",
"camera_id",
"location",
"date",
"hour",
"day"
]
}
VALID_STATES = {
"tn": "TN",
"tamil nadu": "TN",
"ka": "KA",
"karnataka": "KA",
"kl": "KL",
"kerala": "KL",
"ap": "AP",
"andhra": "AP",
"ts": "TS",
"telangana": "TS",
"mh": "MH",
"maharashtra": "MH",
"dl": "DL",
"delhi": "DL",
"gj": "GJ",
"gujarat": "GJ",
"rj": "RJ",
"rajasthan": "RJ",
"up": "UP",
"uttar pradesh": "UP",
"wb": "WB",
"west bengal": "WB",
"hr": "HR",
"haryana": "HR",
"pb": "PB",
"punjab": "PB"
}
KNOWN_LOCATIONS = [
"adyar",
"guindy",
"velachery",
"besantnagar",
"besant nagar",
"thiruvanmiyur",
"tnagar",
"t nagar",
"mylapore",
"annanagar",
"anna nagar",
"koyambedu",
"nungambakkam",
"kotturpuram"
]
VEHICLE_TYPES = [
"suv",
"bus",
"truck",
"bike",
"auto",
"taxi",
"car",
"jeep",
"sedan"
]
# =========================================================
# SQL CLEANER
# =========================================================
def clean_sql(sql):
sql = sql.replace("```sql", "")
sql = sql.replace("```", "")
sql = sql.strip()
if not sql.endswith(";"):
sql += ";"
return sql
# =========================================================
# SQL VALIDATOR
# =========================================================
def validate_sql(sql):
blocked = [
"DROP",
"DELETE",
"UPDATE",
"INSERT",
"ALTER",
"CREATE",
"TRUNCATE",
"JOIN",
"UNION"
]
upper = sql.upper()
for word in blocked:
if word in upper:
return False
if not upper.startswith("SELECT"):
return False
if "VEHICLE_LOGS" not in upper:
return False
return True
# =========================================================
# PRODUCTION-GRADE HYBRID NLP ENGINE
# Advanced multi-filter, date-range, time-range support
# =========================================================
class FilterExtractor:
"""
Production-grade filter extraction engine for complex real-world queries.
Handles multi-filter extraction, date ranges, time ranges, and advanced aggregations.
"""
def __init__(self):
# ===== VEHICLE TYPE SYNONYMS =====
self.vehicle_synonyms = {
# Cars
"car": "car", "cars": "car", "sedan": "car", "sedans": "car",
"compact": "car", "compacts": "car", "hatchback": "car",
# SUVs
"suv": "suv", "suvs": "suv", "crossover": "suv",
# Trucks
"truck": "truck", "trucks": "truck", "lorry": "truck", "lorries": "truck",
"heavy": "truck", "hgv": "truck",
# Buses
"bus": "bus", "buses": "bus", "coach": "bus", "shuttle": "bus",
# Bikes
"bike": "bike", "bikes": "bike", "motorcycle": "bike",
"motorcycles": "bike", "motorbike": "bike", "two-wheeler": "bike",
# Autos
"auto": "auto", "autos": "auto", "autorickshaw": "auto",
"auto-rickshaw": "auto", "tuk-tuk": "auto",
# Jeeps
"jeep": "jeep", "jeeps": "jeep", "4x4": "jeep",
# Taxis
"taxi": "taxi", "taxis": "taxi", "cab": "taxi", "cabs": "taxi"
}
# ===== DAY MAPPINGS =====
self.day_map = {
"monday": "Monday", "tuesday": "Tuesday", "wednesday": "Wednesday",
"thursday": "Thursday", "friday": "Friday",
"saturday": "Saturday", "sunday": "Sunday",
"weekend": ["Saturday", "Sunday"],
"weekday": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"]
}
# ===== LOCATION VARIANTS =====
self.location_variants = {
"adyar": ["adyar"],
"besant nagar": ["besant", "besant nagar", "besantnagar"],
"t nagar": ["t nagar", "tnagar", "t-nagar"],
"anna nagar": ["anna", "anna nagar", "annanagar"],
"velachery": ["velachery"],
"guindy": ["guindy"],
"thiruvanmiyur": ["thiruvanmiyur", "mylapore"],
"mylapore": ["mylapore"],
"koyambedu": ["koyambedu"],
"nungambakkam": ["nungambakkam", "nungam"],
"kotturpuram": ["kotturpuram"]
}
# ===== STATE MAPPINGS =====
self.state_map = {
"tn": "TN", "tamil": "TN", "tamil nadu": "TN",
"ka": "KA", "karnataka": "KA",
"kl": "KL", "kerala": "KL",
"ap": "AP", "andhra": "AP", "andhra pradesh": "AP",
"ts": "TS", "telangana": "TS",
"mh": "MH", "maharashtra": "MH",
"dl": "DL", "delhi": "DL",
"gj": "GJ", "gujarat": "GJ",
"rj": "RJ", "rajasthan": "RJ",
"up": "UP", "uttar pradesh": "UP", "uttar": "UP",
"wb": "WB", "west bengal": "WB",
"hr": "HR", "haryana": "HR",
"pb": "PB", "punjab": "PB"
}
# ===== TIME PERIOD MAPPINGS =====
self.time_periods = {
"morning": (5, 12), # 5 AM to 12 PM
"afternoon": (12, 17), # 12 PM to 5 PM
"evening": (17, 21), # 5 PM to 9 PM
"night": (21, 24), # 9 PM to 12 AM
"peak": (8, 10), # Peak traffic (8-10 AM)
"rush": (8, 10), # Rush hour (8-10 AM)
"midnight": (0, 4) # Midnight (0-4 AM)
}
# ===== EXTRACTION METHODS =====
def extract_plate(self, query):
"""Extract license plate number from query"""
# Standard Indian plate format: XX00XX0000
match = re.search(r'\b([A-Z]{2}\d{1,2}[A-Z]{1,3}\d{3,4})\b', query.upper())
return match.group(1) if match else None
def extract_state(self, query):
"""Extract state code from query"""
q = query.lower()
for key, state_code in self.state_map.items():
# Use word boundaries to avoid partial matches
if re.search(r'\b' + key + r'\b', q):
return state_code
return None
def extract_location(self, query):
"""Extract location with variant matching"""
q = query.lower()
# Sort by length (longest first) to match longer variants first
for canonical, variants in sorted(
self.location_variants.items(),
key=lambda x: max(len(v) for v in x[1]),
reverse=True
):
for variant in variants:
if variant in q:
return canonical
return None
def extract_vehicle_type(self, query):
"""Extract vehicle type with synonym resolution"""
q = query.lower()
# Sort by length (longest first) to match longer synonyms first
for synonym in sorted(self.vehicle_synonyms.keys(), key=len, reverse=True):
if re.search(r'\b' + synonym + r'\b', q):
return self.vehicle_synonyms[synonym]
return None
def extract_date_range(self, query):
"""Extract date range (from X to Y, between X and Y)"""
# Pattern: "from DD-MM-YYYY to DD-MM-YYYY" or "between DD-MM-YYYY and DD-MM-YYYY"
patterns = [
r'from\s+(\d{1,2})[-/](\d{1,2})[-/](\d{4})\s+to\s+(\d{1,2})[-/](\d{1,2})[-/](\d{4})',
r'between\s+(\d{1,2})[-/](\d{1,2})[-/](\d{4})\s+and\s+(\d{1,2})[-/](\d{1,2})[-/](\d{4})',
r'from\s+(\d{4}-\d{2}-\d{2})\s+to\s+(\d{4}-\d{2}-\d{2})',
r'between\s+(\d{4}-\d{2}-\d{2})\s+and\s+(\d{4}-\d{2}-\d{2})'
]
for pattern in patterns:
match = re.search(pattern, query, re.IGNORECASE)
if match:
groups = match.groups()
if len(groups) == 6: # DD-MM-YYYY format
start = f"{groups[2]}-{groups[1].zfill(2)}-{groups[0].zfill(2)}"
end = f"{groups[5]}-{groups[4].zfill(2)}-{groups[3].zfill(2)}"
return {"start": start, "end": end}
elif len(groups) == 2: # YYYY-MM-DD format
return {"start": groups[0], "end": groups[1]}
return None
def extract_date(self, query):
"""Extract single date and normalize format"""
# YYYY-MM-DD format
match = re.search(r'\d{4}-\d{2}-\d{2}', query)
if match:
return match.group(0)
# DD-MM-YYYY or DD/MM/YYYY format
match = re.search(r'(\d{1,2})[-/](\d{1,2})[-/](\d{4})', query)
if match:
day, month, year = match.groups()
return f"{year}-{month.zfill(2)}-{day.zfill(2)}"
return None
def extract_time_range(self, query):
"""Extract time range (after X, before X, between X and Y)"""
q = query.lower()
# Check for time period keywords first (morning, afternoon, evening, night)
for period, (start_hour, end_hour) in self.time_periods.items():
if period in q:
return {"start": start_hour, "end": end_hour}
# Pattern: "after HH:MM" or "after HH AM/PM"
after_match = re.search(r'after\s+(\d{1,2}):?(\d{0,2})\s*(am|pm)?', q)
if after_match:
hour = int(after_match.group(1))
period = after_match.group(3)
if period and period == "pm" and hour != 12:
hour += 12
elif period and period == "am" and hour == 12:
hour = 0
return {"start": hour, "end": 23}
# Pattern: "before HH:MM" or "before HH AM/PM"
before_match = re.search(r'before\s+(\d{1,2}):?(\d{0,2})\s*(am|pm)?', q)
if before_match:
hour = int(before_match.group(1))
period = before_match.group(3)
if period and period == "pm" and hour != 12:
hour += 12
elif period and period == "am" and hour == 12:
hour = 0
return {"start": 0, "end": hour}
# Pattern: "between HH AM/PM and HH AM/PM"
between_match = re.search(
r'between\s+(\d{1,2}):?(\d{0,2})\s*(am|pm)\s+and\s+(\d{1,2}):?(\d{0,2})\s*(am|pm)',
q
)
if between_match:
hour1 = int(between_match.group(1))
period1 = between_match.group(3)
if period1 == "pm" and hour1 != 12:
hour1 += 12
elif period1 == "am" and hour1 == 12:
hour1 = 0
hour2 = int(between_match.group(4))
period2 = between_match.group(6)
if period2 == "pm" and hour2 != 12:
hour2 += 12
elif period2 == "am" and hour2 == 12:
hour2 = 0
return {"start": min(hour1, hour2), "end": max(hour1, hour2)}
return None
def extract_hour(self, query):
"""Extract single hour"""
# Don't match if this is part of a time range
if any(k in query.lower() for k in ["between", "from", "to", "after", "before"]):
return None
match = re.search(r'(\d{1,2}):?(\d{0,2})\s*(am|pm)?', query.lower())
if match:
hour = int(match.group(1))
period = match.group(3)
if period == "pm" and hour != 12:
hour += 12
elif period == "am" and hour == 12:
hour = 0
return hour if 0 <= hour < 24 else None
return None
def extract_day(self, query):
"""Extract day of week"""
q = query.lower()
for day_key, day_values in self.day_map.items():
if day_key in q:
return day_values
return None
def extract_confidence(self, query):
"""Extract confidence threshold"""
match = re.search(r'(\d+(?:\.\d+)?)\s*(?:confidence|conf|accuracy)?', query.lower())
if match:
conf = float(match.group(1))
# Normalize to 0-1 if given as percentage
if conf > 1:
conf = conf / 100
return conf if 0 <= conf <= 1 else None
return None
def extract_filters(self, query):
"""Extract ALL filters simultaneously from query"""
return {
"plate": self.extract_plate(query),
"state": self.extract_state(query),
"location": self.extract_location(query),
"vehicle_type": self.extract_vehicle_type(query),
"date": self.extract_date(query),
"date_range": self.extract_date_range(query),
"day": self.extract_day(query),
"hour": self.extract_hour(query),
"time_range": self.extract_time_range(query),
"confidence": self.extract_confidence(query)
}
def detect_intents(self, query):
"""Detect advanced query intents"""
q = query.lower()
return {
"tracking": any(k in q for k in ["track", "history", "movement", "travel", "route", "where", "location"]),
"count": any(k in q for k in ["count", "how many", "total", "number of"]),
"analytics": any(k in q for k in ["analytics", "analysis", "statistics", "distribution"]),
"top": any(k in q for k in ["top", "most", "leading"]),
"latest": any(k in q for k in ["latest", "recent", "last", "new"]),
"hourly": any(k in q for k in ["hourly", "by hour", "per hour"]),
"daily": any(k in q for k in ["daily", "by day", "per day"]),
"location_based": any(k in q for k in ["by location", "density", "traffic"]),
"suspicious": any(k in q for k in ["suspicious", "repeated", "multiple", "across"]),
"aggregation": any(k in q for k in ["group", "aggregate", "sum", "average"])
}
def build_sql(self, filters, intents):
"""
Build production-grade SQL from filters and intents.
Handles complex aggregations, date ranges, time ranges, and conditions.
"""
# =========================================================
# ANALYTICS QUERIES (priority over other queries)
# =========================================================
if intents["top"] or (intents["analytics"] and "top" in " ".join([k for k in intents.keys() if intents[k]])):
return clean_sql("""
SELECT plate, state, COUNT(*) as detections
FROM vehicle_logs
GROUP BY plate, state
ORDER BY detections DESC
LIMIT 20;
""")
if intents["hourly"] and intents["analytics"]:
return clean_sql("""
SELECT hour, COUNT(*) as traffic
FROM vehicle_logs
GROUP BY hour
ORDER BY hour;
""")
if intents["location_based"] and intents["analytics"]:
return clean_sql("""
SELECT location, COUNT(*) as count
FROM vehicle_logs
WHERE location IS NOT NULL
GROUP BY location
ORDER BY count DESC
LIMIT 20;
""")
if intents["suspicious"]:
return clean_sql("""
SELECT plate, state, COUNT(*) as detections,
COUNT(DISTINCT location) as locations,
COUNT(DISTINCT date) as days
FROM vehicle_logs
GROUP BY plate, state
HAVING COUNT(*) > 5
ORDER BY detections DESC
LIMIT 20;
""")
# =========================================================
# BUILD WHERE CLAUSE FROM FILTERS
# =========================================================
where_conditions = []
# Plate filter
if filters["plate"]:
where_conditions.append(f"plate = '{filters['plate']}'")
# State filter
if filters["state"]:
where_conditions.append(f"state = '{filters['state']}'")
# Location filter
if filters["location"]:
where_conditions.append(f"LOWER(location) LIKE '%{filters['location'].lower()}%'")
# Vehicle type filter
if filters["vehicle_type"]:
where_conditions.append(f"LOWER(vehicle_type) LIKE '%{filters['vehicle_type'].lower()}%'")
# Date range filter
if filters["date_range"]:
start = filters["date_range"]["start"]
end = filters["date_range"]["end"]
where_conditions.append(f"date BETWEEN '{start}' AND '{end}'")
elif filters["date"]:
where_conditions.append(f"date = '{filters['date']}'")
# Day filter
if filters["day"]:
if isinstance(filters["day"], list):
day_conditions = [f"day = '{d}'" for d in filters["day"]]
where_conditions.append(f"({' OR '.join(day_conditions)})")
else:
where_conditions.append(f"day = '{filters['day']}'")
# Time range filter
if filters["time_range"]:
start = filters["time_range"]["start"]
end = filters["time_range"]["end"]
if start < end:
where_conditions.append(f"hour BETWEEN {start} AND {end}")
else: # Handles ranges like 9 PM to 4 AM (21 to 4)
where_conditions.append(f"(hour >= {start} OR hour <= {end})")
elif filters["hour"] is not None:
where_conditions.append(f"hour = {filters['hour']}")
# Confidence filter
if filters["confidence"] is not None:
where_conditions.append(f"vehicle_conf >= {filters['confidence']}")
# =========================================================
# GENERATE FINAL SQL
# =========================================================
where_clause = " AND ".join(where_conditions) if where_conditions else "1=1"
# Count queries
if intents["count"]:
if filters["plate"]:
sql = f"""
SELECT plate, COUNT(*) as detections
FROM vehicle_logs
WHERE {where_clause}
GROUP BY plate
ORDER BY detections DESC;
"""
else:
sql = f"""
SELECT COUNT(*) as total
FROM vehicle_logs
WHERE {where_clause};
"""
# Tracking queries (show detailed records)
elif intents["tracking"]:
sql = f"""
SELECT timestamp, plate, state, vehicle_type, location, camera_id, date, hour, day
FROM vehicle_logs
WHERE {where_clause}
ORDER BY timestamp DESC
LIMIT 100;
"""
# Hourly aggregation
elif intents["hourly"]:
sql = f"""
SELECT hour, COUNT(*) as traffic
FROM vehicle_logs
WHERE {where_clause}
GROUP BY hour
ORDER BY hour;
"""
# Location-based aggregation
elif intents["location_based"]:
sql = f"""
SELECT location, COUNT(*) as count
FROM vehicle_logs
WHERE {where_clause} AND location IS NOT NULL
GROUP BY location
ORDER BY count DESC;
"""
# Default: return all matching records
else:
sql = f"""
SELECT *
FROM vehicle_logs
WHERE {where_clause}
ORDER BY timestamp DESC
LIMIT 100;
"""
return clean_sql(sql)
def ask_llm(user_query):
"""
Production-grade hybrid NLP-to-SQL engine.
Handles complex real-world queries with multiple filters, date ranges, time ranges, and aggregations.
Features:
- Multi-filter extraction (plate, state, location, vehicle type, date, time, confidence)
- Date range support (from X to Y)
- Time range support (after X, before X, between X and Y)
- Time period recognition (morning, afternoon, evening, night, peak hour, rush hour)
- Advanced intent detection (tracking, count, analytics, top vehicles, suspicious vehicles, etc.)
- Production SQL generation with proper GROUP BY, HAVING, ORDER BY
- Timeout protection
Example queries:
- "show buses in adyar from 10-04-2026 to 18-10-2026"
- "show TN cars after 8 PM"
- "show suspicious vehicles detected in more than 5 locations"
- "show traffic density by location"
- "show top 10 most detected vehicles"
- "count bikes between 6 PM and 9 PM"
"""
try:
# Initialize the advanced filter extractor
extractor = FilterExtractor()
# Extract ALL filters from the query (simultaneous extraction)
filters = extractor.extract_filters(user_query)
# Detect query intents
intents = extractor.detect_intents(user_query)
# Log extracted information for debugging
print(f"\nπ QUERY ANALYSIS:")
print(f" Extracted Filters:")
print(f" - Plate: {filters['plate']}")
print(f" - State: {filters['state']}")
print(f" - Location: {filters['location']}")
print(f" - Vehicle Type: {filters['vehicle_type']}")
print(f" - Date: {filters['date']}")
print(f" - Date Range: {filters['date_range']}")
print(f" - Day: {filters['day']}")
print(f" - Hour: {filters['hour']}")
print(f" - Time Range: {filters['time_range']}")
print(f" - Confidence: {filters['confidence']}")
print(f" Detected Intents:")
intent_list = [k for k, v in intents.items() if v]
print(f" - {', '.join(intent_list) if intent_list else 'General query'}")
# Build SQL from filters and intents
sql = extractor.build_sql(filters, intents)
return sql
except Exception as e:
print(f"β Filter extraction error: {e}")
traceback.print_exc()
# Fallback to basic query
return clean_sql("SELECT * FROM vehicle_logs ORDER BY timestamp DESC LIMIT 10;")
# =========================================================
# QUERY EXECUTION
# =========================================================
def run_query(user_query):
"""Execute NLP-to-SQL query with timeout protection"""
sql = ""
try:
sql = ask_llm(user_query)
print("\n" + "="*40)
print("USER QUERY:")
print(user_query)
print("\nGENERATED SQL:")
print(sql)
print("="*40)
if engine is None:
return {
"query": user_query,
"error": "β Database not configured - DATABASE_URL missing",
"sql": sql,
"result": [],
"count": 0
}
try:
# Execute with timeout protection
with engine.connect() as conn:
# Set statement timeout to 30 seconds
conn.execute(text("SET statement_timeout = 30000")) # 30 seconds
result = conn.execute(text(sql))
rows = [
dict(r._mapping)
for r in result
]
return {
"query": user_query,
"sql": sql,
"count": len(rows),
"result": rows
}
except Exception as query_error:
print(f"β Query Execution Error (possible timeout): {query_error}")
return {
"query": user_query,
"error": f"Query timeout or error: {str(query_error)}",
"sql": sql,
"result": [],
"count": 0
}
except Exception as e:
print(f"β Run Query Error: {e}")
traceback.print_exc()
return {
"query": user_query,
"error": str(e),
"sql": sql if sql else "",
"result": [],
"count": 0
}
# =========================================================
# DATABASE OPERATIONS
# =========================================================
def save_detection(plate, state, vehicle_type, vehicle_conf, date, time):
"""Save a vehicle detection to the database
Note: The table schema uses timestamp, date, hour, day columns.
The 'time' parameter is extracted to hour for the hour column.
"""
try:
if engine is None:
print("β οΈ Engine not initialized - save_detection skipped")
return False
# Extract hour from time string (HH:MM:SS)
try:
hour = int(time.split(":")[0]) if time else 0
except:
hour = 0
# Extract day of week from date (simplified)
from datetime import datetime
try:
dt = datetime.strptime(date, "%Y-%m-%d")
day = dt.strftime("%A")
except:
day = "Unknown"
# Use timestamp for current time, date for the date field, hour for hourly grouping
query = f"""
INSERT INTO vehicle_logs
(plate, state, vehicle_type, vehicle_conf, date, hour, day, timestamp, camera_id, location)
VALUES ('{plate}', '{state}', '{vehicle_type}', {vehicle_conf}, '{date}', {hour}, '{day}', NOW(), 'CAM-01', 'default')
"""
with engine.connect() as conn:
conn.execute(text(query))
conn.commit()
print(f"β
Saved: {plate} from {state} at {time}")
return True
except Exception as e:
print(f"β Save Error: {e}")
traceback.print_exc()
return False
def health_check():
"""Check database health with timeout protection"""
try:
if engine is None:
return False, "β Database not configured"
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 10000")) # 10 second timeout
result = conn.execute(text("SELECT COUNT(*) FROM vehicle_logs"))
count = result.scalar()
return True, f"β
Database OK - {count} records"
except Exception as e:
print(f"β Health Check Error (timeout?): {e}")
return False, f"β Database Error: {str(e)}"
def get_vehicles_by_state():
"""Get vehicle count by state with timeout protection"""
try:
sql = """
SELECT state, COUNT(*) as count
FROM vehicle_logs
GROUP BY state
ORDER BY count DESC
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000")) # 15 second timeout
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β State Query Error (timeout?): {e}")
return []
def get_hourly_traffic():
"""Get traffic by hour with timeout protection"""
try:
sql = """
SELECT hour, COUNT(*) as traffic
FROM vehicle_logs
GROUP BY hour
ORDER BY hour
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000")) # 15 second timeout
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Hourly Traffic Error (timeout?): {e}")
return []
def get_top_plates():
"""Get top detected plates with timeout protection"""
try:
sql = """
SELECT plate, COUNT(*) as detections
FROM vehicle_logs
GROUP BY plate
ORDER BY detections DESC
LIMIT 20
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000")) # 15 second timeout
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Top Plates Error (timeout?): {e}")
return []
def get_suspicious_vehicles():
"""Get vehicles detected multiple times (potentially suspicious) with timeout protection"""
try:
sql = """
SELECT plate, state, COUNT(*) as detections,
COUNT(DISTINCT location) as locations,
COUNT(DISTINCT date) as days
FROM vehicle_logs
GROUP BY plate, state
HAVING COUNT(*) > 5
ORDER BY detections DESC
LIMIT 20
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000")) # 15 second timeout
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Suspicious Vehicles Error (timeout?): {e}")
return []
# =========================================================
# ADVANCED ANALYTICAL FUNCTIONS
# =========================================================
def get_route_history(plate, limit=50):
"""
Get route history for a specific vehicle.
Shows all detections in chronological order with locations.
"""
try:
sql = f"""
SELECT timestamp, plate, state, location, camera_id, date, hour, day
FROM vehicle_logs
WHERE plate = '{plate}'
ORDER BY timestamp DESC
LIMIT {limit}
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Route History Error: {e}")
return []
def get_vehicles_by_location(location):
"""Get all vehicles detected in a specific location"""
try:
sql = f"""
SELECT DISTINCT plate, state, COUNT(*) as detections
FROM vehicle_logs
WHERE LOWER(location) LIKE '%{location.lower()}%'
GROUP BY plate, state
ORDER BY detections DESC
LIMIT 50
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Vehicles by Location Error: {e}")
return []
def get_multi_location_detections(min_locations=2):
"""Get vehicles detected across multiple locations (suspicious activity indicator)"""
try:
sql = f"""
SELECT plate, state, COUNT(*) as detections,
COUNT(DISTINCT location) as locations,
COUNT(DISTINCT date) as days
FROM vehicle_logs
GROUP BY plate, state
HAVING COUNT(DISTINCT location) >= {min_locations}
ORDER BY locations DESC, detections DESC
LIMIT 20
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Multi-Location Detection Error: {e}")
return []
def get_peak_traffic_hours():
"""Identify peak traffic hours based on detections"""
try:
sql = """
SELECT hour, COUNT(*) as traffic_count,
ROUND(100.0 * COUNT(*) / SUM(COUNT(*)) OVER (), 2) as percentage
FROM vehicle_logs
GROUP BY hour
ORDER BY traffic_count DESC
LIMIT 10
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Peak Traffic Hours Error: {e}")
return []
def get_vehicle_density_by_location():
"""Get traffic density (vehicle count) by location"""
try:
sql = """
SELECT location, COUNT(*) as vehicle_count,
COUNT(DISTINCT plate) as unique_vehicles,
ROUND(100.0 * COUNT(*) / SUM(COUNT(*)) OVER (), 2) as percentage
FROM vehicle_logs
WHERE location IS NOT NULL
GROUP BY location
ORDER BY vehicle_count DESC
LIMIT 20
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Vehicle Density Error: {e}")
return []
def get_high_confidence_detections(confidence_threshold=0.9):
"""Get detections with high confidence scores"""
try:
sql = f"""
SELECT plate, state, vehicle_type, COUNT(*) as detections,
ROUND(AVG(vehicle_conf), 3) as avg_confidence
FROM vehicle_logs
WHERE vehicle_conf >= {confidence_threshold}
GROUP BY plate, state, vehicle_type
ORDER BY avg_confidence DESC, detections DESC
LIMIT 30
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β High Confidence Detections Error: {e}")
return []
def get_daily_traffic_summary(date=None):
"""Get traffic summary for a specific date or today"""
try:
if date:
where_clause = f"WHERE date = '{date}'"
else:
where_clause = "WHERE date = CURDATE()"
sql = f"""
SELECT
COUNT(*) as total_vehicles,
COUNT(DISTINCT plate) as unique_vehicles,
COUNT(DISTINCT location) as locations_covered,
COUNT(DISTINCT hour) as peak_hours
FROM vehicle_logs
{where_clause}
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
row = dict(result.fetchone()._mapping)
return row
except Exception as e:
print(f"β Daily Summary Error: {e}")
return {}
def get_state_wise_distribution():
"""Get vehicle distribution across states"""
try:
sql = """
SELECT state, COUNT(*) as detections,
COUNT(DISTINCT plate) as unique_vehicles,
ROUND(100.0 * COUNT(*) / SUM(COUNT(*)) OVER (), 2) as percentage
FROM vehicle_logs
GROUP BY state
ORDER BY detections DESC
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β State Distribution Error: {e}")
return []
def query_by_date_range(start_date, end_date, state=None, location=None):
"""Query vehicles detected within a date range"""
try:
where_conditions = [f"date BETWEEN '{start_date}' AND '{end_date}'"]
if state:
where_conditions.append(f"state = '{state}'")
if location:
where_conditions.append(f"LOWER(location) LIKE '%{location.lower()}%'")
where_clause = " AND ".join(where_conditions)
sql = f"""
SELECT *
FROM vehicle_logs
WHERE {where_clause}
ORDER BY timestamp DESC
LIMIT 500
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 30000")) # Longer timeout for large ranges
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Date Range Query Error: {e}")
return []
def query_by_time_range(start_hour, end_hour, location=None, vehicle_type=None):
"""Query vehicles detected within a time range (hour of day)"""
try:
where_conditions = []
if start_hour < end_hour:
where_conditions.append(f"hour BETWEEN {start_hour} AND {end_hour}")
else: # Handles ranges like 9 PM to 4 AM (21 to 4)
where_conditions.append(f"(hour >= {start_hour} OR hour <= {end_hour})")
if location:
where_conditions.append(f"LOWER(location) LIKE '%{location.lower()}%'")
if vehicle_type:
where_conditions.append(f"LOWER(vehicle_type) LIKE '%{vehicle_type.lower()}%'")
where_clause = " AND ".join(where_conditions)
sql = f"""
SELECT *
FROM vehicle_logs
WHERE {where_clause}
ORDER BY timestamp DESC
LIMIT 200
"""
with engine.connect() as conn:
conn.execute(text("SET statement_timeout = 15000"))
result = conn.execute(text(sql))
rows = [dict(r._mapping) for r in result]
return rows
except Exception as e:
print(f"β Time Range Query Error: {e}")
return []
|