Docfile commited on
Commit
d3f6eaa
·
verified ·
1 Parent(s): 83396a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +77 -9
app.py CHANGED
@@ -31,15 +31,13 @@ safety_settings = [
31
  },
32
  ]
33
 
34
-
35
  GOOGLE_API_KEY = os.environ.get("TOKEN")
36
 
37
-
38
  genai.configure(api_key=GOOGLE_API_KEY)
39
 
40
  @app.route('/')
41
  def index():
42
- return render_template('histoire.html')
43
 
44
 
45
  def rediger_section_histoire(theme, point, contexte_precedent=""):
@@ -60,7 +58,7 @@ def rediger_section_histoire(theme, point, contexte_precedent=""):
60
  Contexte précédent de la dissertation: {contexte_precedent}
61
  """
62
 
63
- model = genai.GenerativeModel('gemini-1.5-flash-002')
64
  chat = model.start_chat()
65
  response = chat.send_message(prompt)
66
  return response.text, chat.history
@@ -83,7 +81,7 @@ def rediger_section_geographie(theme, point, contexte_precedent=""):
83
  Contexte précédent de la dissertation: {contexte_precedent}
84
  """
85
 
86
- model = genai.GenerativeModel('gemini-1.5-flash')
87
  chat = model.start_chat()
88
  response = chat.send_message(prompt)
89
  return response.text, chat.history
@@ -102,7 +100,7 @@ def generer_introduction(sujet,points, type_sujet="histoire"):
102
 
103
  """
104
 
105
- model = genai.GenerativeModel('gemini-1.5-flash')
106
  response = model.generate_content(prompt)
107
  return response.text
108
 
@@ -119,7 +117,7 @@ def generer_conclusion(sujet, contenu, type_sujet="histoire"):
119
  {contenu}
120
  """
121
 
122
- model = genai.GenerativeModel('gemini-1.5-flash-002')
123
  response = model.generate_content(prompt)
124
  return response.text
125
 
@@ -171,7 +169,7 @@ def submit_geographie():
171
 
172
  try:
173
  # Génération de l'introduction
174
- dissertation = generer_introduction(sujet, "géographie")
175
  dissertation += "\n\n"
176
 
177
  # Génération du développement
@@ -188,6 +186,76 @@ def submit_geographie():
188
 
189
  except Exception as e:
190
  return jsonify({"error": str(e)}), 500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  },
32
  ]
33
 
 
34
  GOOGLE_API_KEY = os.environ.get("TOKEN")
35
 
 
36
  genai.configure(api_key=GOOGLE_API_KEY)
37
 
38
  @app.route('/')
39
  def index():
40
+ return render_template('templates_histoire.html')
41
 
42
 
43
  def rediger_section_histoire(theme, point, contexte_precedent=""):
 
58
  Contexte précédent de la dissertation: {contexte_precedent}
59
  """
60
 
61
+ model = genai.GenerativeModel('gemini-1.5-flash-002',generation_config=generation_config, safety_settings=safety_settings)
62
  chat = model.start_chat()
63
  response = chat.send_message(prompt)
64
  return response.text, chat.history
 
81
  Contexte précédent de la dissertation: {contexte_precedent}
82
  """
83
 
84
+ model = genai.GenerativeModel('gemini-1.5-flash-002',generation_config=generation_config, safety_settings=safety_settings)
85
  chat = model.start_chat()
86
  response = chat.send_message(prompt)
87
  return response.text, chat.history
 
100
 
101
  """
102
 
103
+ model = genai.GenerativeModel('gemini-1.5-flash-002',generation_config=generation_config, safety_settings=safety_settings)
104
  response = model.generate_content(prompt)
105
  return response.text
106
 
 
117
  {contenu}
118
  """
119
 
120
+ model = genai.GenerativeModel('gemini-1.5-flash-002',generation_config=generation_config, safety_settings=safety_settings)
121
  response = model.generate_content(prompt)
122
  return response.text
123
 
 
169
 
170
  try:
171
  # Génération de l'introduction
172
+ dissertation = generer_introduction(sujet,points, "géographie")
173
  dissertation += "\n\n"
174
 
175
  # Génération du développement
 
186
 
187
  except Exception as e:
188
  return jsonify({"error": str(e)}), 500
189
+
190
+ def analyze_images(images, prompt):
191
+ """Analyse les images fournies et génère une réponse textuelle."""
192
+
193
+ model = genai.GenerativeModel('gemini-pro-vision')
194
+ response = model.generate_content(
195
+ [prompt, *images],
196
+ generation_config=generation_config,
197
+ safety_settings=safety_settings
198
+ )
199
+
200
+ return response.text
201
+
202
+ @app.route('/api/histoire-type2', methods=['POST'])
203
+ def submit_histoire_type2():
204
+ # Récupération des données
205
+ sujet = request.form.get('sujet-histoire-type2', '').strip()
206
+
207
+ if 'images-histoire-type2' not in request.files:
208
+ return jsonify({"error": "Aucune image n'a été envoyée."}), 400
209
+
210
+ files = request.files.getlist('images-histoire-type2')
211
+
212
+ if not sujet:
213
+ return jsonify({"error": "Le champ sujet est obligatoire"}), 400
214
+
215
+ images = []
216
+ for file in files:
217
+ if file.filename == '':
218
+ return jsonify({"error": "Un ou plusieurs fichiers n'ont pas de nom."}), 400
219
+
220
+ try:
221
+ img = PIL.Image.open(file)
222
+ images.append(img)
223
+ except Exception as e:
224
+ return jsonify({"error": f"Impossible de lire l'image : {file.filename}. Erreur : {str(e)}"}), 400
225
+
226
+ try:
227
+ # Prompt pour l'analyse d'images en histoire
228
+ prompt = f"""
229
+ Sujet: {sujet}
230
+ Tu es un assistant spécialisé en histoire. Analyse les images fournies en lien avec le sujet donné.
231
 
232
+ Structure de la réponse :
233
+ 1. Description de chaque image.
234
+ 2. Analyse du lien entre les images et le sujet.
235
+ 3. Synthèse et informations pertinentes déduites des images.
236
+ """
237
+
238
+ # Analyse des images et génération de la réponse
239
+ response_text = analyze_images(images, prompt)
240
+ return jsonify({"output": response_text}), 200
241
+
242
+ except Exception as e:
243
+ return jsonify({"error": str(e)}), 500
244
 
245
+ @app.route('/api/geographie-type2', methods=['POST'])
246
+ def submit_geographie_type2():
247
+ # Récupération des données
248
+ sujet = request.form.get('sujet-geographie-type2', '').strip()
249
+
250
+ if 'images-geographie-type2' not in request.files:
251
+ return jsonify({"error": "Aucune image n'a été envoyée."}), 400
252
+
253
+ files = request.files.getlist('images-geographie-type2')
254
+
255
+ if not sujet:
256
+ return jsonify({"error": "Le champ sujet est obligatoire"}), 400
257
+
258
+ images = []
259
+ for file in files:
260
+ if file.filename == '':
261
+ return jsonify({"error": "Un ou plusieurs fichiers n'ont pas de nom."}), 40