ResumeGPT is an AI chatbot powered by OpenAI's chat completion API. Developed using Next.js and hosted on Vercel, this site enables you to inquire about my resume or ask questions specifically about the chatbot itself.
By default, the chatbot loads resume context from data/resume.md.
You can override that source without changing code:
RESUME_CONTEXT_FILE=path/to/resume.mdRESUME_CONTEXT_URL=https://example.com/resume.md
Directly scraping a public LinkedIn profile is not reliable because LinkedIn serves an auth wall to unauthenticated requests. A practical setup is to point RESUME_CONTEXT_FILE or RESUME_CONTEXT_URL at a LinkedIn export or another maintained resume source.
# Install dependencies
yarn install
# Create a .env.local with your OpenAI API Key
echo OPENAI_API_KEY="sk-###" > .env.local
# Run
yarn dev