Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 744 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 744 Bytes

SkillScout

Resume chatbot for internal purposes

Usage

  1. Install dependencies

    conda create --name skilscout-env python=3.11
    conda activate skilscout-env
    pip install -r requirements.txt
  2. Source OpenAI API keys

    export OPENAI_API_KEY=<api_key>
  3. Create a summary of all the resumes in the folder

    Store all the resume PDFs in the data folder and run the following command

    python app.py summarize --resume_path data
  4. Create a vector store of all summaries

    python app.py vector_store --resume_summary_path data
  5. Run the app with the vector store

    python app.py app

Demo