File size: 20,307 Bytes
963faec 7c2e183 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec a4279dd 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b a4279dd 963faec a4279dd 963faec 3c0093b b1d7f30 3c0093b 963faec a4279dd 3c0093b a4279dd 963faec 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 3a5fedf 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b 9dc4477 3c0093b a4279dd 3c0093b a4279dd 3c0093b 7c2e183 3c0093b 963faec 3c0093b 7c2e183 3c0093b 963faec 3c0093b 23a7f39 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec 3c0093b 7c2e183 3c0093b 963faec eaeb996 3c0093b 963faec 3c0093b 7c2e183 3c0093b 9dc4477 8a47638 9dc4477 8a47638 9dc4477 963faec 9dc4477 963faec 9dc4477 3c0093b 963faec 3c0093b 963faec 3c0093b 49819f2 963faec 3c0093b a4279dd 3c0093b a4279dd 963faec 3c0093b 49819f2 a4279dd 3c0093b 963faec a4279dd 3c0093b 963faec 3c0093b 963faec a4279dd 3c0093b 963faec a4279dd 9dc4477 3c0093b a4279dd 3c0093b 963faec 3c0093b 963faec 3c0093b 963faec | 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 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 | import os
import json
import requests
import shutil
import logging
import cloudinary
import cloudinary.uploader
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
from fastapi import FastAPI, Body, HTTPException, BackgroundTasks
from fastapi.responses import JSONResponse
from dotenv import load_dotenv
from pydantic import BaseModel, HttpUrl, validator
from typing import List, Optional
from pipeline import run_intervision_pipeline
# ββ Logging ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
logging.basicConfig(
level=logging.INFO,
format="[%(levelname)s] %(asctime)s - %(message)s",
datefmt="%H:%M:%S",
)
log = logging.getLogger(__name__)
# ββ Retry strategy ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
retry_strategy = Retry(
total=3,
backoff_factor=1,
status_forcelist=[429, 500, 502, 503, 504],
)
adapter = HTTPAdapter(max_retries=retry_strategy)
http = requests.Session()
http.mount("https://", adapter)
http.mount("http://", adapter)
load_dotenv()
app = FastAPI(title="Intervision AI Engine")
# ββ Cloudinary ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_cloud_name = os.getenv("CLOUDINARY_CLOUD_NAME")
_cloud_key = os.getenv("CLOUDINARY_API_KEY")
_cloud_secret = os.getenv("CLOUDINARY_API_SECRET")
if not all([_cloud_name, _cloud_key, _cloud_secret]):
log.warning(
"Cloudinary credentials missing β video upload will be skipped. "
"Set CLOUDINARY_CLOUD_NAME, CLOUDINARY_API_KEY, CLOUDINARY_API_SECRET."
)
cloudinary.config(
cloud_name=_cloud_name,
api_key=_cloud_key,
api_secret=_cloud_secret,
)
# ββ Directories βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RESULT_DIR = "temp_data/results"
UPLOAD_DIR = "temp_data/uploads"
os.makedirs(RESULT_DIR, exist_ok=True)
os.makedirs(UPLOAD_DIR, exist_ok=True)
# ββ Pydantic models βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Answer(BaseModel):
aiQuestionId: int
questionText: str
expectedAnswer: str
isAnswered: bool
isSkipped: bool
isFailed: bool
startedAt: str
submittedAt: str
@validator("startedAt", "submittedAt")
def validate_timestamp(cls, v):
if not v:
return "00:00:00"
parts = v.split(":")
if len(parts) != 3:
raise ValueError(
f"Timestamp must be HH:MM:SS or HH:MM:SS.mmm, got: {v!r}"
)
try:
# hour
int(parts[0])
# minute
int(parts[1])
# second or second.milliseconds
float(parts[2])
except ValueError:
raise ValueError(
f"Timestamp parts must be numeric, got: {v!r}"
)
return v
class InterviewRequest(BaseModel):
sessionId: str
originalVideoUrl: HttpUrl
callbackBaseUrl: HttpUrl
answers: List[Answer]
@validator("answers")
def answers_not_empty(cls, v):
if not v:
raise ValueError("answers list must not be empty")
return v
class DeleteVideoRequest(BaseModel):
videoUrl: str
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def time_to_seconds(t_str: str) -> float:
"""Convert HH:MM:SS or HH:MM:SS.mmm to total seconds."""
if not t_str:
return 0.0
try:
parts = t_str.split(":")
if len(parts) != 3:
log.warning(
"time_to_seconds: unexpected format %r β defaulting to 0",
t_str
)
return 0.0
h = int(parts[0])
m = int(parts[1])
s = float(parts[2])
total = h * 3600 + m * 60 + s
if total < 0:
log.warning(
"time_to_seconds: negative value %.3f β clamping to 0",
total
)
return 0.0
return total
except Exception as e:
log.warning(
"time_to_seconds(%r) error: %s β defaulting to 0",
t_str,
e,
)
return 0.0
def _send_callback(callback_url: str, payload: dict, session_id: str):
"""POST AI report to backend."""
try:
endpoint = (
f"{str(callback_url).rstrip('/')}"
f"/api/v1/internal/ai/sessions/{session_id}/report"
)
resp = requests.post(
endpoint,
json=payload,
timeout=30
)
resp.raise_for_status()
log.info(
"[CALLBACK] %s β HTTP %d",
endpoint,
resp.status_code
)
except requests.exceptions.Timeout:
log.error(
"[CALLBACK] Timeout sending results for session %s",
session_id
)
except requests.exceptions.ConnectionError as e:
log.error(
"[CALLBACK] Connection error for session %s: %s",
session_id,
e
)
except requests.exceptions.HTTPError as e:
log.error(
"[CALLBACK] Server returned error for session %s: %s",
session_id,
e
)
try:
log.error(
"[CALLBACK] Response Body: %s",
resp.text
)
except:
pass
except Exception as e:
log.error(
"[CALLBACK] Unexpected error for session %s: %s",
session_id,
e
)
def _cleanup(paths: list):
"""Remove files/directories silently."""
for path in paths:
try:
if os.path.isfile(path):
os.remove(path)
log.info("[CLEANUP] Removed file: %s", path)
elif os.path.isdir(path):
shutil.rmtree(path)
log.info("[CLEANUP] Removed dir: %s", path)
except Exception as e:
log.warning("[CLEANUP] Could not remove %s: %s", path, e)
# ββ Background job ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def background_processing(session_data: dict):
session_id = session_data.get("sessionId", "unknown")
video_url = session_data.get("originalVideoUrl")
callback_url = session_data.get("callbackBaseUrl")
log.info("[JOB] Started β session: %s", session_id)
session_dir = os.path.join(RESULT_DIR, session_id)
local_input_path = os.path.join(UPLOAD_DIR, f"{session_id}_input.mp4")
os.makedirs(session_dir, exist_ok=True)
# ββ 1. Validate inputs ββββββββββββββββββββββββββββββββββββββββββββββββββββ
if not video_url:
log.error("[JOB] No video URL for session %s", session_id)
_send_callback(callback_url, {
"sessionId": session_id, "finalVideoUrl": None, "report": [],
"error": "Missing video URL",
}, session_id)
return
if not callback_url:
log.error("[JOB] No callback URL for session %s", session_id)
return
# ββ 2. Download video βββββββββββββββββββββββββββββββββββββββββββββββββββββ
try:
log.info("[JOB] Downloading video: %s", video_url)
response = http.get(str(video_url), stream=True, timeout=300)
response.raise_for_status()
total_bytes = 0
with open(local_input_path, "wb") as f:
for chunk in response.iter_content(chunk_size=1024 * 1024):
if chunk:
f.write(chunk)
total_bytes += len(chunk)
if total_bytes == 0 or not os.path.exists(local_input_path):
raise ValueError("Downloaded file is empty or missing")
log.info("[JOB] Downloaded %.2f MB", total_bytes / (1024 * 1024))
except requests.exceptions.Timeout:
log.error("[JOB] Download timed out for session %s", session_id)
_send_callback(callback_url, {
"sessionId": session_id, "finalVideoUrl": None, "report": [],
"error": "Video download timed out",
}, session_id)
_cleanup([local_input_path, session_dir])
return
except requests.exceptions.HTTPError as e:
log.error("[JOB] HTTP error downloading video: %s", e)
_send_callback(callback_url, {
"sessionId": session_id, "finalVideoUrl": None, "report": [],
"error": f"Video download HTTP error: {e}",
}, session_id)
_cleanup([local_input_path, session_dir])
return
except Exception as e:
log.error("[JOB] Download failed: %s", e)
_send_callback(callback_url, {
"sessionId": session_id, "finalVideoUrl": None, "report": [],
"error": f"Video download failed: {e}",
}, session_id)
_cleanup([local_input_path, session_dir])
return
# ββ 3. Parse & validate question timings ββββββββββββββββββββββββββββββββββ
final_questions = []
skipped_failed_reports = []
for q in session_data.get("answers", []):
qid = q.get("aiQuestionId")
if q.get("isAnswered"):
start_s = time_to_seconds(q.get("startedAt", "00:00:00"))
end_s = time_to_seconds(q.get("submittedAt", "00:00:00"))
if end_s <= start_s:
log.warning(
"[JOB] Q%s: end_time (%d) <= start_time (%d) β treating as unanswered",
qid, end_s, start_s,
)
skipped_failed_reports.append({
"questionId": qid, "userAnswerText": "N/A",
"score": 0.0, "relevance": 0.0, "confidence": 0.0,
"stress": 0.0, "clarity": 0.0, "pauses": 0.0,
"toneOfVoice": 3, "status": "invalid_timing",
})
continue
question_text = (q.get("questionText") or "").strip()
expected_answer = (q.get("expectedAnswer") or "").strip()
if not question_text:
log.warning("[JOB] Q%s: empty questionText", qid)
final_questions.append({
"question_id": qid,
"question_text": question_text,
"ideal_answer": expected_answer,
"start_time": start_s,
"end_time": end_s,
})
else:
status = "skipped" if q.get("isSkipped") else "failed"
skipped_failed_reports.append({
"questionId": qid, "userAnswerText": "N/A",
"score": 0.0, "relevance": 0.0, "confidence": 0.0,
"stress": 0.0, "clarity": 0.0, "pauses": 0.0,
"toneOfVoice": 3, "status": status,
})
# Log final questions config (outside loop β printed once with all timestamps)
log.info("[JOB] Final questions config: %s", json.dumps(final_questions, indent=2))
# ββ 4. Run pipeline βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ai_results = []
final_video_url = None
if final_questions:
log.info("[JOB] Running pipeline for %d questions β¦", len(final_questions))
try:
final_video_path, report_path = run_intervision_pipeline(
local_input_path, final_questions, session_dir
)
# Parse report
if report_path and os.path.exists(report_path):
try:
with open(report_path, "r") as f:
ai_results = json.load(f).get("listOfAnswerReport", [])
except (json.JSONDecodeError, KeyError) as e:
log.error("[JOB] Failed to parse report.json: %s", e)
ai_results = []
else:
log.warning("[JOB] report.json not found β using empty results")
# Upload annotated video
if final_video_path and os.path.exists(final_video_path):
if os.path.getsize(final_video_path) == 0:
log.warning("[JOB] Annotated video is 0 bytes β skipping upload")
elif not all([_cloud_name, _cloud_key, _cloud_secret]):
log.warning("[JOB] Cloudinary not configured β skipping upload")
else:
try:
upload_res = cloudinary.uploader.upload(
final_video_path,
public_id=f"res_{session_id}",
folder="intervision_results",
resource_type="video",
)
final_video_url = upload_res.get("secure_url")
if not final_video_url:
log.warning("[JOB] Cloudinary returned no secure_url")
else:
log.info("[JOB] Video uploaded: %s", final_video_url)
except cloudinary.exceptions.Error as e:
log.error("[JOB] Cloudinary upload error: %s", e)
except Exception as e:
log.error("[JOB] Unexpected upload error: %s", e)
else:
log.warning("[JOB] No final video to upload")
except Exception as e:
log.error("[JOB] Pipeline crashed for session %s: %s", session_id, e)
# ai_results stays [] β callback will still fire with skipped + failed
else:
log.info("[JOB] No answered questions β skipping pipeline")
# ββ 5. Callback βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
questions = []
for item in (ai_results + skipped_failed_reports):
raw_text = item.get("userAnswerText") or ""
status = item.get("status", "answered")
# Guarantee answerText is never empty β backend rejects empty strings
if not raw_text.strip():
if status == "skipped":
answer_text = "Question skipped"
elif status == "failed":
answer_text = "Question failed"
elif status == "invalid_timing":
answer_text = "Invalid timing"
else:
answer_text = "No answer provided"
else:
answer_text = raw_text
questions.append({
"aiQuestionId": item.get("questionId"),
"answerText": answer_text,
"score": item.get("score", 0),
"clarity": item.get("clarity", 0),
"relevance": item.get("relevance", 0),
"stress": item.get("stress", 0),
"confidence": item.get("confidence", 0),
"pauses": item.get("pauses", 0),
"toneOfVoice": item.get("toneOfVoice", 0),
})
final_payload = {
"processedVideoUrl": final_video_url,
"questions": questions,
}
log.info(
"[CALLBACK] Payload:\n%s",
json.dumps(final_payload, indent=2)
)
_send_callback(callback_url, final_payload, session_id)
# ββ 6. Cleanup ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_cleanup([local_input_path, session_dir])
log.info("[JOB] Done β session: %s", session_id)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROUTES
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/")
async def root():
return {
"status": "Intervision AI Engine Running",
"message": "API is working successfully",
}
@app.post("/process-interview")
async def process_interview(background_tasks: BackgroundTasks, data: InterviewRequest):
"""
Accepts an interview session and queues it for background processing.
Responds immediately; results are sent to callbackBaseUrl when ready.
"""
log.info("[API] /process-interview β session: %s", data.sessionId)
background_tasks.add_task(background_processing, data.dict())
return {
"message": "Processing started",
"sessionId": data.sessionId,
}
@app.post("/delete-video-by-url")
async def delete_video_by_url(data: DeleteVideoRequest):
"""Delete a Cloudinary video by its public URL."""
video_url = (data.videoUrl or "").strip()
if not video_url:
raise HTTPException(status_code=400, detail="videoUrl is required")
if not all([_cloud_name, _cloud_key, _cloud_secret]):
raise HTTPException(
status_code=503,
detail="Cloudinary is not configured on this server",
)
try:
url_parts = video_url.split("/")
filename_with_ext = url_parts[-1]
if "." not in filename_with_ext:
raise ValueError(f"Cannot parse filename from URL: {video_url!r}")
filename = filename_with_ext.rsplit(".", 1)[0]
folder = url_parts[-2] if len(url_parts) >= 2 and "intervision_results" in url_parts[-2] else ""
public_id = f"{folder}/{filename}" if folder else filename
log.info("[DELETE] Deleting public_id: %s", public_id)
result = cloudinary.uploader.destroy(public_id, resource_type="video")
if result.get("result") == "ok":
return {"status": "success", "message": f"Deleted {public_id}"}
# "not found" is still a valid non-error state
if result.get("result") == "not found":
log.warning("[DELETE] public_id not found on Cloudinary: %s", public_id)
return JSONResponse(
status_code=404,
content={"status": "not_found", "message": f"{public_id} was not found"},
)
log.warning("[DELETE] Unexpected Cloudinary result: %s", result)
return JSONResponse(status_code=500, content={"status": "failed", "details": result})
except cloudinary.exceptions.Error as e:
log.error("[DELETE] Cloudinary error: %s", e)
raise HTTPException(status_code=502, detail=f"Cloudinary error: {e}")
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
log.error("[DELETE] Unexpected error: %s", e)
raise HTTPException(status_code=500, detail=str(e))
# ββ Entry point βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000) |