Spaces:
Paused
Paused
File size: 2,382 Bytes
d2f7265 5121490 d2f7265 93f27f6 d2f7265 f8b5c48 2c86bdf f8b5c48 2c86bdf 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 c9bc25a 260b8b7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
---
title: "GAIA Hackathon"
emoji: "🌱"
colorFrom: "green"
colorTo: "blue"
sdk: "docker"
tags:
- "agriculture"
- "ai"
- "hackathon"
pinned: false
hf_oauth: false
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# To run locally:
uvicorn app:app --host 0.0.0.0 --port 80
and go to http://localhost:80
# TO-DO - Brainstorming
**Système de carte interactive collaborative, AI-powered par Mistral**
*Features:*
- [ ] une sorte de réseau social
- [ ] Reporting des datas avec Mistral AI + génération d'un dashboard ad hoc
- [ ] Profil utilisateur et centres d'intérêt pour mieux permettre au RAG de cibler ses comptes-rendus
- [ ] newsletter journalière / hebdomadaire
- [ ] filtrage utilisateur dans un rayon de 10, 50, 100km
- [ ] carte interactive avec display d'API qu'on a trouvées sur internet : Par exemple (mes idées, Clément)
- windy pour aérologie,
- webcams des champs
- vidéos postées par des agriculteurs de ta région
- personnalisation du fond de carte IGN (cf. api IGN) ; geopandas pour Python je crois
- data.gouv.fr https://www.data.gouv.fr/fr/reuses/la-carte-interactive-des-types-delevages-et-des-regions-agricoles-en-france/
# Gaia Mistral Chat Demo
## Introduction
This project showcases a simple chatbot application built with Gradio and the Mistral AI API. The chatbot is designed to answer questions related to agriculture. Users can ask questions in French, and the chatbot, powered by the Mistral AI's `mistral` model, will provide responses.
## Features
- Simple chat interface for querying agricultural topics. (MVP 1)
- Interactive map with chatbot experience (MVP 2)
## Requirements
To run this application, you'll need:
- Python 3.6 or later.
- An API key from Mistral AI.
## Setup
1. **Clone the Repository**
Start by cloning this repository to your local machine:
```bash
git clone <repository-url>
cd <repository-directory>
```
2. **Install Dependencies**
```bash
pip install -r requirements.txt
```
3. **Set Up Your API Key**
```bash
API_KEY=your_mistral_ai_api_key_here
```
## Running the Application
To launch the chatbot, run the following command in the terminal from the project's root directory:
```bash
python3 app.py
``` |