-
|
Why did I build Virdis with both a local agronomy engine and Gemini instead of depending entirely on AI for crop planning? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I wanted the crop recommendations to be grounded in real environmental logic rather than depending only on prompt based output. From my side, the local agronomy engine handles the structured scoring first. It looks at things like soil pH, soil composition, NDVI, rainfall, moisture, temperature, elevation, slope, and climate region. That gives me a deterministic base that is immediate, explainable, and more reliable. Gemini then comes in after that as a planning layer. I use it to add more context, reasoning, and richer suggestions on top of the structured field analysis. So the AI helps with the interpretation, but it is not making decisions in isolation. I found that this hybrid setup works better than using AI alone because it gives me:
For Virdis, that balance felt much more practical than a purely AI driven approach. |
Beta Was this translation helpful? Give feedback.
I wanted the crop recommendations to be grounded in real environmental logic rather than depending only on prompt based output.
From my side, the local agronomy engine handles the structured scoring first. It looks at things like soil pH, soil composition, NDVI, rainfall, moisture, temperature, elevation, slope, and climate region. That gives me a deterministic base that is immediate, explainable, and more reliable.
Gemini then comes in after that as a planning layer. I use it to add more context, reasoning, and richer suggestions on top of the structured field analysis. So the AI helps with the interpretation, but it is not making decisions in isolation.
I found that this hybrid setup wo…