logo of Graduate Resume on the GPT Store

Graduate Resume on the GPT Store

Use Graduate Resume on ChatGPT

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."
          }
        }
      }
    }
  }
}

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