2026-03-19 22:54:29 +03:30
|
|
|
"""
|
|
|
|
|
سرویسهای RAG — آبیاری و کودهی
|
|
|
|
|
بدون API — قابل استفاده از سایر سرویسها
|
|
|
|
|
"""
|
|
|
|
|
from .irrigation import get_irrigation_recommendation
|
2026-04-30 03:25:31 +03:30
|
|
|
from .irrigation_plan_parser import IrrigationPlanParserService
|
2026-03-19 22:54:29 +03:30
|
|
|
from .fertilization import get_fertilization_recommendation
|
2026-04-30 03:25:31 +03:30
|
|
|
from .fertilization_plan_parser import FertilizationPlanParserService
|
2026-04-25 17:22:41 +03:30
|
|
|
from .pest_disease import get_pest_disease_detection, get_pest_disease_risk
|
|
|
|
|
from .soil_anomaly import get_soil_anomaly_insight
|
|
|
|
|
from .water_need_prediction import get_water_need_prediction_insight
|
2026-04-30 00:53:47 +03:30
|
|
|
from .yield_harvest import YieldHarvestRAGService
|
2026-03-19 22:54:29 +03:30
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"get_irrigation_recommendation",
|
2026-04-30 03:25:31 +03:30
|
|
|
"IrrigationPlanParserService",
|
2026-03-19 22:54:29 +03:30
|
|
|
"get_fertilization_recommendation",
|
2026-04-30 03:25:31 +03:30
|
|
|
"FertilizationPlanParserService",
|
2026-04-25 17:22:41 +03:30
|
|
|
"get_pest_disease_detection",
|
|
|
|
|
"get_pest_disease_risk",
|
|
|
|
|
"get_soil_anomaly_insight",
|
|
|
|
|
"get_water_need_prediction_insight",
|
2026-04-30 00:53:47 +03:30
|
|
|
"YieldHarvestRAGService",
|
2026-03-19 22:54:29 +03:30
|
|
|
]
|