logo of Graduate Resume on the GPT Store

Graduate Resume on the GPT Store

Use Graduate Resume on ChatGPT Use Graduate Resume on 302.AI

GPT Description

Create you an ATS-friendly recent college/graduate resume, designed to land your first job.

GPT Action OpenAPI Spec

{
  "openapi": "3.0.1",
  "info": {
    "title": "GraduateResume",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://api.gptcloud.dev/run/654d23dc80b7a5ccae50e700/65786cb0956caf0360799198"
    }
  ],
  "paths": {
    "/resume/createResumeLink": {
      "get": {
        "operationId": "createResumeLink",
        "summary": "Generates a unique link that users use to upload their resume or CV.",
        "responses": {
          "200": {
            "description": "The resume upload link.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/resumeUploadResponse"
                }
              }
            }
          }
        }
      }
    },
    "/resume/getUploadedResumeAsText": {
      "get": {
        "operationId": "getUploadedResume",
        "summary": "Returns the resume uploaded by the user",
        "responses": {
          "200": {
            "description": "The uploaded resume.",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/resume/personalInfo": {
      "post": {
        "operationId": "SavePersonalInfo",
        "summary": "Save personal information of the resume. When populating the information here, make sure to include full name of the user. Include here also resume summary/objective.",
        "requestBody": {
          "description": "Resume content for personal information.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    },
    "/resume/skills": {
      "post": {
        "operationId": "SaveSkillsInfo",
        "summary": "Save skills of the resume.",
        "requestBody": {
          "description": "Resume content for skills.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    },
    "/resume/education": {
      "post": {
        "operationId": "SaveEducationInfo",
        "summary": "Save education details of the resume. Mention here also courses information.",
        "requestBody": {
          "description": "Resume content for education.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    },
    "/resume/workExperience": {
      "post": {
        "operationId": "SaveWorkExperienceInfo",
        "summary": "Save work experience of the resume.",
        "requestBody": {
          "description": "Resume content for work experience.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    },
    "/resume/personalProjects": {
      "post": {
        "operationId": "SaveProjectsInfo",
        "summary": "Save personal projects of the resume.",
        "requestBody": {
          "description": "Resume content for personal projects.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    },
    "/resume/additionalInformation": {
      "post": {
        "operationId": "SaveOtherInfo",
        "summary": "Save other information of the resume.",
        "requestBody": {
          "description": "Resume content for other information.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/resumeUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successfully saved personal information.",
            "schema": {
              "$ref": "#/components/schemas/uploadResponse"
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "resumeUploadResponse": {
        "type": "object",
        "properties": {
          "responseInstructions": {
            "type": "string",
            "description": "Encourage the user to use this link to upload the current version of the resume or CV. Ask user to let you know when it's done and resume is uplaoded.'"
          },
          "resumeUploadLink": {
            "type": "string",
            "description": "The resume upload link"
          }
        }
      },
      "resumeUpdateRequest": {
        "type": "object",
        "required": [
          "conversationLanguage",
          "lastChunk",
          "currentChunk",
          "totalChunks",
          "resumeContentAsText"
        ],
        "properties": {
          "conversationLanguage": {
            "type": "string",
            "description": "You must always populate this field. The language of the conversation. Represent as country code: en, de, etc."
          },
          "lastChunk": {
            "type": "boolean",
            "description": "Indicates whether this is the last chunk or not"
          },
          "totalChunks": {
            "type": "number",
            "description": "The total number of chunks needed to upload the entire resume"
          },
          "currentChunk": {
            "type": "number",
            "description": "The current chunk number"
          },
          "fileName": {
            "type": "string",
            "description": "A URL encoded lowercased file name without an extension. The user name is extracted from the original resume."
          },
          "resumeContentAsText": {
            "type": "string",
            "description": "The content of the resume in text format"
          }
        }
      },
      "resumeContent": {
        "type": "object",
        "properties": {
          "responseInstructions": {
            "type": "string",
            "description": "The model must use this resume content when analyzing and modifying the user's resume."
          },
          "resumeContentAsText": {
            "type": "string",
            "description": "The content of the resume in text format"
          }
        }
      },
      "uploadResponse": {
        "type": "object",
        "properties": {
          "responseInstructions": {
            "type": "string",
            "description": "Display this link to the user and ask them to use it to download the modified resume."
          },
          "fileURL": {
            "type": "string",
            "description": "The URL to the newly modified or created resume file. Call this API when the resume is ready to be downloaded by the user."
          }
        }
      }
    }
  }
}
Use Graduate Resume on 302.AI

Graduate Resume GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "Graduate Resume", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

More custom GPTs by copilot.us on the GPT Store

Batch Process

Upload & process files in batches. Supports CSV, TSV, Excel, Google Sheets. Ideal for data analysis & insight.

400+

Batch Process on the GPT Store

Aaron Code Review

Review GitHub code, summarize it & suggest improvements. Submit Git commit details or URL/link for insights.

Aaron Code Review on the GPT Store

Export Chat to PDF

Export your chat conversation to a PDF file, ready for download and share.

Export Chat to PDF on the GPT Store

Federal Resume

Write an ATS-optimized professional federal usajobs resume, for your targeted government job role.

Federal Resume on the GPT Store

Job Description

Write you an effective job description that attracts top-quality talent for your next interview.

Job Description on the GPT Store

Job Interview

Prepare you for a job interview by asking questions and providing feedback.

Job Interview on the GPT Store

JoPilot

Advanced AI job search assistant that daily processes 1.5 million job postings from various career websites and job boards across the US, providing customizable job search filters for keywords, locations, employers, salaries, and commute time.

JoPilot on the GPT Store

Medical Resume

Create an ATS-optimized job winning professional medical assistant resume for your targeted healthcare position.

Medical Resume on the GPT Store

Recruiter. Interview

Help recruiters, employers, and business owners prepare for job interviews to enhance the hiring process.

Recruiter. Interview on the GPT Store

Job Offers Copilot

Create good-looking PDF job offers for business owners, HR and recruiters to enhance the hiring process.

Job Offers Copilot on the GPT Store

Video Summary

Create YouTube video summaries from transcripts and provide concise content overview with timestamps.

Video Summary on the GPT Store

Aaron Copywriter

Rewrite articles per your instructions. Send me web pages, PDFs, Word docs, Wikipedia, reviews, anything!

Aaron Copywriter on the GPT Store

Aaron Translator

Translate URLs or documents in any language. Support files and links.

Aaron Translator on the GPT Store

Chat With Maps

Explore, navigate & discover Google Maps! Find nearby places, reviews, geocode addresses & more.

Chat With Maps on the GPT Store

Business Contracts

Create professional, good-looking, and compliant business contracts. Download as PDF or Word.

Business Contracts on the GPT Store

Job Search in the US

Optimize your US job hunt. Search & explore by keywords, location, employer, salary and commute.

Job Search in the US on the GPT Store

Best Alternative GPTs to Graduate Resume on GPTs Store

Interview & Resume/CV - Job & Career Coach 🔥

Help with job, grad school, PhD interviews, and IT interviews (code, software, hardware, etc.). Improve your resume/CV. (10+ years' experience at top companies and universities)

1M+

Graduate Level Physics GPT

Expert in advanced physics, insightful and precise

25K+

Advanced Computer Networking Tutor

Graduate-level tutor in Advanced Computer Networking with research capabilities.

25K+

Advanced Physical Chemistry Tutor

Tutor for graduate-level physical chemistry.

10K+

PhD Application Guide

Guides on emails, resumes, and PhD selection excluding the US.

70+

Resume Advisor for Accountants

Assists accounting students/graduates in building effective resumes.

40+

AI Career Mentor

A mentor offering career planning advice for professionals and graduates.

40+

Code Interview GPT

Coding interview guide for tech graduates, offering practical tips, cheatsheets, and resume advice.

40+

Synthetic Resume & CV Builder

This Custom GPT builds out synthetic resumes and CVs to give examples to university and college undergraduate and graduate students what resumes or CVs might look like in their field

20+

Resume RX

Resume and LinkedIn optimizer for new medical graduates, supportive and detailed.

20+

Resume for graduates and students

Create you an ATS-friendly recent college/graduate resume, designed to land your first job.

10+

Graduate CV GPT

AI-powered tool crafting tailored CVs for graduates targeting jobs across industries, including government and overseas, with industry-specific guidance.

10+

大学生就业导航GPT

Guiding graduates in career and job search

10+

Career Navigator

A supportive career coach for fresh graduates navigating job searches.

10+

PathGPT

I'm a career coach for student and recent graduate developers looking for work.

5+

Resume 101

A resume builder for fresh graduates.

4+

Resume Coach

Professional yet friendly resume guidance for new graduates.

2+

SIMBD

Creative expert in CV design for graduates

1+

Resume and CV EXPERT GPT

ResumeGPT - AI resume builder for graduates seeking professional positions and jobs

1+

Career Launchpad

I create tailored resumes for new grads.