Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ import yt_dlp
|
|
7 |
import functools
|
8 |
import time
|
9 |
import tempfile
|
|
|
10 |
import re
|
11 |
import psycopg2
|
12 |
from markupsafe import Markup
|
@@ -23,6 +24,7 @@ import redis
|
|
23 |
|
24 |
|
25 |
|
|
|
26 |
|
27 |
DATABASE_URL= os.environ.get("DATABASE")
|
28 |
|
@@ -126,8 +128,10 @@ def submit_philo():
|
|
126 |
phi_prompt = data.get('question', '').strip()
|
127 |
phi_type = data.get('type', '1') # Type 1 par défaut
|
128 |
course_id = data.get('courseId')
|
129 |
-
|
130 |
-
|
|
|
|
|
131 |
if not phi_prompt:
|
132 |
return jsonify({"error": "Veuillez saisir un sujet."}), 400
|
133 |
|
|
|
7 |
import functools
|
8 |
import time
|
9 |
import tempfile
|
10 |
+
import logging
|
11 |
import re
|
12 |
import psycopg2
|
13 |
from markupsafe import Markup
|
|
|
24 |
|
25 |
|
26 |
|
27 |
+
logging.basicConfig(level=logging.INFO)
|
28 |
|
29 |
DATABASE_URL= os.environ.get("DATABASE")
|
30 |
|
|
|
128 |
phi_prompt = data.get('question', '').strip()
|
129 |
phi_type = data.get('type', '1') # Type 1 par défaut
|
130 |
course_id = data.get('courseId')
|
131 |
+
|
132 |
+
logging.info("le sujet est;",phi_prompt)
|
133 |
+
logging.info("le type est;",phi_type)
|
134 |
+
|
135 |
if not phi_prompt:
|
136 |
return jsonify({"error": "Veuillez saisir un sujet."}), 400
|
137 |
|