functions.py (29927B)
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 | import sys import os import re import json import base64 import shutil import asyncio import traceback from datetime import datetime from fastapi import UploadFile, HTTPException, Form from qdrant_client import models from langchain_core.messages import SystemMessage, HumanMessage from Qdrant.Store import store_fmu, COLLECTION_NAME from Qdrant.Client import client # 🛡️ GUARDRAILS from agent.guardrails.validation import sanitize_input # Import Agent instances from agent.sub_agents.fetching_agent import FetchingAgent from agent.sub_agents.judge_agent import JudgeAgent from agent.sub_agents.atmospheric_agent import AtmosphericAgent from agent.sub_agents.water_agent import WaterAgent from agent.sub_agents.Supervisor import SupervisorAgent from agent.sub_agents.Researcher import ResearcherAgent from agent.sub_agents.Explainer import ExplainerAgent # Global singletons to avoid re-initializing heavy models per request fetcher = FetchingAgent() judge = JudgeAgent() atmos_agent = AtmosphericAgent() water_agent = WaterAgent() researcher = ResearcherAgent() supervisor = SupervisorAgent(researcher_agent=researcher) explainer = ExplainerAgent() def filter_numeric_sensors(raw_sensors: dict): wanted = {"pH", "EC", "temp", "humidity"} clean = {} for k, v in raw_sensors.items(): if k in wanted: try: clean[k] = float(v) except: pass return clean def get_next_sequence_number(crop_id: str) -> int: try: count_filter = models.Filter( must=[ models.FieldCondition( key="crop_id", match=models.MatchValue(value=crop_id) ) ] ) count_result = client.count( collection_name=COLLECTION_NAME, count_filter=count_filter ) return count_result.count + 1 except: return 1 # --- ENDPOINTS --- async def process_ingest( file: UploadFile, sensors_str: str, metadata_str: str, builder ): """ Handles file saving, FMU creation, and storage logic. """ temp_filename = f"temp_{file.filename}" with open(temp_filename, "wb") as buffer: shutil.copyfileobj(file.file, buffer) try: raw_sensor_data = json.loads(sensors_str) meta_data = json.loads(metadata_str) abs_image_path = os.path.abspath(temp_filename) clean_sensors = filter_numeric_sensors(raw_sensor_data) # 1. Identity Logic target_crop = meta_data.get("crop", "Unknown") target_crop_id = meta_data.get("crop_id") or raw_sensor_data.get("crop_id") if not target_crop_id: target_crop_id = f"Batch_{target_crop}_{datetime.now().strftime('%Y%m')}" seq_num = get_next_sequence_number(target_crop_id) print(f"📥 Ingesting {target_crop_id} | Snapshot #{seq_num}") # 2. Metadata Injection meta_data.update( { "crop_id": target_crop_id, "sequence_number": seq_num, "sensor_data": clean_sensors, "action_taken": meta_data.get("action_taken", "PENDING_ACTION"), "outcome": meta_data.get("outcome", "PENDING_OBSERVATION"), } ) # 3. Store fmu = builder.create_fmu(abs_image_path, clean_sensors, meta_data) store_fmu(fmu) return {"status": "success", "fmu_id": fmu.id} finally: if os.path.exists(temp_filename): os.remove(temp_filename) async def process_search(file: UploadFile, sensors_str: str, builder): """ SIMPLIFIED AGENT LOOP: Atmos + Water + Supervisor ONLY. """ temp_filename = f"temp_search_{file.filename}" try: # --- 1. SETUP: File & Base64 --- file_content = await file.read() # Save to disk (Required for FMU Builder) with open(temp_filename, "wb") as buffer: buffer.write(file_content) # Encode to Base64 (Required for Agents) image_b64 = base64.b64encode(file_content).decode("utf-8") abs_image_path = os.path.abspath(temp_filename) # --- 2. DATA: Parse Sensors --- raw_sensor_data = json.loads(sensors_str) clean_sensors = filter_numeric_sensors(raw_sensor_data) target_crop = raw_sensor_data.get("crop", "Unknown") target_crop_id = raw_sensor_data.get("crop_id") if not target_crop_id: target_crop_id = f"Batch_{target_crop}_{datetime.now().strftime('%Y%m')}" seq_num = get_next_sequence_number(target_crop_id) # Metadata construction metadata = { "crop": target_crop, "stage": raw_sensor_data.get("stage") or raw_sensor_data.get("metadata", {}).get("stage", "seedling"), "crop_id": target_crop_id, "sequence_number": seq_num, "sensors": clean_sensors, "action_taken": "PENDING_DECISION", "outcome": "PENDING", } # Create and Store FMU (Snapshot of current state) query_fmu = builder.create_fmu(abs_image_path, clean_sensors, metadata=metadata) store_fmu(query_fmu) print(f"📝 Processing FMU ID: {query_fmu.id}") # --- 3. CONTEXT (Minimal) --- # Static strategy for web simplicity strat_instr = "Maintain optimal crop-specific parameters." strat_name = "STANDARD_MAINTENANCE" action_idx = 0 # --- 4. RESEARCH --- hits = client.query_points( collection_name=COLLECTION_NAME, query=query_fmu.vector, limit=3, with_payload=True, ) points_list = hits.points if hasattr(hits, "points") else hits research_query = f"optimal hydroponic conditions for {target_crop} in {metadata['stage']} stage" research_context = researcher.search(research_query) # --- 4. SUB-AGENTS (Atmos & Water) --- print("🧠 Specialists Planning...") # Pass empty strings for research/history, pass image_b64 for visuals atmos_plan = atmos_agent.reason( sensors=clean_sensors, research=research_context, strategy=strat_instr, history="No history provided.", image_b64=image_b64, ) water_plan = water_agent.reason( sensors=clean_sensors, research=research_context, strategy=strat_instr, history="No history provided.", image_b64=image_b64, ) print(f"🌬️ Atmospheric Plan:\n{atmos_plan}") print(f"💧 Water Plan:\n{water_plan}") # --- 5. SUPERVISOR (Synthesis) --- print("👮 Supervisor Finalizing...") final_decision_json = supervisor.synthesize_plan( atmos_plan, water_plan, query_fmu, "No history context.", strategy_info=(strat_name, strat_instr, action_idx), ) sub_agent_reports = {"Atmospheric": atmos_plan, "Water": water_plan} current_fmu_context = { "metadata": metadata, "payload": {"sensors": clean_sensors}, "vector": ( query_fmu.vector.tolist() if hasattr(query_fmu.vector, "tolist") else query_fmu.vector ), } similar_fmus_formatted = [ {"score": h.score, "payload": h.payload} for h in points_list ] explanation_log = explainer.explain( current_fmu=current_fmu_context, similar_fmus=similar_fmus_formatted, sub_agent_reports=sub_agent_reports, final_decision=final_decision_json, ) # --- 6. DB UPDATE --- # Record the decision client.set_payload( collection_name=COLLECTION_NAME, points=[query_fmu.id], payload={ "action_taken": str(final_decision_json), "outcome": "PENDING_OBSERVATION", "strategic_intent": strat_name, }, ) return { "status": "success", "new_fmu_id": query_fmu.id, "agent_decision": final_decision_json, "explanation": explanation_log, "search_results": [ {"id": p.id, "score": p.score, "payload": p.payload} for p in points_list ], } except Exception as e: print(f"❌ Pipeline Error: {e}") traceback.print_exc() raise HTTPException(status_code=500, detail=str(e)) finally: # Cleanup temp file if os.path.exists(temp_filename): try: os.remove(temp_filename) except Exception: pass async def process_cycle_stream(file: UploadFile, sensors_str: str, builder): """ REAL-TIME AGENT LOOP: Streams step-by-step reasoning via SSE. """ temp_filename = f"temp_stream_{file.filename}" try: yield f"data: {json.dumps({'agent': 'SYSTEM', 'text': '🚀 Initializing Demeter Orchestrator...'})}\n\n" await asyncio.sleep(0.5) # --- 1. SETUP --- file_content = await file.read() with open(temp_filename, "wb") as buffer: buffer.write(file_content) image_b64 = base64.b64encode(file_content).decode("utf-8") abs_image_path = os.path.abspath(temp_filename) yield f"data: {json.dumps({'agent': 'FETCHER', 'text': '📡 Requesting data from simulator...'})}\n\n" await asyncio.sleep(0.5) # --- 2. DATA --- raw_sensor_data = json.loads(sensors_str) clean_sensors = filter_numeric_sensors(raw_sensor_data) target_crop = raw_sensor_data.get("crop", "Unknown") target_crop_id = raw_sensor_data.get("crop_id") if not target_crop_id: target_crop_id = f"Batch_{target_crop}_{datetime.now().strftime('%Y%m')}" seq_num = get_next_sequence_number(target_crop_id) yield f"data: {json.dumps({'agent': 'FETCHER', 'text': f'🔢 Sequence for {target_crop_id}: {seq_num}'})}\n\n" await asyncio.sleep(0.3) metadata = { "crop": target_crop, "stage": raw_sensor_data.get("stage") or raw_sensor_data.get("metadata", {}).get("stage", "seedling"), "crop_id": target_crop_id, "sequence_number": seq_num, "sensors": clean_sensors, "action_taken": "PENDING_DECISION", "outcome": "PENDING", } query_fmu = builder.create_fmu(abs_image_path, clean_sensors, metadata=metadata) store_fmu(query_fmu) yield f"data: {json.dumps({'agent': 'FETCHER', 'text': f'🧠 FMU Created (ID: {query_fmu.id}) — Handing off to specialists.'})}\n\n" await asyncio.sleep(0.5) # --- 3. RESEARCH --- yield f"data: {json.dumps({'agent': 'RESEARCHER', 'text': f'🔍 Searching knowledge base for {target_crop} {metadata['stage']} stage...'})}\n\n" research_query = f"optimal hydroponic conditions for {target_crop} in {metadata['stage']} stage" research_context = researcher.search(research_query) await asyncio.sleep(0.5) yield f"data: {json.dumps({'agent': 'RESEARCHER', 'text': ' 📚 Found relevant scientific data.'})}\n\n" # --- 3.5 JUDGE: Review previous cycle and update bandit --- yield f"data: {json.dumps({'agent': 'JUDGE', 'text': '⚖️ Judge reviewing previous cycle outcome...'})}\n\n" await asyncio.sleep(0.3) judge_result = judge.review_previous_cycle(query_fmu, image_b64) # --- 3.6 BANDIT LEARNING: Update model based on previous cycle outcome --- if judge_result: yield f"data: {json.dumps({'agent': 'SUPERVISOR', 'text': '🧠 Supervisor learning from outcome...'})}\n\n" await asyncio.sleep(0.3) supervisor.learn_from_outcome(query_fmu, judge_result) await asyncio.sleep(0.3) # --- 4. AGENTS --- strat_name, strat_instr, action_idx = supervisor.get_strategic_goal(query_fmu) yield f"data: {json.dumps({'agent': 'BANDIT', 'text': f'🎰 BANDIT STRATEGY: {strat_name}'})}\n\n" await asyncio.sleep(0.3) yield f"data: {json.dumps({'agent': 'ATMOSPHERIC', 'text': '🌬️ Atmospheric Agent — deciding...'})}\n\n" atmos_plan = atmos_agent.reason( sensors=clean_sensors, research=research_context, strategy=strat_instr, history="No history provided.", image_b64=image_b64, ) yield f"data: {json.dumps({'agent': 'ATMOSPHERIC', 'text': f' ✅ Plan Approved: {json.dumps(atmos_plan)}'})}\n\n" await asyncio.sleep(0.5) yield f"data: {json.dumps({'agent': 'WATER', 'text': '💧 Water Agent — deciding...'})}\n\n" water_plan = water_agent.reason( sensors=clean_sensors, research=research_context, strategy=strat_instr, history="No history provided.", image_b64=image_b64, ) yield f"data: {json.dumps({'agent': 'WATER', 'text': f' ✅ Plan Approved: {json.dumps(water_plan)}'})}\n\n" await asyncio.sleep(0.5) # --- 5. SUPERVISOR --- yield f"data: {json.dumps({'agent': 'SUPERVISOR', 'text': ' 🔗 Supervisor Merging Plans...'})}\n\n" await asyncio.sleep(0.3) yield f"data: {json.dumps({'agent': 'SUPERVISOR', 'text': ' ⚖️ Supervisor Judging...'})}\n\n" final_decision_json = supervisor.synthesize_plan( atmos_plan, water_plan, query_fmu, "No history context.", strategy_info=(strat_name, strat_instr, action_idx), ) await asyncio.sleep(0.5) yield f"data: {json.dumps({'agent': 'SUPERVISOR', 'text': ' ✅ Plan looks solid.'})}\n\n" # --- 6. FINAL --- yield f"data: {json.dumps({'agent': 'SUPERVISOR', 'text': f'🚜 Activating Hardware: {json.dumps(final_decision_json)}'})}\n\n" await asyncio.sleep(0.5) yield f"data: {json.dumps({'agent': 'SYSTEM', 'text': '✅ Sent to Simulator. Cycle complete.', 'final_action': final_decision_json, 'phase': 'done'})}\n\n" except Exception as e: yield f"data: {json.dumps({'agent': 'SYSTEM', 'text': f'❌ Error: {str(e)}', 'level': 'error'})}\n\n" finally: if os.path.exists(temp_filename): try: os.remove(temp_filename) except Exception: pass def extract_json(text): """ Robustly extracts the first valid JSON object from text string. """ cleaned = re.sub(r"<think>.*?</think>", "", text, flags=re.DOTALL) match = re.search(r"\{.*\}", cleaned, re.DOTALL) if match: try: return json.loads(match.group(0)) except json.JSONDecodeError: pass return None async def process_text_query(text: str, crop_id: str = None): """ HYBRID FILTER ENGINE: Uses LLM to extract Exact/Range/Text filters When crop_id is provided the caller has selected a specific crop, so we inject a should-match for that crop_id to bias results toward it. """ # 🛡️ GUARDRAIL: Check for injection attempts and off-topic queries sanitized_text, violations = sanitize_input(text) if violations: print(f"⚠️ Query Security Alert:") for v in violations: print(f" {v}") if len(violations) >= 3: return { "status": "error", "message": "❌ Query blocked: Multiple security violations detected. Please ask only farm-related questions.", "violations": violations } # Use sanitized input text = sanitized_text system_prompt = """ You are a Database Translator for an AI Hydroponic Farm. Your goal: Convert natural language queries into a precise JSON filter object. AVAILABLE METADATA FIELDS (String): - crop (e.g., "Tomato", "Lettuce", "Basil") - stage (e.g., "Seedling", "Vegetative", "Flowering") - outcome (e.g., "Positive", "Negative") AVAILABLE SENSOR FIELDS (Numeric): - pH (float, e.g., 5.5 to 6.5) - EC (float, e.g., 1.0 to 3.0) - temp (float, e.g., 20.0 to 30.0) - humidity (float, e.g., 40.0 to 80.0) AVAILABLE AGENT LOGIC FIELDS (Text/Substring): - action_taken (Use this to search for specific agent decisions like "FLUSH", "INCREASE_WATER", "DECREASE_NUTRIENTS") - strategic_intent (e.g., "STANDARD_MAINTENANCE", "RECOVERY") OUTPUT SCHEMA: { "filters": [ { "field": "field_name", "operator": "exact" | "text" | "gt" | "lt" | "gte" | "lte", "value": string_or_number } ] } RULES: 1. Use "exact" for exact string matches (crop, stage, outcome, strategic_intent). 2. Use "text" for partial/substring matches (CRITICAL for 'action_taken' since it contains stringified JSON records). 3. Use "gt", "lt", "gte", "lte" for numeric sensor comparisons. 4. Translate queries into English (e.g., "Tamatar" -> "Tomato", "Kharab" -> "Negative"). 5. For queries about "similar crops" or "crops like X", extract the crop name as an exact filter on 'crop'. EXAMPLE: "Find tomato crops in vegetative stage with pH over 6.0 where the agent flushed the tank" { "filters": [ { "field": "crop", "operator": "exact", "value": "Tomato" }, { "field": "stage", "operator": "exact", "value": "Vegetative" }, { "field": "pH", "operator": "gt", "value": 6.0 }, { "field": "action_taken", "operator": "text", "value": "FLUSH" } ] } Return ONLY valid JSON. If no filters apply, return { "filters": [] }. """ try: response = supervisor.model.invoke( [SystemMessage(content=system_prompt), HumanMessage(content=text)] ) raw_output = response.content filter_logic = extract_json(raw_output) if not filter_logic: return { "status": "error", "message": "Failed to parse JSON filter.", "query_logic": raw_output, } qdrant_conditions = [] post_filters = [] if "filters" in filter_logic: for rule in filter_logic["filters"]: field = rule.get("field") op = rule.get("operator", "exact") val = rule.get("value") if not field or val is None: continue # Text substring matches (Python post-filter) if op == "text": post_filters.append((field, str(val).lower())) continue # Numeric sensor fields (nested routing) if field.lower() in ["ph", "ec", "temp", "humidity"]: field_norm = { "ph": "pH", "ec": "EC", "temp": "temp", "humidity": "humidity", }.get(field.lower(), field) path1 = f"sensors.{field_norm}" path2 = f"sensor_data.{field_norm}" if op == "exact": qdrant_conditions.append( models.Filter( should=[ models.FieldCondition( key=path1, match=models.MatchValue(value=val) ), models.FieldCondition( key=path2, match=models.MatchValue(value=val) ), ] ) ) else: try: num_val = float(val) range_kwargs = {op: num_val} qdrant_conditions.append( models.Filter( should=[ models.FieldCondition( key=path1, range=models.Range(**range_kwargs), ), models.FieldCondition( key=path2, range=models.Range(**range_kwargs), ), ] ) ) except ValueError: pass else: # Exact string fields qdrant_conditions.append( models.FieldCondition( key=field, match=models.MatchValue(value=val) ) ) # Build Qdrant filter scroll_filter = ( models.Filter(must=qdrant_conditions) if qdrant_conditions else None ) results, _ = client.scroll( collection_name=COLLECTION_NAME, scroll_filter=scroll_filter, limit=100, with_payload=True, with_vectors=False, ) # Python post-filter (for text/substring fields like action_taken) filtered_results = [] for res in results: payload = res.payload or {} passed = True for pf_field, pf_val in post_filters: if pf_val not in str(payload.get(pf_field, "")).lower(): passed = False break if passed: filtered_results.append(res) if len(filtered_results) >= 10: break # If a specific crop was selected, sort its results to the top if crop_id: filtered_results.sort( key=lambda p: 0 if p.payload.get("crop_id") == crop_id else 1 ) return { "status": "success", "results": [ {"id": str(p.id), "score": 1.0, "payload": p.payload} for p in filtered_results ], "query_logic": filter_logic, } except Exception as e: print(f"❌ Text Search Error: {e}") import traceback traceback.print_exc() return {"status": "error", "message": str(e)} async def process_audio_search(file: UploadFile): import whisper temp_filename = f"temp_audio_{file.filename}" try: with open(temp_filename, "wb") as buffer: shutil.copyfileobj(file.file, buffer) model = whisper.load_model("base") result = model.transcribe(temp_filename) detected_text = result["text"].strip() # This ensures we get the same RAG/Qdrant logic as text queries response_data = await process_text_query(detected_text) # Inject the transcription so the UI can show what was heard response_data["transcription"] = detected_text return response_data except Exception as e: print(f"❌ Audio Search Error: {e}") return {"status": "error", "message": str(e)} finally: # Cleanup temp file if os.path.exists(temp_filename): os.remove(temp_filename) async def process_ask_query(query: str, context: str, language: str): """ Answers natural language questions about the farm using pre-built context from the frontend. """ try: # 🛡️ GUARDRAIL: Check for injection attempts and off-topic queries sanitized_query, violations = sanitize_input(query) if violations: print(f"⚠️ Query Security Alert:") for v in violations: print(f" {v}") if len(violations) >= 3: return { "status": "error", "message": " Question blocked: Multiple security violations detected. Please ask only farm-related questions.", "violations": violations } # Use sanitized input query = sanitized_query lang_instr = ( "Respond entirely in Hindi." if language == "hi" else "Respond entirely in English." ) system_prompt = f"""You are Demeter Intelligence — an expert AI agronomist embedded in a hydroponic farm management system. ROLE: - Answer questions about crop health, sensor readings, agent decisions, and farm trends - Compare crops when asked, citing their crop_id - Give actionable recommendations grounded in the data - Be concise: lead with the direct answer, then explain - SCOPE: Answer ONLY farm-related questions. Politely decline off-topic queries. REASONING: Wrap your internal reasoning in <thinking>...</thinking> before your answer. Keep thinking brief — focus on which crops are relevant and what the data says. FARM DATA: {context} LANGUAGE: {lang_instr}""" response = supervisor.model.invoke( [SystemMessage(content=system_prompt), HumanMessage(content=query)] ) raw_text = response.content thinking = "" answer = raw_text # Support both <thinking> and <think> tags think_match = re.search( r"<think(?:ing)?>(.*?)</think(?:ing)?>", raw_text, re.DOTALL ) if think_match: thinking = think_match.group(1).strip() answer = re.sub( r"<think(?:ing)?>(.*?)</think(?:ing)?>", "", raw_text, flags=re.DOTALL ).strip() return {"status": "success", "thinking": thinking, "answer": answer} except Exception as e: traceback.print_exc() return {"status": "error", "message": str(e)} async def process_similar_crops(crop_id: str, crop_name: str, payload_json: str): """ Find cosine-similar crops using the latest stored vector for crop_id. Falls back to a zero-padded sensor vector if no stored vector is found. """ import json as _json import numpy as np try: # Step 1: Scroll all points for this crop, requesting vectors points, _ = client.scroll( collection_name=COLLECTION_NAME, scroll_filter=models.Filter( must=[ models.FieldCondition( key="crop_id", match=models.MatchValue(value=crop_id), ) ] ), limit=100, with_payload=True, with_vectors=True, ) query_vector = None if points: # Pick the point with the highest sequence_number best = max(points, key=lambda p: p.payload.get("sequence_number", 0)) v = best.vector if v is not None: # Handle named-vector collections (dict) vs plain list if isinstance(v, dict): v = next(iter(v.values())) if len(v) == 516: query_vector = list(v) else: print( f"[SimilarCrops] Unexpected vector length {len(v)} for {crop_id}" ) # Step 2: Sensor-only fallback — build a 516-dim vector # Vision dims (0–511) stay zero; sensor dims (512–515) are filled in if query_vector is None: print( f"[SimilarCrops] No usable stored vector for {crop_id}, using sensor fallback" ) payload = _json.loads(payload_json) if payload_json else {} raw_sensors = payload.get("sensor_data") or payload.get("sensors") or {} SENSOR_ORDER = ["pH", "EC", "temp", "humidity"] SENSOR_DEFAULTS = {"pH": 6.0, "EC": 1.5, "temp": 23.0, "humidity": 65.0} full_vec = np.zeros(516, dtype=np.float32) for i, key in enumerate(SENSOR_ORDER): raw = raw_sensors.get(key) val = raw[-1] if isinstance(raw, list) and raw else raw try: full_vec[512 + i] = ( float(val) if val is not None else SENSOR_DEFAULTS[key] ) except (TypeError, ValueError): full_vec[512 + i] = SENSOR_DEFAULTS[key] query_vector = full_vec.tolist() # Step 3: Vector search, excluding the source crop results = client.query_points( collection_name=COLLECTION_NAME, query=query_vector, query_filter=models.Filter( must_not=[ models.FieldCondition( key="crop_id", match=models.MatchValue(value=crop_id), ) ] ), limit=6, with_payload=True, with_vectors=False, ) hits = results.points if hasattr(results, "points") else results return { "status": "success", "results": [ { "id": str(r.id), "score": round(float(r.score), 4), "payload": r.payload, } for r in hits ], } except Exception as e: traceback.print_exc() return {"status": "error", "message": str(e), "results": []} |