File size: 28,716 Bytes
85d80c4 2aa08d9 85d80c4 2aa08d9 85d80c4 215d5f8 2aa08d9 85d80c4 2aa08d9 215d5f8 2aa08d9 85d80c4 215d5f8 70c5f11 85d80c4 215d5f8 70c5f11 85d80c4 2aa08d9 85d80c4 f237ddd 215d5f8 85d80c4 2aa08d9 85d80c4 e2a10b6 85d80c4 | 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 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | """
engine.py β Version Alpha
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Thin orchestration layer. Wires together the three agents and exposes
the functions that interview_coach.py (Gradio UI) calls directly.
LLM Backend: LOCAL β Ollama running mistral:7b on http://localhost:11434
Swap to HF InferenceClient before deploying to HF Spaces (see README).
"""
import gradio as gr
import json
import datetime
import os
from config import (
HF_MODEL, HISTORY_FILE,
INTERVIEW_MODES, TIPS_DB, DEFAULT_TIPS
)
from agents import ValidatorAgent, QuestionGenAgent, ScorerAgent
from dotenv import load_dotenv
load_dotenv() # Load HF_TOKEN from .env for local testing
# ββ PDF imports βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Table, TableStyle, PageBreak
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.enums import TA_CENTER, TA_LEFT
from reportlab.lib.colors import HexColor
from reportlab.lib.units import inch
# ββ Dual-Mode LLM Call (Ollama Local / Hugging Face Cloud Fallback) βββββββββ
import requests
import os
# Model config defaults (safely override if present in config.py)
try:
from config import OLLAMA_URL
except ImportError:
OLLAMA_URL = "http://localhost:11434/api/generate"
try:
from config import OLLAMA_MODEL
except ImportError:
OLLAMA_MODEL = "mistral:7b"
'''def ask_llm(prompt: str, temperature: float = 0.7, max_tokens: int = 512) -> str:
"""
"""Dual-mode LLM call:
1. Try local Ollama first (if running).
2. Fall back to Hugging Face Serverless Inference API via direct requests.post.
"""
""" # ββ Try Local Ollama (only if NOT running inside a Hugging Face Space container) ββ
is_hf_space = os.environ.get("SPACE_ID") is not None
if not is_hf_space:
try:
# Quick check (1.5s timeout) to see if Ollama server is running
check_resp = requests.get("http://localhost:11434/api/tags", timeout=1.5)
if check_resp.status_code == 200:
payload = {
"model": OLLAMA_MODEL,
"prompt": prompt,
"options": {
"temperature": temperature,
"num_predict": max_tokens
},
"stream": False
}
# Since Ollama is running, we allow a generous timeout (60s) for model loading/generation
response = requests.post(OLLAMA_URL, json=payload, timeout=60)
if response.status_code == 200:
return response.json().get("response", "").strip()
except Exception as e:
print(f"[Ollama Status] Local Ollama not available: {str(e)}")
# ββ Fallback to Hugging Face Serverless API (direct requests.post) ββ
try:
token = os.environ.get("HF_TOKEN")
headers = {"Authorization": f"Bearer {token}"} if token else {}
url = f"https://api-inference.huggingface.co/models/{HF_MODEL}"
# Hugging Face API requires temperature > 0
safe_temp = temperature if temperature > 0 else 0.01
payload = {
"inputs": prompt,
"parameters": {
"max_new_tokens": max_tokens,
"temperature": safe_temp,
"return_full_text": False
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
if response.status_code == 200:
data = response.json()
if isinstance(data, list) and len(data) > 0 and "generated_text" in data[0]:
res = data[0]["generated_text"]
else:
res = str(data)
return res.replace("<s>", "").replace("</s>", "").strip()
else:
raise RuntimeError(f"Hugging Face API returned status {response.status_code}: {response.text}")
except requests.exceptions.ConnectionError as ce:
error_msg = str(ce)
if "Failed to resolve" in error_msg or "NameResolutionError" in error_msg or "getaddrinfo failed" in error_msg:
raise ConnectionError(
"DNS Resolution Error: The Space container cannot resolve the Hugging Face API host. "
"This is a temporary Hugging Face infrastructure glitch. Please go to your Space Settings "
"and click 'Factory Restart' to rebuild the network container."
)
raise ce
except Exception as e:
print(f"\n[API EXCEPTION] {str(e)}\n")
raise e
'''
# ββ Hugging Face LLM call ββββββββββββββββββββββββββββββββββββββββββββββββββββ
from huggingface_hub import InferenceClient
import os
from config import HF_MODEL
from agents import ValidatorAgent, QuestionGenAgent, ScorerAgent
# Initialize the inference client globally using your global configuration string
client = InferenceClient(model=HF_MODEL, token=os.environ.get("HF_TOKEN"))
def ask_llm(prompt: str, temperature: float = 0.7, max_tokens: int = 512) -> str:
"""
Hugging Face Inference Provider call utilizing the modern chat completion pipeline.
This fulfills partner routing rules cleanly and bypasses task metadata limitations.
"""
try:
safe_temp = temperature if temperature > 0 else 0.01
# Format the unstructured string prompt into a compliant chat completion message schema
response = client.chat_completion(
messages=[{"role": "user", "content": prompt}],
max_tokens=max_tokens,
temperature=safe_temp
)
# Extract the content text directly from the returned choices payload array
cleaned = response.choices[0].message.content
cleaned = cleaned.replace("<s>", "").replace("</s>", "").strip()
print("\n" + "="*40)
print(f"[LLM RAW OUTPUT]: '{cleaned}'")
print("="*40 + "\n")
return cleaned
except Exception as e:
print("\n" + "β"*20)
print(f"[API ERROR DETECTED]: {str(e)}")
print("β"*20 + "\n")
return ""
# ββ Agent instances (singletons, created once at startup) βββββββββββββββββββββ
# Retained directly below the function layout to protect against local NameErrors
_validator = ValidatorAgent(ask_llm)
_q_gen = QuestionGenAgent(ask_llm)
_scorer = ScorerAgent(ask_llm)
# ββ Main orchestration functions (called by Gradio UI) ββββββββββββββββββββββββ
def generate_all_questions(job_desc: str, mode_label: str,
history_state: list, job_profile_state: dict):
"""
Entry point for the "Start Interview" button.
Validates the JD, extracts a profile, generates N questions,
and builds the Prep Sheet for Tab 3.
Returns:
(first_question, "0", progress_str, history_state,
tips_markdown, job_profile_state, score_result_state)
"""
n_questions = INTERVIEW_MODES.get(mode_label, 3)
# ββ 1. Validate & extract profile βββββββββββββββββββββββββββββββββββββββββ
try:
validation_result = _validator.run(job_desc)
except Exception as e:
err_msg = str(e)
gr.Warning(f"LLM API Connection Error: {err_msg}")
return (
f"β LLM API Connection Error:\n{err_msg}\n\nPlease try again or restart the Space container.",
"0",
"API Connection Error",
history_state,
_build_fallback_tips(job_desc),
job_profile_state,
{},
)
if not validation_result.get("valid"):
err = validation_result.get("error_msg", "Please enter a complete job description.")
gr.Warning(err)
return (
"Please enter a valid job description and try again.",
"0",
"Ready",
history_state,
_build_fallback_tips(job_desc),
job_profile_state,
{},
)
job_profile_state = validation_result # Save enriched profile to state
# ββ 2. Generate questions ββββββββββββββββββββββββββββββββββββββββββββββββββ
questions = _q_gen.run(validation_result, job_desc, n_questions=n_questions)
# ββ 3. Build session βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
session = {
"timestamp": datetime.datetime.now().strftime("%Y-%m-%d %H:%M"),
"job_snippet": job_desc[:80] + "...",
"industry": validation_result.get("industry", "General"),
"role_level": validation_result.get("role_level", "Mid-Level"),
"mode": mode_label,
"questions": questions,
"answers": [""] * n_questions,
"scores": [""] * n_questions,
"numeric_scores": [],
"score_results": [], # Full ScorerAgent result dicts
}
# Current-session-only: return new session directly
history_state = [session]
# ββ 4. Build AI-generated Prep Sheet βββββββββββββββββββββββββββββββββββββ
tips_md = _build_prep_sheet(validation_result)
return (
questions[0],
"0",
f"Question 1 / {n_questions}",
history_state,
tips_md,
job_profile_state,
{}, # Reset score_result_state
)
def score_answer(answer: str, q_index_str: str,
history_state: list, job_profile_state: dict):
"""
Score the candidate's answer using ScorerAgent (keyword-aware).
Returns the formatted feedback text and updated state.
"""
idx = int(q_index_str) if q_index_str else 0
if not history_state:
return "Start an interview first.", history_state, {}
session = history_state[-1]
questions = session.get("questions", [])
question = questions[idx] if idx < len(questions) else "Unknown question"
# ββ Run ScorerAgent ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
try:
result = _scorer.run(answer, question, job_profile_state)
except Exception as e:
err_msg = str(e)
gr.Warning(f"LLM API Connection Error: {err_msg}")
# Build dummy result indicating error
result = {
"score_str": f"β Error retrieving score: {err_msg}",
"numeric_score": 0,
"feedback": f"Could not grade answer due to API error: {err_msg}. Please retry.",
"hit_keywords": [],
"missed_keywords": [],
"coverage_pct": 0
}
# ββ Save to session ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if idx < len(session["answers"]):
session["answers"][idx] = answer[:100] + ("..." if len(answer) > 100 else "")
session["scores"][idx] = result["score_str"]
if result["numeric_score"] is not None:
session["numeric_scores"].append(result["numeric_score"])
# Store full result dicts (for PDF keyword coverage section)
while len(session["score_results"]) <= idx:
session["score_results"].append({})
session["score_results"][idx] = result
history_state[-1] = session
# ββ Build formatted feedback text βββββββββββββββββββββββββββββββββββββββββ
formatted = _format_feedback(result)
return formatted, history_state, result
def next_question(q_index_str: str, answer: str, history_state: list):
"""Move to the next question; return prev Q+A for the review panel."""
idx = int(q_index_str) if q_index_str else 0
if not history_state:
return "Start an interview first.", "", str(idx), "No session", history_state, "", "", ""
session = history_state[-1]
questions = session["questions"]
n_total = len(questions)
next_idx = idx + 1
prev_q = questions[idx]
prev_a = answer or "(no answer given)"
prev_score = session["scores"][idx] if session["scores"][idx] else "(no feedback yet)"
if next_idx >= n_total:
log = _render_session_log(session, up_to=idx)
return (
f"β
All {n_total} questions complete! Go to the History tab to download your PDF report.",
"",
str(idx),
f"Interview Complete π",
history_state,
prev_q,
prev_a,
log,
)
log = _render_session_log(session, up_to=idx)
return (
questions[next_idx],
"",
str(next_idx),
f"Question {next_idx + 1} / {n_total}",
history_state,
prev_q,
prev_a,
log,
)
# ββ History rendering ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def render_history(history_state: list) -> str:
"""Render the session history as Markdown for the History tab."""
history = history_state or []
if not history:
return "No session yet. Start an interview above!"
lines = []
for i, s in enumerate(reversed(history), 1):
avg_str = ""
if s.get("numeric_scores"):
avg = sum(s["numeric_scores"]) / len(s["numeric_scores"])
avg_str = f" Β· **Avg: {avg:.1f}/10**"
mode_badge = s.get("mode", "")
lines.append(f"### π Session β {s['timestamp']}{avg_str}")
lines.append(f"**Role:** {s.get('job_snippet','N/A')} | **Mode:** {mode_badge} | **Industry:** {s.get('industry','N/A')}")
scores_display = " Β· ".join(filter(None, s.get("scores", []))) or "No feedback yet"
lines.append(f"**Scores:** {scores_display}\n")
for j, (q, a, sc) in enumerate(zip(s["questions"], s["answers"], s["scores"]), 1):
lines.append(f"**Q{j}:** {q}")
if a:
lines.append(f"*Answer:* {a}")
if sc:
lines.append(f"*Score:* {sc}")
lines.append("")
lines.append("---")
return "\n".join(lines)
def _render_session_log(session: dict, up_to: int) -> str:
"""Render completed Q+A+Score for the in-Practice session log."""
if up_to < 0:
return "No completed questions yet."
lines = []
for i in range(up_to + 1):
q = session["questions"][i]
a = session["answers"][i] or "(no answer saved)"
sc = session["scores"][i] or "(no feedback yet)"
lines.extend([f"**Q{i+1}:** {q}", f"*Answer:* {a}", f"*Score:* {sc}", ""])
return "\n".join(lines)
# ββ Prep Sheet builder (Agenda #2 & #5 β fully AI-generated) ββββββββββββββββββ
def _build_prep_sheet(profile: dict) -> str:
"""
Build a rich, AI-tailored preparation sheet using the validated job profile.
Uses LLM-extracted data β works for ANY industry/role.
"""
industry = profile.get("industry", "General")
level = profile.get("role_level", "Mid-Level")
style = profile.get("interview_style", "Mixed")
keywords = profile.get("keywords", [])
tips = profile.get("tips", "")
kw_badges = " ".join(f"`{k}`" for k in keywords)
tips_section = ""
if tips:
# Ensure each bullet starts on its own line
tips_lines = [t.strip() for t in tips.replace("β’", "\nβ’").split("\n") if t.strip()]
tips_section = "\n".join(f"- {t.lstrip('β’').strip()}" for t in tips_lines if t)
# Static resources based on industry (best effort keyword match)
resources = _get_resources(industry)
return f"""## π― Prep Sheet: {level} {industry} Role
### π Expected Keywords in Your Answers
> Hit these terms to score above 5/10. The AI coach checks for them.
{kw_badges}
### π‘ Interview Preparation Tips
*Tailored for this specific role by AI*
{tips_section or "- Review the job description carefully and prepare examples using STAR format."}
### π Interview Style: {style}
{_style_advice(style)}
### π§ STAR Format Reminder
Use this structure for every behavioral or situational answer:
- **S**ituation β Set the scene (brief context)
- **T**ask β What were you responsible for?
- **A**ction β What did YOU specifically do? (most important)
- **R**esult β Quantify the outcome where possible
### π Useful Resources
{resources}
"""
def _style_advice(style: str) -> str:
guides = {
"Technical": "- Expect coding problems, system design, or domain-specific technical questions\n- Think aloud β interviewers evaluate your reasoning process\n- Clarify requirements before diving into solutions",
"Behavioral": "- Every answer should use the STAR format\n- Prepare 5β7 strong stories from your past that cover teamwork, conflict, leadership, failure\n- Be specific β avoid vague generalities",
"Case-Based": "- Structure your approach before answering: clarify, hypothesise, analyse, recommend\n- Practice frameworks: MECE, Porter's 5 Forces, SWOT\n- Show quantitative reasoning wherever possible",
"Mixed": "- Prepare for both behavioral STAR stories AND domain-specific technical questions\n- Research the company's tech stack / domain before the interview\n- Have questions ready to ask the interviewer",
}
return guides.get(style, guides["Mixed"])
def _get_resources(industry: str) -> str:
il = industry.lower()
if any(w in il for w in ["software", "engineer", "developer", "python", "data", "ml", "ai"]):
return "- [NeetCode Roadmap](https://neetcode.io/roadmap)\n- [Tech Interview Handbook](https://www.techinterviewhandbook.org/)\n- [System Design Primer](https://github.com/donnemartin/system-design-primer)\n- [Pramp β Free Mock Interviews](https://www.pramp.com/)"
elif any(w in il for w in ["finance", "banking", "investment", "accounting"]):
return "- [Breaking Into Wall Street](https://breakingintowallstreet.com/)\n- [Investopedia](https://www.investopedia.com/)\n- [Wall Street Oasis Forums](https://www.wallstreetoasis.com/)"
elif any(w in il for w in ["market", "brand", "digital", "content", "seo"]):
return "- [HubSpot Marketing Blog](https://blog.hubspot.com/marketing)\n- [Google Skillshop](https://skillshop.withgoogle.com/)\n- [Moz Beginner's Guide to SEO](https://moz.com/beginners-guide-to-seo)"
elif any(w in il for w in ["health", "medical", "clinical", "nurse", "pharma"]):
return "- [Interview Coach for Healthcare](https://www.indeed.com/career-advice/interviewing)\n- [NHS Interview Tips](https://www.healthcareers.nhs.uk/)"
else:
return "- [Indeed Interview Tips](https://www.indeed.com/career-advice/interviewing)\n- [Glassdoor Interview Questions](https://www.glassdoor.com/Interview/)\n- [LinkedIn Interview Prep](https://www.linkedin.com/interview-prep/)\n- [Big Interview](https://biginterview.com/)"
def _build_fallback_tips(job_desc: str) -> str:
"""Keyword-matched static tips as a fallback when validation fails."""
jd_lower = job_desc.lower()
matched = DEFAULT_TIPS
for key, data in TIPS_DB.items():
if key in jd_lower:
matched = data
break
lc_rows = "\n".join(f"| [{p}]({url}) | {diff} |" for p, url, diff in matched["leetcode"])
concept_rows = "\n".join(f"- β
{c}" for c in matched["concepts"])
return f"""## π― Tips: {matched['label']}\n\n### π Key Concepts\n{concept_rows}\n\n### π» LeetCode Problems\n| Problem | Difficulty |\n|---------|------------|\n{lc_rows}\n"""
# ββ Feedback formatter (for Gradio textbox display) βββββββββββββββββββββββββββ
def _format_feedback(result: dict) -> str:
"""Convert ScorerAgent result dict into a human-readable string."""
raw = result.get("raw_feedback", "")
if not raw:
return "No feedback generated."
# Append keyword coverage summary
hit = result.get("hit_keywords", [])
missed = result.get("missed_keywords", [])
star_hint = result.get("star_hint", False)
coverage_line = f"\n\nβββββββββββββββββββββββββ"
if hit:
coverage_line += f"\nβ
Found: {', '.join(hit)}"
if missed:
coverage_line += f"\nβ Missing: {', '.join(missed)}"
if star_hint:
coverage_line += "\n\nπ‘ STAR Tip: Try to structure your answer β Situation β Task β Action β Result"
return raw + coverage_line
# ββ PDF Report generation ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def generate_pdf_report(history_state: list) -> str:
"""
Generate a timestamped, styled PDF report from the current session.
Returns the file path string.
"""
ts = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M")
filename = f"Interview_Report_{ts}.pdf"
if not history_state:
doc = SimpleDocTemplate(filename, pagesize=letter)
styles = getSampleStyleSheet()
doc.build([Paragraph("No interview data available.", styles["Heading2"])])
return filename
doc = SimpleDocTemplate(filename, pagesize=letter,
leftMargin=0.75*inch, rightMargin=0.75*inch,
topMargin=0.85*inch, bottomMargin=0.85*inch)
styles = getSampleStyleSheet()
story = []
# ββ Styles ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
title_s = ParagraphStyle("Title", parent=styles["Heading1"], alignment=TA_CENTER,
fontSize=22, spaceAfter=6, textColor=HexColor("#0f172a"),
fontName="Helvetica-Bold")
sub_s = ParagraphStyle("Sub", parent=styles["Normal"], alignment=TA_CENTER,
fontSize=10, spaceAfter=24, textColor=HexColor("#64748b"))
h2_s = ParagraphStyle("H2", parent=styles["Heading2"], fontSize=14,
spaceBefore=18, spaceAfter=8,
textColor=HexColor("#1e293b"), fontName="Helvetica-Bold")
h3_s = ParagraphStyle("H3", parent=styles["Heading3"], fontSize=11,
spaceBefore=12, spaceAfter=4,
textColor=HexColor("#334155"), fontName="Helvetica-Bold")
body_s = ParagraphStyle("Body", parent=styles["BodyText"], fontSize=9.5,
spaceBefore=3, spaceAfter=3, leading=14,
textColor=HexColor("#475569"))
meta_s = ParagraphStyle("Meta", parent=body_s, fontSize=9,
textColor=HexColor("#64748b"))
# ββ Title block βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
story.append(Paragraph("AI Interview Coach", title_s))
story.append(Paragraph("Interview Session Report", sub_s))
story.append(Paragraph('<hr/>', ParagraphStyle("sep")))
story.append(Spacer(1, 0.15*inch))
# ββ Sessions ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
for s_idx, session in enumerate(reversed(history_state)):
n = len(history_state) - s_idx
story.append(Paragraph(f"Session #{n}", h2_s))
# Metadata table
meta_data = [
[Paragraph("<b>Date:</b>", meta_s), Paragraph(session.get("timestamp","N/A"), meta_s)],
[Paragraph("<b>Role:</b>", meta_s), Paragraph(session.get("job_snippet","N/A"), meta_s)],
[Paragraph("<b>Industry:</b>", meta_s), Paragraph(session.get("industry","N/A"), meta_s)],
[Paragraph("<b>Mode:</b>", meta_s), Paragraph(session.get("mode","N/A"), meta_s)],
]
meta_tbl = Table(meta_data, colWidths=[1.2*inch, 5.3*inch])
meta_tbl.setStyle(TableStyle([
("ALIGN", (0,0), (-1,-1), "LEFT"),
("VALIGN", (0,0), (-1,-1), "TOP"),
("LEFTPADDING", (0,0), (-1,-1), 0),
("RIGHTPADDING", (0,0), (-1,-1), 4),
("TOPPADDING", (0,0), (-1,-1), 2),
("BOTTOMPADDING",(0,0), (-1,-1), 2),
]))
story.append(meta_tbl)
# Overall score badge
num_scores = session.get("numeric_scores", [])
if num_scores:
avg = sum(num_scores) / len(num_scores)
color = "#10b981" if avg >= 8 else ("#f59e0b" if avg >= 5 else "#ef4444")
badge_s = ParagraphStyle("Badge", parent=styles["Normal"], alignment=TA_CENTER,
fontSize=12, fontName="Helvetica-Bold",
textColor=HexColor("#ffffff"),
backColor=HexColor(color),
spaceBefore=10, spaceAfter=10,
borderPadding=6)
story.append(Paragraph(f"Overall Score: {avg:.1f}/10", badge_s))
# Q&A breakdown
story.append(Paragraph("Questions & Answers", h2_s))
questions = session.get("questions", [])
answers = session.get("answers", [])
scores = session.get("scores", [])
score_results = session.get("score_results", [])
for i, (q, a, sc) in enumerate(zip(questions, answers, scores), 1):
story.append(Paragraph(f"Q{i}: {q}", h3_s))
a_text = a if a.strip() else "(No answer provided)"
sc_text = sc if sc.strip() else "(No feedback)"
story.append(Paragraph(f"<b>Answer:</b> {a_text}", body_s))
story.append(Paragraph(f"<b>Score:</b> {sc_text}", body_s))
# Keyword coverage row
if i-1 < len(score_results) and score_results[i-1]:
sr = score_results[i-1]
hit = ", ".join(sr.get("hit_keywords", [])) or "None"
miss = ", ".join(sr.get("missed_keywords", [])) or "None"
story.append(Paragraph(
f"<b>Found:</b> {hit} Β· <b>Missing:</b> {miss}",
body_s
))
story.append(Spacer(1, 0.08*inch))
# Summary & recommendations
story.append(Paragraph("Summary & Recommendations", h2_s))
if num_scores:
avg = sum(num_scores) / len(num_scores)
if avg >= 8:
rec = "Excellent performance! Strong technical knowledge and clear structured answers. Maintain this depth and confidence."
elif avg >= 5:
rec = "Good effort. Solid understanding but focus on incorporating more industry keywords and structuring responses with the STAR format."
else:
rec = "Practice needed. Expand your answers, use industry-specific terminology, and structure responses more effectively using STAR."
story.append(Paragraph(rec, body_s))
else:
story.append(Paragraph("Complete more questions to receive coaching recommendations.", body_s))
if s_idx < len(history_state) - 1:
story.append(PageBreak())
doc.build(story)
return filename
|