From 75ed29ba406fb3e627259f0a03152df3fba48d94 Mon Sep 17 00:00:00 2001 From: Om Bhojane <82753658+ombhojane@users.noreply.github.com> Date: Fri, 16 Feb 2024 21:19:05 +0530 Subject: [PATCH 1/2] Create README.md --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e699965 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# Chalo Kisaan + +Chalo Kisaan is an agrotourism service predictor that helps farmers generate potential business models based on their land size, budget, and other factors. It provides interactive visualizations to preview how the proposed service could be implemented on their farm, along with a detailed description, business model, budget, and setup process. + +## Features + +1. **Service Prediction**: The app predicts potential agrotourism services that can be created based on the farmer's land size, budget, and other relevant factors. + +2. **Interactive Visualizations**: Farmers can choose a service and generate interactive visuals to preview how the service would be implemented on their farm. + +3. **Service Description**: A large language model (LLM) provides a brief description of the business model, budget, and other essential details for the selected service. + +## How to Setup + +To run the Chalo Kisaan app locally, follow these steps: + +1. **Install Dependencies**: Install the required libraries by running the following command: + + pip install -r requirements.txt + +2. **Set up Environment Variables**: Create a `.env` file in the project's root directory and replace the `GENAI_API_KEY` placeholder with your actual Gemini API key: + + GENAI_API_KEY=your_gemini_api_key + +3. **Run the App**: Start the Flask app by running the following command: + + python app.py + +This will start the app on `http://127.0.0.1:5000/` in your local environment. + +## Usage + +Once the app is running, you can access it through your web browser by navigating to `http://127.0.0.1:5000/` (or `localhost:5000`). Follow the on-screen instructions to provide the necessary information, such as land size and budget, to receive predictions and visualizations for potential agrotourism services. + From f1d1ea81a0abf5e9c2edccedc8f2ebd500fc3728 Mon Sep 17 00:00:00 2001 From: Om Bhojane <82753658+ombhojane@users.noreply.github.com> Date: Fri, 16 Feb 2024 21:21:34 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e699965..44d1144 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ Chalo Kisaan is an agrotourism service predictor that helps farmers generate pot 2. **Interactive Visualizations**: Farmers can choose a service and generate interactive visuals to preview how the service would be implemented on their farm. -3. **Service Description**: A large language model (LLM) provides a brief description of the business model, budget, and other essential details for the selected service. +3. **Service Description**: Farmers can choose a service name and tailor the agrotourism service according to their preferences. +Google's Gemini Pro LLM provides a brief description of the business model, budget estimations and other essential details for the selected service. ## How to Setup