Clément Simon commited on
Commit
8e0df01
2 Parent(s): 160843e 260b8b7

Merge branch 'main' of https://github.com/LaFerraille/Gaia_Mistral

Browse files
Files changed (1) hide show
  1. README.md +35 -14
README.md CHANGED
@@ -30,30 +30,51 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
30
  - personnalisation du fond de carte IGN (cf. api IGN) ; geopandas pour Python je crois
31
  - data.gouv.fr https://www.data.gouv.fr/fr/reuses/la-carte-interactive-des-types-delevages-et-des-regions-agricoles-en-france/
32
 
33
- # GAIA Hackathon
34
 
35
- Welcome to the GAIA Hackathon! This hackathon is a collaborative effort between Comexposium, La Ferme Digitale, and Mistral AI, aimed at developing innovative solutions to address key challenges in the agriculture sector.
36
 
37
- ## Hackathon Description
38
 
39
- Participants in this hackathon will be tasked with designing tools capable of answering questions posed through one-minute videos. To accomplish this, teams will have access to a kit containing 50 solutions and 150 datasets provided by the hackathon organizers, starting from January 29, 2024. This approach will enable the rapid development of concrete and operational proof-of-concepts (POCs).
40
 
41
- As part of this hackathon, Comexposium and La Ferme Digitale have partnered with Mistral AI to provide participants with privileged access to the first multimodal agricultural AI model. This model combines natural language, voice, images, and data to create a comprehensive and innovative solution. The POCs developed during the hackathon will contribute to the utilization and enhancement of this model, opening up new possibilities for the application of AI in the agricultural domain. Two demonstrations have been set up, which participants can access (level 1 and level 2).
 
42
 
43
- For getting started, we highly recommend using [Hugging Face](https://huggingface.co/).
44
 
45
- If you have any technical questions, please visit the Mistral support site on [Discord](https://discord.gg/pCePuRhG).
46
 
47
- If you wish to conduct local tests and do not have a MISTRAL API key, please contact us directly via email.
 
48
 
49
- The elements will continue to evolve for 15 days, but all the main concepts are already present. Participants in the GAIA hackathon will be confronted with crucial questions, including farm succession, the attractiveness of agricultural professions and training, crop management, livestock management, purchasing and selling, as well as deciphering standards and regulations.
50
 
51
- The goal is to find innovative, practical, and pragmatic solutions that can be implemented immediately to address these essential challenges for the future of agriculture.
52
 
53
- ## Contact Information
54
 
55
- For inquiries or assistance, please reach out to us:
 
 
 
56
 
57
- Email: [contact@example.com](mailto:contact@example.com)
58
 
59
- Website: [www.gaiacorp.com](https://www.gaiacorp.com)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  - personnalisation du fond de carte IGN (cf. api IGN) ; geopandas pour Python je crois
31
  - data.gouv.fr https://www.data.gouv.fr/fr/reuses/la-carte-interactive-des-types-delevages-et-des-regions-agricoles-en-france/
32
 
33
+ # Gaia Mistral Chat Demo
34
 
35
+ ## Introduction
36
 
37
+ 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.
38
 
39
+ ## Features
40
 
41
+ - Simple chat interface for querying agricultural topics. (MVP 1)
42
+ - Interactive map with chatbot experience (MVP 2)
43
 
44
+ ## Requirements
45
 
46
+ To run this application, you'll need:
47
 
48
+ - Python 3.6 or later.
49
+ - An API key from Mistral AI.
50
 
51
+ ## Setup
52
 
53
+ 1. **Clone the Repository**
54
 
55
+ Start by cloning this repository to your local machine:
56
 
57
+ ```bash
58
+ git clone <repository-url>
59
+ cd <repository-directory>
60
+ ```
61
 
62
+ 2. **Install Dependencies**
63
 
64
+ ```bash
65
+ pip install -r requirements.txt
66
+ ```
67
+
68
+ 3. **Set Up Your API Key**
69
+
70
+ ```bash
71
+ API_KEY=your_mistral_ai_api_key_here
72
+ ```
73
+
74
+ ## Running the Application
75
+
76
+ To launch the chatbot, run the following command in the terminal from the project's root directory:
77
+
78
+ ```bash
79
+ python3 app.py
80
+ ```