Spaces:
No application file
No application file
File size: 32,496 Bytes
bddfc04 2ffa2b0 bddfc04 2ffa2b0 bddfc04 2ffa2b0 bddfc04 2ffa2b0 bddfc04 |
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 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 |
import json
import requests
from pymongo import MongoClient
api_key = "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"
uri = "mongodb+srv://Cluster51958:a3JmXk5FfXpJ@cluster51958.mxndeya.mongodb.net/?retryWrites=true&w=majority&appName=Cluster51958"
client = MongoClient(uri)
db = client["resume_user"]
students_collection = db["user"]
def render_section_from_json(section_name, json_obj):
"""
Pretty renders resume sections from JSON format to mimic a clean resume layout.
"""
def render_personal_info(data):
lines = []
# Name (always shown)
name = data.get("name", "")
if name:
lines.append(name)
# Contact line (email, phone, address)
contact = " | ".join(
filter(None, [
data.get("email", ""),
data.get("phone", ""),
data.get("address", "")
])
)
if contact:
lines.append(contact)
# Links (LinkedIn + Website)
links = " | ".join(
filter(None, [
data.get("linkedin", ""),
data.get("personal_website", "")
])
)
if links:
lines.append(links)
# Objective statement
if data.get("objective"):
lines.append("")
lines.append(f"Objective: {data['objective']}")
return "\n".join(lines)
def render_education(data):
lines = ["EDUCATION"]
if type(data) is list:
for edu in data:
institution = edu.get("institution", "")
degree = edu.get("degree", "")
major = edu.get("major", "")
gpa = edu.get("gpa", "")
start = edu.get("start_date", "")
end = edu.get("end_date", "")
honors = edu.get("honors", "")
coursework = edu.get("relevant_coursework", "")
# Header: Institution | Dates
date_range = f"{start} β {end}" if start or end else ""
lines.append(f"{institution} | {date_range}")
# Degree + Major
deg_line = f" * {degree} in {major}"
if gpa:
deg_line += f", GPA: {gpa}"
lines.append(deg_line)
# Honors
if honors:
lines.append(f" β’ Honors: {honors}")
# Relevant Coursework
if coursework:
lines.append(f" β’ Coursework: {coursework}")
lines.append("") # Extra spacing between entries
return "\n".join(lines)
else:
institution = data.get("institution", "")
degree = data.get("degree", "")
major = data.get("major", "")
gpa = data.get("gpa", "")
start = data.get("start_date", "")
end = data.get("end_date", "")
honors = data.get("honors", "")
coursework = data.get("relevant_coursework", "")
# Header: Institution | Dates
date_range = f"{start} β {end}" if start or end else ""
lines.append(f"{institution} | {date_range}")
# Degree + Major
deg_line = f" * {degree} in {major}"
if gpa:
deg_line += f", GPA: {gpa}"
lines.append(deg_line)
# Honors
if honors:
lines.append(f" β’ Honors: {honors}")
# Relevant Coursework
if coursework:
lines.append(f" β’ Coursework: {coursework}")
lines.append("") # Extra spacing between entries
return "\n".join(lines)
def render_experience(data):
lines = ["EXPERIENCE"]
if type(data) is list:
for job in data:
company = job.get("company", "")
title = job.get("job_title", "")
location = job.get("location", "")
start = job.get("start_date", "")
end = job.get("end_date", "")
responsibilities = job.get("responsibilities", [])
# First line: Company | Dates | Location
line = f"{company}"
if start or end:
line += f" | {start} β {end}"
if location:
line += f" | {location}"
lines.append(line)
# Job title
if title:
lines.append(f" * {title}")
# Responsibilities
for item in responsibilities:
lines.append(f" β’ {item}")
lines.append("") # Spacing between entries
return "\n".join(lines)
else:
company = data.get("company", "")
title = data.get("job_title", "")
location = data.get("location", "")
start = data.get("start_date", "")
end = data.get("end_date", "")
responsibilities = data.get("responsibilities", [])
# First line: Company | Dates | Location
line = f"{company}"
if start or end:
line += f" | {start} β {end}"
if location:
line += f" | {location}"
lines.append(line)
# Job title
if title:
lines.append(f" * {title}")
# Responsibilities
for item in responsibilities:
lines.append(f" β’ {item}")
lines.append("") # Spacing between entries
return "\n".join(lines)
def render_publication(data):
lines = ["PUBLICATIONS"]
# Ensure data is a list for unified handling
if isinstance(data, dict):
data = [data]
for pub in data:
title = pub.get("title", "")
authors = pub.get("authors", "")
venue = pub.get("venue", "")
year = pub.get("year", "")
doi = pub.get("doi", "")
summary = pub.get("summary", "")
# Display fields if they exist
if title:
lines.append(f" - Title: {title}")
if authors:
lines.append(f" - Authors: {authors}")
if venue:
lines.append(f" - Venue: {venue}")
if year:
lines.append(f" - Year: {year}")
if doi:
lines.append(f" - DOI: {doi}" if doi.strip() else " - DOI: N/A")
if summary:
lines.append(f" - Summary: {summary}")
lines.append("") # Space between publications
return "\n".join(lines)
def render_projects(data):
lines = ["PROJECTS"]
if isinstance(data, dict):
data = [data]
for proj in data:
name = proj.get("project_name", "")
start = proj.get("start_date", "")
end = proj.get("end_date", "")
description = proj.get("description", [])
# Header line: Project name | Duration
header = f"{name}"
if start or end:
header += f" | {start} β {end}"
lines.append(header)
# Description bullets
for bullet in description:
lines.append(f" β’ {bullet}")
lines.append("") # Space between projects
return "\n".join(lines)
def render_skills(data):
lines = ["SKILLS"]
for category, value in data.items():
if value and isinstance(value, str) and value.strip():
# Format the category name into Title Case with spaces
formatted_category = category.replace('_', ' ').title()
lines.append(f"{formatted_category}: {value}")
return "\n".join(lines)
section_formatters = {
"personal_info": render_personal_info,
"education": render_education,
"professional_experience": render_experience,
"publication": render_publication,
"project": render_projects,
"skills": render_skills
}
formatter = section_formatters.get(section_name, lambda x: str(x))
return formatter(json_obj)
def save_section_to_db(user_id, section_name, content_lines):
student_id = user_id
existing = students_collection.find_one({"_id": student_id})
if existing:
# Student exists: update the specific section
result = students_collection.update_one(
{"_id": student_id},
{"$set": {section_name: content_lines}}
)
print("π€ Assistant", f"Student {user_id} updated: section '{section_name}' saved.")
else:
# Student doesn't exist: create new document with _id and section
new_doc = {
"_id": student_id,
section_name: content_lines
}
students_collection.insert_one(new_doc)
print("π€ Assistant", f"New student {user_id} added with section '{section_name}'.")
def load_full_json_from_db(user_id):
"""
Load the entire resume doc for a user from the mock DB.
"""
return students_collection.find_one({"_id": user_id})
"""## Main Functionality Implementation"""
def call_openai(prompt: str, api_key: str) -> str:
"""
Sends a prompt to the Open AI chat completion API to generate structured JSON
and improvement suggestions for resume content.
Parameters:
- prompt (str): The formatted user/system prompt to send to Open AI.
- api_key (str): The user's Open AI API key used for authentication.
Returns:
- str: The response from the Open AI model as a string.
If successful, returns only the message content.
If there's an error, returns a formatted error message.
"""
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
payload = {
"model": "gpt-4o-mini",
"messages": [
{
"role": "system",
"content": (
"You are an AI career coach and educator working with college students, especially those new to the U.S. job market.\n\n"
"Your mission is to help users:\n"
"- Write or improve resumes with structured JSON data\n"
"- Generate realistic interview questions and coach responses\n"
"- Provide actionable suggestions to clarify, deepen, and reflect on their experience\n\n"
"Instructions:\n"
"- For resume structuring, return ONLY structured JSON between <<<JSON>>> and <<<END>>>.\n"
"- Provide improvement suggestions between <<<SUGGEST>>> and <<<END>>>.\n"
"- For interview coaching, you may return questions or feedback directly.\n"
"- DO NOT invent facts. Leave unknown fields empty.\n"
"- NEVER use placeholder text (e.g., [X], TBD).\n"
"- Do not include any additional commentary outside the defined blocks.\n"
"- Be supportive, but professional β like a mentor helping students grow."
)
},
{
"role": "user",
"content": prompt
}
]
}
response = requests.post("https://api.openai.com/v1/chat/completions", headers=headers, json=payload)
if response.status_code == 200:
return response.json()["choices"][0]["message"]["content"].strip()
else:
return f"Error {response.status_code}: {response.text}"
def extract_json_and_suggestions(output: str):
json_block, suggestion_block = "", ""
inside_json, inside_suggest = False, False
lines = output.strip().splitlines()
for line in lines:
if "<<<JSON>>>" in line:
inside_json = True
continue
if "<<<SUGGEST>>>" in line:
inside_suggest = True
inside_json = False
continue
if "<<<END>>>" in line:
inside_json = False
inside_suggest = False
continue
if inside_json:
json_block += line + "\n"
elif inside_suggest:
suggestion_block += line + "\n"
try:
return json.loads(json_block), suggestion_block.strip()
except json.JSONDecodeError:
print("β οΈ Failed to parse JSON from AI response")
print(json_block)
return {}, suggestion_block.strip()
def refine_section_to_json(
raw_input: str,
section_name: str,
api_key: str,
section_prompt: str = "",
previous_json: dict = None
) -> tuple:
"""
Converts a user's freeform input for a resume section into structured JSON and suggestions.
Now supports incremental refinement by passing in previous_json as context.
"""
# Construct the base system instructions
prompt = f"""
You are a resume editing assistant.
The user is working on the **{section_name.replace('_', ' ').title()}** section of their resume.
Your job is to:
1. Preserve existing content from the previous JSON, unless the user clearly wants it removed or overwritten.
2. Add or revise information based on the user's new input.
3. Maintain a consistent structure and field names across updates.
4. Output clean, valid JSON ready for database storage.
5. Do NOT imagine or add information that the user did not explicitly provide.
6. Approach the task as a supportive career advisor β donβt just complete the section, but guide the student to improve it through thoughtful suggestions, clarifying questions, and positive reinforcement. Help them feel confident and in control of their resume.
7. When the user updates an existing entry (such as a project, publication, internship, or education record), identify the correct item by matching key fields (like title, project name, company, or institution). Once matched, replace the old version with the updated one. Do not keep both versions β only return the final, updated version in your output.
{section_prompt.strip() if section_prompt else ''}
"""
# Add previous state if exists
if previous_json:
prev_json_str = json.dumps(previous_json, indent=2)
if section_name in ["education", "professional_experience", "project", "publication"]:
prompt += f"""
The section '{section_name}' is a list of items (e.g., multiple jobs or projects).
When given new input, you should:
- Preserve existing items from the previous JSON.
- Append new entries to the list if user describes new jobs/projects/etc.
- Do NOT replace or delete previous items unless user clearly requests it.
Current JSON for this section:
{prev_json_str}
"""
else:
# For dict-based sections like personal_info
prompt += f"\nCurrent JSON for this section:\n{prev_json_str}"
# Add user update
prompt += f"\n\nUser Update:\n{raw_input.strip()}\n"
# Final instruction
prompt += """
Return exactly TWO blocks:
<<<JSON>>>
{ ... updated structured JSON ... }
<<<END>>>
<<<SUGGEST>>>
... suggestions to improve the section ...
<<<END>>>
"""
output = call_openai(prompt, api_key)
return extract_json_and_suggestions(output)
def run_section(section_name, section_prompt, api_key, user_id="test_user"):
"""
Handles input, refinement, and saving for a single resume section.
Supports iterative edits based on AI suggestions and saves cleaned JSON to database.
"""
print(f"\n=== {section_name.replace('_', ' ').title()} ===")
input_history = []
# Load existing section (for patching purposes)
previous_json = load_full_json_from_db(user_id).get(section_name, {})
if previous_json:
print("\nπ Existing Content:")
print(render_section_from_json(section_name, previous_json))
# Initial user input
initial_input = input(f"Describe your {section_name.replace('_', ' ')} (type 'done' anytime to save and exit this section):\n").strip()
if initial_input.lower() == "done":
print(f"βͺοΈ Skipping {section_name.replace('_', ' ').title()} section.")
return
input_history.append(initial_input)
while True:
full_input = "\n\n---\n\n".join(input_history)
# Pass previous_json for incremental refinement
json_obj, suggestions = refine_section_to_json(
full_input, section_name, api_key, section_prompt, previous_json
)
if json_obj:
print("\nβ
AI-parsed content:")
if json_obj.get(section_name):
print(render_section_from_json(section_name, json_obj.get(section_name)))
else:
print(render_section_from_json(section_name, json_obj))
if suggestions:
print("\nπ‘ Suggestions to improve:")
print(suggestions)
follow_up = input("\nWould you like to add more or revise? (type 'done' to finish this section): ").strip().lower()
if follow_up == "done":
# FIX: Unwrap nested section name like {"education": {"education": [...]}}
if isinstance(json_obj, dict) and section_name in json_obj:
inner = json_obj[section_name]
if isinstance(inner, (dict, list)):
json_obj = inner
save_section_to_db(user_id, section_name, json_obj)
print("\nβ
Section saved!")
break
else:
input_history.append(follow_up)
previous_json = json_obj # Update previous_json for next loop
def login_user() -> str:
"""
Handles user login by user_id. If the user exists in the database, load their data;
otherwise, initialize a new profile.
Returns:
- str or None: The user_id if login successful, or None if user exited.
"""
while True:
user_id = input("Enter your user ID (or type 'exit' to quit): ").strip()
if user_id.lower() == "exit":
print("π Goodbye!")
return None
check = students_collection.find_one({"_id": user_id})
if check:
print(f"\nπ Welcome back, {user_id}!")
existing_sections = list(check.keys())
if existing_sections:
print("β
Existing resume sections:", ", ".join(existing_sections))
else:
print("ποΈ You haven't started your resume yet.")
else:
print(f"\nπ Creating new profile for {user_id}.")
students_collection.insert_one({"_id": user_id})
return user_id
def run_resume_builder(section_order, section_prompts, api_key, user_id="test_user"):
print("Welcome! Iβm your AI resume assistant. Letβs build your resume section by section!\n")
while True:
check = students_collection.find_one({"_id": user_id}) # β
move inside the loop
print("\nπ Resume Sections Available:")
for idx, section in enumerate(section_order, 1):
status = "β
" if section in check else "β"
print(f"{idx}. {section.replace('_', ' ').title()} {status}")
print(f"{len(section_order)+1}. π€ Mock Interview Mode")
print(f"{len(section_order)+2}. π View Full Resume")
print(f"{len(section_order)+3}. β Exit")
choice = input("\nType the number of the section you want to work on (or view/exit): ").strip()
try:
choice_idx = int(choice)
if 1 <= choice_idx <= len(section_order):
section = section_order[choice_idx - 1]
run_section(section, section_prompts.get(section, "{{input}}"), api_key, user_id)
elif choice_idx == len(section_order) + 1:
run_interview_mode(user_id, api_key)
elif choice_idx == len(section_order) + 2:
print("\nπ Generating Full Resume...\n")
resume_doc = load_full_json_from_db(user_id)
print(generate_full_resume(resume_doc))
elif choice_idx == len(section_order) + 3:
print("\nπ Exiting resume builder. See you next time!\n")
break
else:
print("Invalid number. Please choose a valid section or command.")
except ValueError:
print("Please enter a number.")
def generate_full_resume(resume_data: dict) -> str:
lines = ["=================\nπ FINAL RESUME\n=================\n"]
for section, content in resume_data.items():
lines.append(f"\n--- {section.replace('_', ' ').title()} ---")
lines.append(render_section_from_json(section, content))
return "\n\n".join(lines)
def run_interview_mode(user_id, api_key):
"""
Mock interview assistant using the user's resume + target job.
"""
print("\nπ§ Welcome to the AI Mock Interview Coach!")
# Step 1: Ask for job title and JD
job_title = input("Enter the job title you're applying for (e.g., 'Data Analyst') (or type 'exit' to leave interview mode):\n").strip()
if job_title.lower() == "exit":
print("π Exiting mock interview.")
return
job_description = input("\nPaste the job description (JD). Press Enter on an empty line when you're done (or type 'exit' to leave interview mode):\n").strip()
if job_description.lower() == "exit":
print("π Exiting mock interview.")
return
# Step 2: Construct prompt
resume_json = load_full_json_from_db(user_id)
prompt = f"""
You are an AI mock interview coach.
The user is applying for the following role:
**Job Title**: {job_title}
**Job Description**:
{job_description}
Below is the user's resume in structured JSON format:
{json.dumps(resume_json, indent=2)}
Please generate 5β7 realistic interview questions tailored to this role and resume.
Include a mix of technical and behavioral questions.
Return in this format:
<<<QUESTIONS>>>
- Question 1
- Question 2
- ...
<<<END>>>
"""
response = call_openai(prompt, api_key)
# Step 3: Extract questions
questions = []
inside = False
for line in response.strip().splitlines():
if "<<<QUESTIONS>>>" in line:
inside = True
continue
if "<<<END>>>" in line:
break
if inside and line.startswith("- "):
questions.append(line[2:].strip())
if not questions:
print("\nβ οΈ Failed to extract interview questions. Here's the raw output:")
print(response)
return
# Step 4: Interactive Q&A
while True:
print("\nπ Here are your personalized interview questions:")
for i, q in enumerate(questions, 1):
print(f"{i}. {q}")
choice = input("\nChoose a question number to practice (or type 'new' for more, 'exit' to return): ").strip().lower()
if choice == "exit":
print("π Exiting mock interview.")
break
elif choice == "new":
return run_interview_mode(user_id, api_key)
elif choice.isdigit() and 1 <= int(choice) <= len(questions):
idx = int(choice) - 1
print(f"\n㪠Question: {questions[idx]}")
user_answer = input("Your Answer (or type 'exit' to return):\n").strip()
if user_answer.lower() == "exit":
print("π Exiting mock interview.")
break
# Ask AI to review the answer
review_prompt = f"""
You are a helpful AI career coach.
Here is a candidate's answer to the following interview question:
**Q**: {questions[idx]}
**A**: {user_answer}
Please provide constructive feedback, improvements, or an example answer.
Return your feedback directly. Do not include formatting instructions.
"""
feedback = call_openai(review_prompt, api_key)
print("\nπ§ AI Feedback:\n")
print(feedback)
else:
print("β Invalid input. Try again.")
def start_resume_session(section_order, section_prompts, api_key):
user_id = login_user()
if user_id is None:
return # User chose to exit
print("\nπ οΈ Entering resume builder...\n")
run_resume_builder(section_order, section_prompts, api_key, user_id)
"""## Prompt"""
# The order in which main resume sections will be prompted
section_order = [
"personal_info",
"education",
"professional_experience",
"publication",
"project",
"skills"
]
# Prompt templates for each main section (Improved with Strict Rules and User Guidance)
section_prompts = {
"personal_info": (
"You are an AI assistant helping an undergraduate user write their personal information for a resume.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Education, Internships, Projects, Skills, Certifications, or Publications.\n"
"- Use ONLY the following fields:\n"
" - name\n"
" - email\n"
" - phone\n"
" - address\n"
" - linkedin\n"
" - objective\n"
" - personal_website\n"
"- Do not modify previous data unless instructed. Leave missing fields empty.\n"
"For the 'name' field, validate that the input is a full name with at least two words, each starting with a capital letter and separated by a space.\n"
"If the input does not follow this format (e.g., a single word or all lowercase), leave the field blank and ask the user to confirm or correct it.\n"
"Only accept such input if the user explicitly confirms it is their intended full name.\n"
"Ensure names are capitalized properly (e.g., John Doe).\n"
"If the user provides a university name like 'Upenn', automatically correct it to 'University of Pennsylvania'.\n"
"If the input is meaningless or a typo (e.g., 'aaa', 'xjssjs'), return a message asking the user to provide valid input.\n"
"Provide suggestions if applicable, such as using a professional LinkedIn URL.\n"
"Return only valid JSON data.\n"
"Input: {{input}}"
),
"education": (
"You are an AI assistant helping an undergraduate user write their education history for a resume.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Internships, Projects, Skills, Certifications, or Publications.\n"
"- Use ONLY these fields:\n"
" - institution\n"
" - degree\n"
" - major\n"
" - gpa\n"
" - start_date (Format: 'May 2023') \n"
" - end_date (Format: 'June 2024' or 'Present') \n"
" - honors\n"
" - relevant_coursework\n"
"- Do not modify previous data unless instructed. Leave missing fields empty.\n"
"Ensure institution names are fully written (e.g., 'Upenn' -> 'University of Pennsylvania').\n"
"Your output must be in structured JSON format, following the fields mentioned above.\n"
"Provide suggestions to enhance clarity and impact, such as adding high-level courses related to the target job.\n"
"If the user provides incomplete information, prompt them to add more details.\n"
"If the user provides invalid input (e.g., 'aaa'), ask them to provide valid information.\n"
"Return only valid JSON data.\n"
"Input: {{input}}"
),
"professional_experience": (
"You are an AI assistant helping an undergraduate user describe their internship or job experience.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Publications, Projects, Skills, Certifications, or Hobbies.\n"
"Ensure company names are properly capitalized (e.g., Google, Microsoft).\n"
"Your output must be in structured JSON format.\n"
"- Use ONLY the following fields:\n"
" - company\n"
" - job_title\n"
" - location\n"
" - start_date (Format: 'May 2023') \n"
" - end_date (Format: 'June 2024' or 'Present') \n"
" - responsibilities (as list of bullet points)\n"
"Do not modify previous data unless instructed. Leave missing fields empty.\n"
"If the user provides invalid input (e.g., 'bbb'), ask them to provide valid information.\n"
"Provide suggestions to enhance clarity and impact, such as quantifying results when possible.\n"
"Return only valid JSON data.\n"
"Input: {{input}}"
),
"publication": (
"You are an AI assistant helping an undergraduate user summarize their publication for a resume.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Internships, Projects, Skills, Certifications, or Hobbies.\n"
"Your output must be in structured JSON format.\n"
"- Use ONLY the following fields:\n"
" - title\n"
" - authors\n"
" - venue\n"
" - year\n"
" - doi (Digital Object Identifier)\n"
" - summary (A brief description of the work)\n"
"- Do not modify previous data unless instructed. Leave missing fields empty.\n"
"- DO NOT invent new content or structure.\n"
"- If the user provides invalid input (e.g., 'ccc'), ask them to provide valid information.\n"
"Provide suggestions if applicable, such as using citation formats or mentioning co-authors.\n"
"Return only valid JSON data.\n"
"Input: {{input}}"
),
"project": (
"You are an AI assistant helping an undergraduate user describe their project for a resume.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Internships, Publications, Skills, Certifications, or Hobbies.\n"
"Your output must be in structured JSON format.\n"
"- Use ONLY the following fields:\n"
" - project_name\n"
" - start_date (Format: 'May 2023') \n"
" - end_date (Format: 'June 2024' or 'Present') \n"
" - description (2β4 bullet points describing the project, tasks performed, and impact, using strong active verbs)\n"
"- Do not modify previous data unless instructed. Leave missing fields empty.\n"
"- Do not add or change field names. Do not include placeholders.\n"
"- If the user provides invalid input (e.g., 'ddd'), ask them to provide valid information.\n"
"Provide suggestions if applicable, such as using active verbs and quantifying achievements.\n"
"Return only valid JSON data.\n"
"Input: {{input}}"
),
"skills": (
"You are an AI assistant helping an undergraduate user organize their skills list for a resume.\n"
"Your tone should be friendly, encouraging, and professional β like a helpful career coach.\n"
"IMPORTANT: Do NOT ask about Internships, Publications, Certifications, or Hobbies.\n"
"Identify skill categories and group them into structured JSON.\n"
"Common categories include: Languages (such as Spanish, Chinese, etc.), Programming Languages, Tools, Frameworks, Soft Skills (Leadership, Communication, Problem-Solving, etc.), Certifications, etc.\n\n"
"Output Rules:\n"
"- Automatically categorize the provided skills into appropriate categories.\n"
"- Only include categories with non-empty content. Show at most **two to three categories**.\n"
"- Format each category's content as a single line, separated by commas.\n"
"- Structure JSON as:\n"
"{\n"
" \"programming_languages\": \"Python, Java, SQL\",\n"
" \"tools\": \"Tableau, Git, Excel\",\n"
" \"soft_skills\": \"Leadership, Communication, Problem-Solving\"\n"
"}\n"
"- Include only mentioned skills. Do not hallucinate. Leave unspecified categories empty.\n"
"- Return only valid JSON data.\n"
"Input: {{input}}"
)
}
# Run this to play with the application
start_resume_session(section_order, section_prompts, api_key) |