<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shaik Inzamam</title>
    <description>The latest articles on DEV Community by Shaik Inzamam (@shaik_inzamam_7).</description>
    <link>https://dev.to/shaik_inzamam_7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4043929%2F508d02a4-a183-46b5-a450-d37fc9cdc58f.png</url>
      <title>DEV Community: Shaik Inzamam</title>
      <link>https://dev.to/shaik_inzamam_7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shaik_inzamam_7"/>
    <language>en</language>
    <item>
      <title>Farmer Rank AI: Using Generative AI to Connect Farmers with the Right Buyers</title>
      <dc:creator>Shaik Inzamam</dc:creator>
      <pubDate>Thu, 23 Jul 2026 13:30:54 +0000</pubDate>
      <link>https://dev.to/shaik_inzamam_7/farmer-rank-ai-using-generative-ai-to-connect-farmers-with-the-right-buyers-1ege</link>
      <guid>https://dev.to/shaik_inzamam_7/farmer-rank-ai-using-generative-ai-to-connect-farmers-with-the-right-buyers-1ege</guid>
      <description>&lt;p&gt;Introduction&lt;/p&gt;

&lt;p&gt;Hello, I am Shaik Inzamam, a B.Tech Computer Science student and aspiring AI engineer from India.&lt;/p&gt;

&lt;p&gt;I enjoy building practical AI solutions using Generative AI, large language models, backend development, cloud technologies, and automation tools. I am especially interested in creating solutions that address real problems faced by local communities.&lt;/p&gt;

&lt;p&gt;For the Gen AI Academy APAC – Meet the Builders initiative, I am sharing my project:&lt;/p&gt;

&lt;p&gt;Farmer Rank AI&lt;/p&gt;

&lt;p&gt;Farmer Rank AI is a Generative AI-powered agricultural marketplace assistant that helps buyers find and connect with suitable farmers based on crop type, quantity, quality, price, and location.&lt;/p&gt;

&lt;p&gt;The goal of the project is to make agricultural trading more accessible, transparent, and efficient for farmers and buyers in India.&lt;/p&gt;

&lt;p&gt;The Local Problem&lt;/p&gt;

&lt;p&gt;Agriculture plays an important role in India, but many farmers still face challenges when trying to connect directly with genuine buyers.&lt;/p&gt;

&lt;p&gt;Farmers may have quality produce available, but they often lack visibility and access to the right market. Buyers also face difficulties identifying farmers who can meet their exact requirements.&lt;/p&gt;

&lt;p&gt;For example, a buyer may need:&lt;/p&gt;

&lt;p&gt;500 kilograms of tomatoes&lt;br&gt;
Grade A quality&lt;br&gt;
A maximum price of ₹20 per kilogram&lt;br&gt;
A farmer located near Bengaluru&lt;br&gt;
Immediate availability&lt;/p&gt;

&lt;p&gt;Finding the right farmer manually can take a lot of time. Buyers may need to contact several farmers individually before finding a suitable match.&lt;/p&gt;

&lt;p&gt;At the same time, smaller farmers may be ignored because they do not have access to advanced digital platforms or strong marketing networks.&lt;/p&gt;

&lt;p&gt;Some of the major problems include:&lt;/p&gt;

&lt;p&gt;Difficulty connecting farmers directly with buyers&lt;br&gt;
Limited visibility for small and regional farmers&lt;br&gt;
Time-consuming manual search&lt;br&gt;
Lack of intelligent farmer ranking&lt;br&gt;
Incomplete information about crop quantity and quality&lt;br&gt;
Poor location-based matching&lt;br&gt;
Lack of transparency in recommendations&lt;br&gt;
Communication gaps between farmers and buyers&lt;br&gt;
The Idea Behind Farmer Rank AI&lt;/p&gt;

&lt;p&gt;Farmer Rank AI acts as an intelligent bridge between agricultural buyers and farmers.&lt;/p&gt;

&lt;p&gt;Instead of manually selecting multiple filters, a buyer can describe their requirement in normal language.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;I need 500 kg of Grade A tomatoes near Bengaluru for under ₹20 per kg.&lt;/p&gt;

&lt;p&gt;The application understands the request, extracts the important information, searches available farmer listings, and recommends the most suitable farmers.&lt;/p&gt;

&lt;p&gt;The platform does not simply return a long list of results. It ranks farmers according to how closely they match the buyer’s needs.&lt;/p&gt;

&lt;p&gt;It also explains why each farmer was recommended.&lt;/p&gt;

&lt;p&gt;Example Buyer Request&lt;/p&gt;

&lt;p&gt;A buyer can enter:&lt;/p&gt;

&lt;p&gt;Find farmers who can supply 500 kg of Grade A tomatoes near Bengaluru for less than ₹20 per kilogram.&lt;/p&gt;

&lt;p&gt;The application extracts structured information such as:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "crop": "tomato",&lt;br&gt;
  "quantity_kg": 500,&lt;br&gt;
  "quality_grade": "A",&lt;br&gt;
  "preferred_location": "Bengaluru",&lt;br&gt;
  "maximum_price_per_kg": 20&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;The system then searches the available farmer data and evaluates each farmer using multiple conditions.&lt;/p&gt;

&lt;p&gt;These conditions include:&lt;/p&gt;

&lt;p&gt;Crop availability&lt;br&gt;
Quantity available&lt;br&gt;
Quality grade&lt;br&gt;
Price per kilogram&lt;br&gt;
Location&lt;br&gt;
Distance from the buyer&lt;br&gt;
Farmer reliability&lt;br&gt;
Previous buyer preferences&lt;br&gt;
How Farmer Rank AI Works&lt;/p&gt;

&lt;p&gt;The application follows a structured AI workflow.&lt;/p&gt;

&lt;p&gt;Step 1: Buyer Enters a Requirement&lt;/p&gt;

&lt;p&gt;The buyer enters a crop requirement using natural language.&lt;/p&gt;

&lt;p&gt;The buyer does not need to understand technical filters or database fields.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;I need 1,000 kg of onions near Hyderabad within ₹25 per kilogram.&lt;/p&gt;

&lt;p&gt;Step 2: Gemini Understands the Request&lt;/p&gt;

&lt;p&gt;Google Gemini processes the request and identifies important information such as:&lt;/p&gt;

&lt;p&gt;Crop name&lt;br&gt;
Required quantity&lt;br&gt;
Quality grade&lt;br&gt;
Location&lt;br&gt;
Maximum budget&lt;br&gt;
Buyer intent&lt;br&gt;
Step 3: Structured Filters Are Created&lt;/p&gt;

&lt;p&gt;The natural-language request is converted into structured search filters.&lt;/p&gt;

&lt;p&gt;This makes it easier for the backend to search available farmer listings.&lt;/p&gt;

&lt;p&gt;Step 4: Matching Farmers Are Retrieved&lt;/p&gt;

&lt;p&gt;The system searches farmer records based on the extracted requirements.&lt;/p&gt;

&lt;p&gt;Farmers who do not meet the basic conditions are removed.&lt;/p&gt;

&lt;p&gt;For example, a farmer may be excluded when:&lt;/p&gt;

&lt;p&gt;The crop does not match&lt;br&gt;
The available quantity is too low&lt;br&gt;
The price exceeds the buyer’s budget&lt;br&gt;
The farmer is too far from the preferred location&lt;br&gt;
The required quality grade is unavailable&lt;br&gt;
Step 5: Farmers Are Ranked&lt;/p&gt;

&lt;p&gt;The remaining farmers receive a ranking score.&lt;/p&gt;

&lt;p&gt;The ranking system considers:&lt;/p&gt;

&lt;p&gt;Crop match&lt;br&gt;
Quantity match&lt;br&gt;
Quality match&lt;br&gt;
Price match&lt;br&gt;
Location relevance&lt;br&gt;
Distance&lt;br&gt;
Farmer availability&lt;br&gt;
Buyer preferences&lt;br&gt;
Step 6: Gemini Generates Explanations&lt;/p&gt;

&lt;p&gt;Gemini generates a simple explanation for each recommendation.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;This farmer is recommended because they have 600 kg of Grade A tomatoes available at ₹18 per kilogram and are located close to Bengaluru.&lt;/p&gt;

&lt;p&gt;Step 7: Buyer Reviews the Results&lt;/p&gt;

&lt;p&gt;The buyer receives a ranked list of farmers with:&lt;/p&gt;

&lt;p&gt;Farmer name&lt;br&gt;
Crop&lt;br&gt;
Available quantity&lt;br&gt;
Quality grade&lt;br&gt;
Price&lt;br&gt;
Location&lt;br&gt;
Matching score&lt;br&gt;
Recommendation reason&lt;br&gt;
Contact option&lt;br&gt;
Step 8: Buyer Connects With the Farmer&lt;/p&gt;

&lt;p&gt;After reviewing the results, the buyer can contact the selected farmer and continue the discussion.&lt;/p&gt;

&lt;p&gt;Google AI and Google Cloud Technologies&lt;/p&gt;

&lt;p&gt;Google technologies play an important role in the architecture of Farmer Rank AI.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Gemini API&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google Gemini is the main Generative AI layer of the project.&lt;/p&gt;

&lt;p&gt;It is used to understand buyer requirements written in natural language.&lt;/p&gt;

&lt;p&gt;Gemini helps the application perform tasks such as:&lt;/p&gt;

&lt;p&gt;Detecting buyer intent&lt;br&gt;
Extracting crop names&lt;br&gt;
Extracting required quantities&lt;br&gt;
Understanding quality grades&lt;br&gt;
Identifying locations&lt;br&gt;
Extracting budget constraints&lt;br&gt;
Converting text into structured data&lt;br&gt;
Generating farmer recommendation explanations&lt;br&gt;
Summarizing matching results&lt;br&gt;
Supporting multilingual requests&lt;br&gt;
Producing easy-to-understand responses&lt;/p&gt;

&lt;p&gt;Gemini makes the application more natural because buyers can communicate with the system like they would communicate with another person.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Vertex AI&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Vertex AI provides a managed platform for working with Gemini models on Google Cloud.&lt;/p&gt;

&lt;p&gt;Vertex AI can help Farmer Rank AI:&lt;/p&gt;

&lt;p&gt;Access Gemini securely&lt;br&gt;
Manage AI model requests&lt;br&gt;
Configure generation settings&lt;br&gt;
Handle production workloads&lt;br&gt;
Monitor AI usage&lt;br&gt;
Evaluate model responses&lt;br&gt;
Improve prompt quality&lt;br&gt;
Scale AI operations&lt;/p&gt;

&lt;p&gt;Vertex AI can also support future improvements such as prompt evaluation, model monitoring, and AI response testing.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Cloud Run&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The backend of Farmer Rank AI can be deployed using Google Cloud Run.&lt;/p&gt;

&lt;p&gt;Cloud Run allows the application to run as a containerized service without manually managing servers.&lt;/p&gt;

&lt;p&gt;Cloud Run is useful because it provides:&lt;/p&gt;

&lt;p&gt;Automatic scaling&lt;br&gt;
Container-based deployment&lt;br&gt;
Secure API hosting&lt;br&gt;
Reduced infrastructure management&lt;br&gt;
Faster deployment&lt;br&gt;
Support for backend services&lt;br&gt;
Pay-per-use infrastructure&lt;/p&gt;

&lt;p&gt;When a buyer submits a query, the backend running on Cloud Run receives the request, communicates with Gemini, searches farmer data, and returns ranked recommendations.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Cloud Firestore&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google Cloud Firestore can store structured information used by the application.&lt;/p&gt;

&lt;p&gt;This includes:&lt;/p&gt;

&lt;p&gt;Farmer profiles&lt;br&gt;
Farmer names&lt;br&gt;
Crop listings&lt;br&gt;
Crop quantity&lt;br&gt;
Crop quality&lt;br&gt;
Price per kilogram&lt;br&gt;
Farmer location&lt;br&gt;
Contact information&lt;br&gt;
Buyer preferences&lt;br&gt;
Search history&lt;br&gt;
Recommendation history&lt;br&gt;
Crop availability status&lt;/p&gt;

&lt;p&gt;Firestore supports real-time updates, which can be useful when farmers update crop quantity, price, or availability.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Cloud Storage&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google Cloud Storage can be used to store larger files that should not be saved directly in the database.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;/p&gt;

&lt;p&gt;Crop images&lt;br&gt;
Farmer profile images&lt;br&gt;
Farmer verification documents&lt;br&gt;
Quality certificates&lt;br&gt;
Dataset files&lt;br&gt;
Generated reports&lt;br&gt;
Application screenshots&lt;br&gt;
Demo assets&lt;/p&gt;

&lt;p&gt;The database can store the file reference, while the actual file remains securely stored in Cloud Storage.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Maps Platform&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google Maps Platform can improve location-aware farmer recommendations.&lt;/p&gt;

&lt;p&gt;It can help the application:&lt;/p&gt;

&lt;p&gt;Convert addresses into coordinates&lt;br&gt;
Calculate distances&lt;br&gt;
Display farmer locations&lt;br&gt;
Identify nearby farmers&lt;br&gt;
Estimate travel distance&lt;br&gt;
Support regional searches&lt;br&gt;
Improve logistics planning&lt;/p&gt;

&lt;p&gt;For example, when a buyer requests tomatoes near Bengaluru, the system can prioritize farmers located closer to the buyer.&lt;/p&gt;

&lt;p&gt;Location information can become an important part of the ranking score.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Cloud Secret Manager&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Farmer Rank AI uses several sensitive credentials, such as AI keys, database credentials, and service configuration.&lt;/p&gt;

&lt;p&gt;Google Cloud Secret Manager can securely store:&lt;/p&gt;

&lt;p&gt;Gemini credentials&lt;br&gt;
Database connection details&lt;br&gt;
Authentication secrets&lt;br&gt;
External API keys&lt;br&gt;
Application configuration values&lt;/p&gt;

&lt;p&gt;This prevents sensitive keys from being written directly into the project source code.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Artifact Registry&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Farmer Rank AI uses Docker for containerization.&lt;/p&gt;

&lt;p&gt;The backend Docker image can be stored in Google Artifact Registry before deployment.&lt;/p&gt;

&lt;p&gt;The deployment process can follow these steps:&lt;/p&gt;

&lt;p&gt;Build the application&lt;br&gt;
Create the Docker image&lt;br&gt;
Push the image to Artifact Registry&lt;br&gt;
Deploy the image to Cloud Run&lt;br&gt;
Make the backend API available to the frontend&lt;/p&gt;

&lt;p&gt;Artifact Registry provides a secure location for storing and managing container images.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google Cloud Build&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Google Cloud Build can automate the project build and deployment workflow.&lt;/p&gt;

&lt;p&gt;When new code is pushed, Cloud Build can:&lt;/p&gt;

&lt;p&gt;Install project dependencies&lt;br&gt;
Run build commands&lt;br&gt;
Build the Docker image&lt;br&gt;
Push the image to Artifact Registry&lt;br&gt;
Deploy the application to Cloud Run&lt;/p&gt;

&lt;p&gt;This makes deployment faster and reduces manual work.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Cloud Logging&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cloud Logging can record important application events.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;/p&gt;

&lt;p&gt;Buyer queries&lt;br&gt;
Gemini requests&lt;br&gt;
Gemini response errors&lt;br&gt;
Farmer search results&lt;br&gt;
Ranking workflow activity&lt;br&gt;
Database errors&lt;br&gt;
API failures&lt;br&gt;
Safety validation events&lt;/p&gt;

&lt;p&gt;Logging makes it easier to debug the application and understand how users interact with the system.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Cloud Monitoring&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Cloud Monitoring can track the health and performance of the application.&lt;/p&gt;

&lt;p&gt;It can monitor:&lt;/p&gt;

&lt;p&gt;Number of requests&lt;br&gt;
API response time&lt;br&gt;
Error rate&lt;br&gt;
Cloud Run performance&lt;br&gt;
Resource usage&lt;br&gt;
Service availability&lt;br&gt;
Failed AI requests&lt;/p&gt;

&lt;p&gt;Monitoring is important for maintaining a reliable production application.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Firebase Authentication&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Firebase Authentication can be used to manage secure user access.&lt;/p&gt;

&lt;p&gt;It can support:&lt;/p&gt;

&lt;p&gt;Farmer registration&lt;br&gt;
Buyer registration&lt;br&gt;
Email login&lt;br&gt;
Google login&lt;br&gt;
User authentication&lt;br&gt;
Role-based access&lt;br&gt;
Secure sessions&lt;/p&gt;

&lt;p&gt;Farmers and buyers can have separate profiles and different application permissions.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Firebase Hosting&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The frontend application can be hosted using Firebase Hosting.&lt;/p&gt;

&lt;p&gt;Firebase Hosting can provide:&lt;/p&gt;

&lt;p&gt;Fast web hosting&lt;br&gt;
HTTPS support&lt;br&gt;
Global content delivery&lt;br&gt;
Easy deployment&lt;br&gt;
Integration with Firebase services&lt;/p&gt;

&lt;p&gt;The Next.js frontend can communicate with the backend deployed on Cloud Run.&lt;/p&gt;

&lt;p&gt;Google-Powered Workflow&lt;/p&gt;

&lt;p&gt;The complete Google-powered application workflow can operate as follows:&lt;/p&gt;

&lt;p&gt;A buyer opens the web application hosted using Firebase Hosting.&lt;br&gt;
The buyer signs in through Firebase Authentication.&lt;br&gt;
The buyer enters an agricultural requirement in natural language.&lt;br&gt;
The frontend sends the query to the backend deployed on Cloud Run.&lt;br&gt;
The backend sends the buyer query to Gemini through Vertex AI.&lt;br&gt;
Gemini identifies the buyer’s intent and converts the request into structured filters.&lt;br&gt;
Farmer listings are retrieved from Firestore.&lt;br&gt;
Google Maps Platform calculates location relevance and distance.&lt;br&gt;
The ranking workflow evaluates crop, quantity, grade, price, and proximity.&lt;br&gt;
Gemini generates a clear explanation for every recommendation.&lt;br&gt;
Crop images and farmer documents are retrieved from Cloud Storage when required.&lt;br&gt;
Ranked farmer results are returned to the buyer.&lt;br&gt;
Cloud Logging records important workflow events.&lt;br&gt;
Cloud Monitoring tracks service performance.&lt;br&gt;
Secret Manager protects sensitive credentials.&lt;br&gt;
Cloud Build and Artifact Registry support deployment updates.&lt;br&gt;
System Architecture&lt;/p&gt;

&lt;p&gt;Farmer Rank AI uses a modular architecture so that each component has a clear responsibility.&lt;/p&gt;

&lt;p&gt;Buyer&lt;br&gt;
  |&lt;br&gt;
  v&lt;br&gt;
Next.js Web Application&lt;br&gt;
  |&lt;br&gt;
  v&lt;br&gt;
Firebase Authentication&lt;br&gt;
  |&lt;br&gt;
  v&lt;br&gt;
Backend API on Google Cloud Run&lt;br&gt;
  |&lt;br&gt;
  +--------------------------+&lt;br&gt;
  |                          |&lt;br&gt;
  v                          v&lt;br&gt;
Gemini through Vertex AI     Firestore&lt;br&gt;
  |                          |&lt;br&gt;
  v                          v&lt;br&gt;
Intent Extraction        Farmer Records&lt;br&gt;
  |                          |&lt;br&gt;
  +-------------+------------+&lt;br&gt;
                |&lt;br&gt;
                v&lt;br&gt;
       Google Maps Platform&lt;br&gt;
                |&lt;br&gt;
                v&lt;br&gt;
        Farmer Ranking Engine&lt;br&gt;
                |&lt;br&gt;
                v&lt;br&gt;
     Gemini Explanation Generator&lt;br&gt;
                |&lt;br&gt;
                v&lt;br&gt;
       Ranked Farmer Results&lt;/p&gt;

&lt;p&gt;Other Google Cloud services support the application:&lt;/p&gt;

&lt;p&gt;Cloud Storage -&amp;gt; Crop images and documents&lt;/p&gt;

&lt;p&gt;Secret Manager -&amp;gt; API keys and credentials&lt;/p&gt;

&lt;p&gt;Artifact Registry -&amp;gt; Docker images&lt;/p&gt;

&lt;p&gt;Cloud Build -&amp;gt; Automated deployment&lt;/p&gt;

&lt;p&gt;Cloud Logging -&amp;gt; Application logs&lt;/p&gt;

&lt;p&gt;Cloud Monitoring -&amp;gt; Performance monitoring&lt;br&gt;
Complete Technology Stack&lt;br&gt;
Google AI and Cloud Stack&lt;br&gt;
Google Gemini API&lt;br&gt;
Vertex AI&lt;br&gt;
Google Cloud Run&lt;br&gt;
Google Cloud Firestore&lt;br&gt;
Google Cloud Storage&lt;br&gt;
Google Maps Platform&lt;br&gt;
Google Cloud Secret Manager&lt;br&gt;
Google Artifact Registry&lt;br&gt;
Google Cloud Build&lt;br&gt;
Google Cloud Logging&lt;br&gt;
Google Cloud Monitoring&lt;br&gt;
Firebase Authentication&lt;br&gt;
Firebase Hosting&lt;br&gt;
Application Development Stack&lt;br&gt;
Next.js&lt;br&gt;
Node.js&lt;br&gt;
TypeScript&lt;br&gt;
Express.js&lt;br&gt;
Mastra&lt;br&gt;
Docker&lt;br&gt;
Git&lt;br&gt;
GitHub&lt;br&gt;
Data and Retrieval Stack&lt;br&gt;
PostgreSQL&lt;br&gt;
Qdrant&lt;br&gt;
Vector-based retrieval&lt;br&gt;
Structured farmer filtering&lt;br&gt;
AI-powered ranking workflow&lt;/p&gt;

</description>
      <category>genai</category>
      <category>googlecloud</category>
      <category>gemini</category>
      <category>agritech</category>
    </item>
  </channel>
</rss>
