Files
Ai/rag/services/fertilization.py
T

168 lines
5.5 KiB
Python
Raw Normal View History

2026-03-19 22:54:29 +03:30
"""
سرویس توصیه کودهی — بدون API، قابل فراخوانی از سایر سرویس‌ها
از RAG با پایگاه دانش fertilization و لحن مخصوص کودهی استفاده می‌کند.
"""
import json
import logging
2026-04-24 02:50:27 +03:30
from farm_data.models import SensorData
2026-03-19 22:54:29 +03:30
from rag.api_provider import get_chat_client
2026-04-24 02:12:06 +03:30
from rag.chat import (
_complete_audit_log,
_create_audit_log,
_fail_audit_log,
_load_service_tone,
build_rag_context,
)
2026-03-22 03:08:27 +03:30
from rag.config import load_rag_config, RAGConfig, get_service_config
2026-03-19 22:54:29 +03:30
from rag.user_data import build_plant_text
logger = logging.getLogger(__name__)
KB_NAME = "fertilization"
2026-03-22 03:08:27 +03:30
SERVICE_ID = "fertilization"
2026-03-19 22:54:29 +03:30
DEFAULT_FERTILIZATION_PROMPT = (
"بر اساس داده‌های خاک (NPK، pH)، مشخصات گیاه، مرحله رشد و پایگاه دانش کودهی، "
"یک توصیه کودهی دقیق بده. "
2026-03-21 23:50:36 +03:30
"پاسخ حتماً به فرمت JSON با ساختار زیر باشد:\n"
'{\n'
' "plan": {\n'
' "npkRatio": "<str>",\n'
' "amountPerHectare": "<str>",\n'
' "applicationMethod": "<str>",\n'
' "applicationInterval": "<str>",\n'
' "reasoning": "<str>"\n'
' }\n'
'}\n'
"فقط JSON خروجی بده، بدون توضیح اضافی. "
"مقادیر را بر اساس شرایط واقعی خاک و گیاه محاسبه کن."
2026-03-19 22:54:29 +03:30
)
def get_fertilization_recommendation(
sensor_uuid: str,
plant_name: str | None = None,
growth_stage: str | None = None,
query: str | None = None,
config: RAGConfig | None = None,
limit: int = 8,
) -> dict:
"""
توصیه کودهی برای یک سنسور (کاربر).
از RAG با پایگاه دانش fertilization استفاده می‌کند.
Args:
sensor_uuid: شناسه سنسور کاربر
plant_name: نام گیاه (برای بارگذاری مشخصات از جدول Plant)
growth_stage: مرحله رشد گیاه
query: سوال اختیاری
config: تنظیمات RAG
limit: تعداد چانک‌های بازیابی‌شده
Returns:
dict با کلیدهای fertilizer_needed, fertilizer_type, amount_kg_per_hectare, reason, npk_status, raw_response
"""
cfg = config or load_rag_config()
2026-03-22 03:08:27 +03:30
service = get_service_config(SERVICE_ID, cfg)
service_cfg = RAGConfig(
embedding=cfg.embedding,
qdrant=cfg.qdrant,
chunking=cfg.chunking,
llm=service.llm,
knowledge_bases=cfg.knowledge_bases,
services=cfg.services,
chromadb=cfg.chromadb,
)
client = get_chat_client(service_cfg)
model = service.llm.model
2026-03-19 22:54:29 +03:30
user_query = query or "توصیه کودهی برای مزرعه من چیست؟"
2026-04-24 02:50:27 +03:30
sensor = (
SensorData.objects.prefetch_related("plants")
.filter(farm_uuid=sensor_uuid)
.first()
)
resolved_plant_name = plant_name
if not resolved_plant_name and sensor is not None:
plant = sensor.plants.first()
if plant is not None:
resolved_plant_name = plant.name
2026-03-19 22:54:29 +03:30
context = build_rag_context(
2026-03-22 03:08:27 +03:30
user_query, sensor_uuid, config=cfg, limit=limit, kb_name=KB_NAME, service_id=SERVICE_ID,
2026-03-19 22:54:29 +03:30
)
extra_parts: list[str] = []
2026-04-24 02:50:27 +03:30
if resolved_plant_name and growth_stage:
plant_text = build_plant_text(resolved_plant_name, growth_stage)
2026-03-19 22:54:29 +03:30
if plant_text:
extra_parts.append("[اطلاعات گیاه]\n" + plant_text)
if extra_parts:
context = "\n\n---\n\n".join(extra_parts) + ("\n\n---\n\n" + context if context else "")
2026-03-22 03:08:27 +03:30
tone = _load_service_tone(service, cfg)
2026-03-19 22:54:29 +03:30
system_parts = [tone] if tone else []
2026-03-22 03:08:27 +03:30
if service.system_prompt:
system_parts.append(service.system_prompt)
2026-03-19 22:54:29 +03:30
system_parts.append(DEFAULT_FERTILIZATION_PROMPT)
if context:
system_parts.append("\n\n" + context)
system_content = "\n".join(system_parts)
messages = [
{"role": "system", "content": system_content},
{"role": "user", "content": user_query},
]
2026-04-24 02:12:06 +03:30
audit_log = _create_audit_log(
farm_uuid=sensor_uuid,
service_id=SERVICE_ID,
model=model,
query=user_query,
system_prompt=system_content,
messages=messages,
)
2026-03-19 22:54:29 +03:30
try:
response = client.chat.completions.create(
model=model,
messages=messages,
)
raw = response.choices[0].message.content.strip()
except Exception as exc:
logger.error("Fertilization recommendation error for %s: %s", sensor_uuid, exc)
2026-04-24 02:12:06 +03:30
result = {
2026-03-19 22:54:29 +03:30
"fertilizer_needed": None,
"fertilizer_type": None,
"amount_kg_per_hectare": None,
"reason": f"خطا در دریافت توصیه: {exc}",
"npk_status": None,
"raw_response": None,
}
2026-04-24 02:12:06 +03:30
_fail_audit_log(
audit_log,
str(exc),
response_text=json.dumps(result, ensure_ascii=False, default=str),
)
return result
2026-03-19 22:54:29 +03:30
try:
cleaned = raw
if cleaned.startswith("```"):
cleaned = cleaned.strip("`").removeprefix("json").strip()
result = json.loads(cleaned)
except (json.JSONDecodeError, ValueError):
result = {
2026-03-21 23:50:36 +03:30
"plan": {
"reasoning": raw,
},
2026-03-19 22:54:29 +03:30
}
result["raw_response"] = raw
2026-04-24 02:12:06 +03:30
_complete_audit_log(
audit_log,
json.dumps(result, ensure_ascii=False, default=str),
)
2026-03-19 22:54:29 +03:30
return result