Spaces:
Running
Running
File size: 17,209 Bytes
3656373 78fc16c 3656373 | 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | from dotenv import load_dotenv
from openai import OpenAI
from huggingface_hub import HfApi, create_repo, hf_hub_download
from langchain_community.vectorstores import FAISS
from langchain_openai import OpenAIEmbeddings
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from pydantic import BaseModel, Field, validator
import json
import logging
import os
import re
import requests
import sys
import threading
from datetime import datetime
load_dotenv(override=True)
class JsonLogFormatter(logging.Formatter):
"""Une ligne JSON par Γ©vΓ©nement (LOG_FORMAT=json sur HF)."""
def format(self, record: logging.LogRecord) -> str:
payload = {
"timestamp": self.formatTime(
record, datefmt="%Y-%m-%dT%H:%M:%S"
),
"level": record.levelname,
"logger": record.name,
"message": record.getMessage(),
}
if record.exc_info:
payload["exception"] = self.formatException(record.exc_info)
return json.dumps(payload, ensure_ascii=False)
def _configure_logging() -> None:
level_name = os.getenv("LOG_LEVEL", "INFO").upper()
level = getattr(logging, level_name, logging.INFO)
root = logging.getLogger()
root.setLevel(level)
if root.handlers:
return
handler = logging.StreamHandler(sys.stdout)
if os.getenv("LOG_FORMAT", "").lower() == "json":
handler.setFormatter(JsonLogFormatter())
else:
handler.setFormatter(logging.Formatter(
"%(asctime)s | %(levelname)s | %(name)s | %(message)s",
datefmt="%Y-%m-%dT%H:%M:%S",
))
root.addHandler(handler)
_configure_logging()
log = logging.getLogger("wadagni.hf_logs")
questions_log = logging.getLogger("wadagni.questions")
upload_log = logging.getLogger("wadagni.upload")
security_log = logging.getLogger("wadagni.security")
tools_log = logging.getLogger("wadagni.tools")
# ββ Configuration confidentialitΓ© ββββββββββββββββββββββββββββββββββββββββββββ
PRIVACY_NOTICE = (
"Avant l'envoi de votre message, veuillez noter que son contenu peut Γͺtre enregistrΓ© "
"Γ des fins de suivi et d'amΓ©lioration du service .\n\n"
"Merci de ne pas inclure de donnΓ©es sensibles (opinions politiques dΓ©taillΓ©es, "
"donnΓ©es de santΓ©, informations bancaires) ni de donnΓ©es personnelles non nΓ©cessaires "
"(adresse, tΓ©lΓ©phone, numΓ©ro d'identitΓ©).\n\n"
"En cochant la case de consentement et en envoyant votre message, vous acceptez ces conditions."
)
CONSENT_REQUIRED_MESSAGE = (
"β οΈ Avant de pouvoir Γ©changer avec l'assistant, veuillez accepter notre "
"politique de confidentialitΓ© en cochant la case prΓ©vue Γ cet effet."
)
# ββ Initialisation du dataset de logs ββββββββββββββββββββββββββββββββββββββββ
def init_logs_dataset():
token = os.getenv("HF_TOKEN")
dataset_id = os.getenv("LOGS_DATASET_ID")
if not token or not dataset_id:
log.warning(
"HF_TOKEN ou LOGS_DATASET_ID manquant, dataset non initialisΓ©"
)
return
try:
create_repo(
repo_id=dataset_id,
repo_type="dataset",
private=True,
token=token,
exist_ok=True,
)
log.info("Dataset logs prΓͺt : %s", dataset_id)
except Exception:
log.exception("Erreur init dataset logs")
try:
path = hf_hub_download(
repo_id=dataset_id,
repo_type="dataset",
filename="db/log.txt",
token=token,
)
with open(path, "r", encoding="utf-8") as src:
content = src.read()
with open("db/log.txt", "w", encoding="utf-8") as dst:
dst.write(content)
log.info(
"Fichier log.txt rΓ©cupΓ©rΓ© (%s lignes)",
len(content.splitlines()),
)
except Exception:
log.info("Aucun fichier log.txt sur HF, dΓ©marrage Γ vide")
init_logs_dataset()
# ββ Initialisation du dataset Questions βββββββββββββββββββββββββββββββββββββ
def init_questions_dataset():
token = os.getenv("HF_TOKEN")
questions_id = os.getenv("QUESTIONS_DATASET_ID")
if not token or not questions_id:
questions_log.warning(
"HF_TOKEN ou QUESTIONS_DATASET_ID manquant, "
"dataset non initialisΓ©"
)
return
try:
create_repo(
repo_id=questions_id,
repo_type="dataset",
private=True,
token=token,
exist_ok=True,
)
questions_log.info("Dataset questions prΓͺt : %s", questions_id)
except Exception:
questions_log.exception("Erreur init dataset questions")
try:
path = hf_hub_download(
repo_id=questions_id,
repo_type="dataset",
filename="questions.txt",
token=token,
)
with open(path, "r", encoding="utf-8") as src:
content = src.read()
with open("db/questions.txt", "w", encoding="utf-8") as dst:
dst.write(content)
questions_log.info(
"Fichier questions.txt rΓ©cupΓ©rΓ© (%s lignes)",
len(content.splitlines()),
)
except Exception:
questions_log.info(
"Aucun fichier questions.txt sur HF, dΓ©marrage Γ vide"
)
init_questions_dataset()
def _upload_to_hf(path_or_fileobj, path_in_repo, repo_id):
"""Upload en arrière-plan vers HF avec retry."""
try:
api = HfApi()
api.upload_file(
path_or_fileobj=path_or_fileobj,
path_in_repo=path_in_repo,
repo_id=repo_id,
repo_type="dataset",
token=os.getenv("HF_TOKEN"),
)
except Exception:
upload_log.exception(
"Erreur upload HF path_in_repo=%s repo_id=%s",
path_in_repo,
repo_id,
)
def push_question(question):
"""Enregistre chaque question posΓ©e par un utilisateur dans le dataset Questions."""
now = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
questions_log.info("%s β %s", now, question)
questions_path = "db/questions.txt"
entry = f"[{now}] {question}\n"
with open(questions_path, "a", encoding="utf-8") as f:
f.write(entry)
threading.Thread(
target=_upload_to_hf,
args=(questions_path, "questions.txt", os.getenv("QUESTIONS_DATASET_ID")),
daemon=True,
).start()
def push(text):
log.info("%s", text)
log_path = "db/log.txt"
entry = f"[{datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] {text}\n"
with open(log_path, "a", encoding="utf-8") as f:
f.write(entry)
threading.Thread(
target=_upload_to_hf,
args=(log_path, log_path, os.getenv("LOGS_DATASET_ID")),
daemon=True,
).start()
# ββ Outils (tools) βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def record_user_details(email, name="Name not provided", notes="not provided"):
push(f"Recording {name} with email {email} and notes {notes}")
return {"recorded": "ok"}
def record_unknown_question(question):
push(f"Recording {question}")
return {"recorded": "ok"}
record_user_details_json = {
"name": "record_user_details",
"description": "Utilise cet outil pour enregistrer qu'un utilisateur souhaite Γͺtre contactΓ© et a fourni une adresse e-mail",
"parameters": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "L'adresse e-mail de cet utilisateur"
},
"name": {
"type": "string",
"description": "Le nom de l'utilisateur, s'il l'a fourni"
},
"notes": {
"type": "string",
"description": "Toute information supplΓ©mentaire sur la conversation qui mΓ©rite d'Γͺtre enregistrΓ©e pour donner du contexte"
}
},
"required": ["email"],
"additionalProperties": False
}
}
record_unknown_question_json = {
"name": "record_unknown_question",
"description": "Utilise toujours cet outil pour enregistrer toute question Γ laquelle tu n'as pas pu rΓ©pondre faute de connaissance",
"parameters": {
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "La question Γ laquelle il n'a pas Γ©tΓ© possible de rΓ©pondre"
},
},
"required": ["question"],
"additionalProperties": False
}
}
tools = [
{"type": "function", "function": record_user_details_json},
{"type": "function", "function": record_unknown_question_json}
]
# ββ Whitelist des outils autorisΓ©s (sΓ©curitΓ©) ββββββββββββββββββββββββββββββ
ALLOWED_TOOLS = {
"record_user_details": record_user_details,
"record_unknown_question": record_unknown_question,
}
# ββ Classe principale βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Me:
def __init__(self):
self.openai = OpenAI()
self.name = "Romuald WADAGNI"
# Chargement de la base vectorielle FAISS
self.db_index = FAISS.load_local(
folder_path="db",
index_name="db_index",
embeddings=OpenAIEmbeddings(),
allow_dangerous_deserialization=True,
)
def handle_tool_call(self, tool_calls):
results = []
for tool_call in tool_calls:
tool_name = tool_call.function.name
arguments = json.loads(tool_call.function.arguments)
tools_log.info("Tool called: %s", tool_name)
tool = ALLOWED_TOOLS.get(tool_name)
if not tool:
security_log.warning(
"Tool non autorisΓ© refusΓ© : %s", tool_name
)
result = {"error": "tool not allowed"}
else:
result = tool(**arguments)
results.append({
"role": "tool",
"content": json.dumps(result),
"tool_call_id": tool_call.id
})
return results
def system_prompt(self, query):
# Recherche des passages les plus pertinents dans la base vectorielle
similar_documents = self.db_index.similarity_search(query, k=3)
message_content = re.sub(r'\n{2}', ' ', '\n '.join(
[f'Extrait du document nΒ°{i+1} :\n' + doc.page_content
for i, doc in enumerate(similar_documents)]))
prompt = (
f"You are the communication assistant of {self.name}, elected President of Benin. \
You answer questions from visitors on his website dedicated to his record in office and his ambitions. \
Your mission is to represent {self.name} faithfully and to convince visitors to support his actions and projects for the future. \
Be professional and engaging, as if you were speaking to citizens who care about their country's development. \
If you do not know the answer to a question, use the record_unknown_question tool to record it. \
Do not forget: you must highlight {self.name}'s record and initiatives, while encouraging citizens to continue supporting his actions.\
If a user wishes to be contacted, ask for their email address and record it using the record_user_details tool."
)
prompt += f"\n\n Relevant documents:\n{message_content}\n\n"
prompt += f"With this context, please chat with the user, always staying in character as the communication assistant of {self.name}."
return prompt
def chat(self, message, history):
push_question(message)
history_messages = []
for item in history:
if isinstance(item, dict):
history_messages.append(item)
else:
history_messages.append({"role": "user", "content": item[0]})
if item[1]:
history_messages.append({"role": "assistant", "content": item[1]})
messages = (
[{"role": "system", "content": self.system_prompt(message)}]
+ history_messages
+ [{"role": "user", "content": message}]
)
try:
done = False
while not done:
response = self.openai.chat.completions.create(
model="gpt-4o-mini",
messages=messages,
tools=tools,
temperature=0.3,
)
if response.choices[0].finish_reason == "tool_calls":
msg = response.choices[0].message
results = self.handle_tool_call(msg.tool_calls)
messages.append(msg)
messages.extend(results)
else:
done = True
return response.choices[0].message.content
except requests.RequestException:
return "Notre service est momentanΓ©ment indisponible. Veuillez rΓ©essayer dans quelques instants."
except (KeyError, IndexError, ValueError):
return "Une erreur inattendue s'est produite lors du traitement de votre demande. Veuillez reformuler votre question ou rΓ©essayer."
# ββ Application FastAPI βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI()
me = Me()
# ββ Rate limiting βββββββββββββββββββββββββββββββββββββββββββββββββββ
from slowapi import Limiter, _rate_limit_exceeded_handler
from slowapi.util import get_remote_address
from slowapi.errors import RateLimitExceeded
limiter = Limiter(key_func=get_remote_address)
app.state.limiter = limiter
app.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler)
# ββ En-tΓͺtes de sΓ©curitΓ© HTTP βββββββββββββββββββββββββββββββββββββββββ
from starlette.middleware.base import BaseHTTPMiddleware
from starlette.requests import Request
class SecurityHeadersMiddleware(BaseHTTPMiddleware):
async def dispatch(self, request: Request, call_next):
response = await call_next(request)
response.headers["X-Frame-Options"] = "SAMEORIGIN"
response.headers["X-Content-Type-Options"] = "nosniff"
response.headers["Referrer-Policy"] = "strict-origin-when-cross-origin"
response.headers["Content-Security-Policy"] = (
"default-src 'self'; "
"script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; "
"style-src 'self' 'unsafe-inline'; "
"img-src 'self' data:; "
"frame-ancestors 'self' https://*.hf.space https://huggingface.co"
)
return response
app.add_middleware(SecurityHeadersMiddleware)
class ChatRequest(BaseModel):
message: str = Field(..., max_length=2000)
history: list = Field(default_factory=list)
consent: bool = False
@validator("history")
def limit_history(cls, v):
if len(v) > 50:
return v[-50:]
return v
@app.get("/health")
def health():
"""Sonde de disponibilitΓ© pour monitoring / Hugging Face."""
return {"status": "ok"}
@app.get("/privacy")
def privacy():
"""Retourne la notice de confidentialitΓ© pour affichage cΓ΄tΓ© frontend."""
return {"notice": PRIVACY_NOTICE}
@app.get("/photo")
def get_photo():
photo_path = "db/photo.jpg"
if os.path.exists(photo_path):
return FileResponse(photo_path, media_type="image/jpeg")
return FileResponse("static/placeholder.png", media_type="image/png")
@app.post("/chat")
@limiter.limit("20/minute")
def chat_endpoint(req: ChatRequest, request: Request):
# ββ VΓ©rification du consentement explicite βββββββββββββββββββββββββββ
if not req.consent:
return {
"response": CONSENT_REQUIRED_MESSAGE,
"consent_required": True
}
# ββ Traitement normal avec consentement validΓ© βββββββββββββββββββββββ
response = me.chat(req.message, req.history)
return {"response": response, "consent_required": False}
# Servir le frontend (doit Γͺtre montΓ© en dernier)
app.mount("/", StaticFiles(directory="static", html=True), name="static")
|