├── .gitignore ├── LICENSE ├── README.md ├── conversational-dialog ├── audioToText.py ├── ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt ├── history.json ├── history1.json ├── interviewer.py ├── meta-sweml-response-guidelines.txt ├── response.txt ├── summary.py ├── test-files │ └── testing-initial-tts.py └── test-persona-prompt.txt ├── persona-generation ├── interview-questions │ ├── product-manager-watershed_interview_questions.csv │ └── resume_interview_questions.csv ├── job-descriptions │ ├── product-manager-watershed.pdf │ ├── text-files-processed │ │ └── product-manager-watershed.txt │ └── text-files │ │ └── product-manager-watershed.txt ├── personas │ ├── base_personas.txt │ ├── individuals │ │ ├── emma-the-enthusiastic-networker.txt │ │ ├── ethan-the-strategic-planner.txt │ │ ├── liam-the-methodical-analyst.txt │ │ ├── noah-the-data-driven-decider.txt │ │ ├── olivia-the-empathetic-listener.txt │ │ └── sophia-the-creative-storyteller.txt │ └── jobs │ │ └── product-manager-watershed │ │ ├── ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt │ │ ├── ethan-the-strategic-planner-product-manager-watershed.txt │ │ ├── noah-the-data-driven-decider-product-manager-watershed-response-guidelines.txt │ │ ├── noah-the-data-driven-decider-product-manager-watershed.txt │ │ ├── sophia-the-creative-storyteller-product-manager-watershed-response-guidelines.txt │ │ └── sophia-the-creative-storyteller-product-manager-watershed.txt ├── resumes │ ├── resume.pdf │ └── text-files │ │ └── resume.txt └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/README.md -------------------------------------------------------------------------------- /conversational-dialog/audioToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/audioToText.py -------------------------------------------------------------------------------- /conversational-dialog/ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt -------------------------------------------------------------------------------- /conversational-dialog/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/history.json -------------------------------------------------------------------------------- /conversational-dialog/history1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/history1.json -------------------------------------------------------------------------------- /conversational-dialog/interviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/interviewer.py -------------------------------------------------------------------------------- /conversational-dialog/meta-sweml-response-guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/meta-sweml-response-guidelines.txt -------------------------------------------------------------------------------- /conversational-dialog/response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/response.txt -------------------------------------------------------------------------------- /conversational-dialog/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/summary.py -------------------------------------------------------------------------------- /conversational-dialog/test-files/testing-initial-tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/test-files/testing-initial-tts.py -------------------------------------------------------------------------------- /conversational-dialog/test-persona-prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/conversational-dialog/test-persona-prompt.txt -------------------------------------------------------------------------------- /persona-generation/interview-questions/product-manager-watershed_interview_questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/interview-questions/product-manager-watershed_interview_questions.csv -------------------------------------------------------------------------------- /persona-generation/interview-questions/resume_interview_questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/interview-questions/resume_interview_questions.csv -------------------------------------------------------------------------------- /persona-generation/job-descriptions/product-manager-watershed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/job-descriptions/product-manager-watershed.pdf -------------------------------------------------------------------------------- /persona-generation/job-descriptions/text-files-processed/product-manager-watershed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/job-descriptions/text-files-processed/product-manager-watershed.txt -------------------------------------------------------------------------------- /persona-generation/job-descriptions/text-files/product-manager-watershed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/job-descriptions/text-files/product-manager-watershed.txt -------------------------------------------------------------------------------- /persona-generation/personas/base_personas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/base_personas.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/emma-the-enthusiastic-networker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/emma-the-enthusiastic-networker.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/ethan-the-strategic-planner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/ethan-the-strategic-planner.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/liam-the-methodical-analyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/liam-the-methodical-analyst.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/noah-the-data-driven-decider.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/noah-the-data-driven-decider.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/olivia-the-empathetic-listener.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/olivia-the-empathetic-listener.txt -------------------------------------------------------------------------------- /persona-generation/personas/individuals/sophia-the-creative-storyteller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/individuals/sophia-the-creative-storyteller.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/ethan-the-strategic-planner-product-manager-watershed-response-guidelines.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/ethan-the-strategic-planner-product-manager-watershed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/ethan-the-strategic-planner-product-manager-watershed.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/noah-the-data-driven-decider-product-manager-watershed-response-guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/noah-the-data-driven-decider-product-manager-watershed-response-guidelines.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/noah-the-data-driven-decider-product-manager-watershed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/noah-the-data-driven-decider-product-manager-watershed.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/sophia-the-creative-storyteller-product-manager-watershed-response-guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/sophia-the-creative-storyteller-product-manager-watershed-response-guidelines.txt -------------------------------------------------------------------------------- /persona-generation/personas/jobs/product-manager-watershed/sophia-the-creative-storyteller-product-manager-watershed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/personas/jobs/product-manager-watershed/sophia-the-creative-storyteller-product-manager-watershed.txt -------------------------------------------------------------------------------- /persona-generation/resumes/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/resumes/resume.pdf -------------------------------------------------------------------------------- /persona-generation/resumes/text-files/resume.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/resumes/text-files/resume.txt -------------------------------------------------------------------------------- /persona-generation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/persona-generation/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejpshah/interview-pilot-ai/HEAD/requirements.txt --------------------------------------------------------------------------------