Ferrxni commited on
Commit
260b8b7
1 Parent(s): 5121490

update readme

Browse files
Files changed (1) hide show
  1. README.md +35 -14
README.md CHANGED
@@ -32,30 +32,51 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
32
  - personnalisation du fond de carte IGN (cf. api IGN) ; geopandas pour Python je crois
33
  - data.gouv.fr https://www.data.gouv.fr/fr/reuses/la-carte-interactive-des-types-delevages-et-des-regions-agricoles-en-france/
34
 
35
- # GAIA Hackathon
36
 
37
- 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.
38
 
39
- ## Hackathon Description
40
 
41
- 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).
42
 
43
- 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).
 
44
 
45
- For getting started, we highly recommend using [Hugging Face](https://huggingface.co/).
46
 
47
- If you have any technical questions, please visit the Mistral support site on [Discord](https://discord.gg/pCePuRhG).
48
 
49
- If you wish to conduct local tests and do not have a MISTRAL API key, please contact us directly via email.
 
50
 
51
- 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.
52
 
53
- 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.
54
 
55
- ## Contact Information
56
 
57
- For inquiries or assistance, please reach out to us:
 
 
 
58
 
59
- Email: [contact@example.com](mailto:contact@example.com)
60
 
61
- Website: [www.gaiacorp.com](https://www.gaiacorp.com)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  - personnalisation du fond de carte IGN (cf. api IGN) ; geopandas pour Python je crois
33
  - data.gouv.fr https://www.data.gouv.fr/fr/reuses/la-carte-interactive-des-types-delevages-et-des-regions-agricoles-en-france/
34
 
35
+ # Gaia Mistral Chat Demo
36
 
37
+ ## Introduction
38
 
39
+ 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.
40
 
41
+ ## Features
42
 
43
+ - Simple chat interface for querying agricultural topics. (MVP 1)
44
+ - Interactive map with chatbot experience (MVP 2)
45
 
46
+ ## Requirements
47
 
48
+ To run this application, you'll need:
49
 
50
+ - Python 3.6 or later.
51
+ - An API key from Mistral AI.
52
 
53
+ ## Setup
54
 
55
+ 1. **Clone the Repository**
56
 
57
+ Start by cloning this repository to your local machine:
58
 
59
+ ```bash
60
+ git clone <repository-url>
61
+ cd <repository-directory>
62
+ ```
63
 
64
+ 2. **Install Dependencies**
65
 
66
+ ```bash
67
+ pip install -r requirements.txt
68
+ ```
69
+
70
+ 3. **Set Up Your API Key**
71
+
72
+ ```bash
73
+ API_KEY=your_mistral_ai_api_key_here
74
+ ```
75
+
76
+ ## Running the Application
77
+
78
+ To launch the chatbot, run the following command in the terminal from the project's root directory:
79
+
80
+ ```bash
81
+ python3 app.py
82
+ ```