Coder Social home page Coder Social logo

dsdanielpark / open-interview Goto Github PK

View Code? Open in Web Editor NEW
12.0 2.0 1.0 3.97 MB

Open Interview automates technical Q&A generation from resumes, offers document and audio outputs, and customizable settings for efficient interview prep.

Home Page: https://pypi.org/project/open-interview/

License: Apache License 2.0

Python 83.99% Jupyter Notebook 16.01%
interview llm-application tech-interviews claude-interview gpt-interview voice-interview

open-interview's Introduction

Open Interview PyPI

Looking to practice mock interviews tailored to your resume and job description? Seeking an technical interview simulation? Dive in with the Python open-source package open-interview.

pip download Code style: black Downloads

openinterview.mp4

Transform your job interview preparation into an unparalleled journey with Open Interview, where the avant-garde artificial intelligence of OpenAI, Anthropic, and Google is meticulously tailored to forge your path to success. Here, every interaction is designed to sculpt your technical and personal narrative into perfection, mirroring the exigencies of your dream job.


Stellar Features ✨

  • 🌍 Universal Language Support: Emphasize the ability to accommodate all languages across the following features:
  • 🖋️ Dynamic Q&A Alchemy: Craft your arsenal with precision—generate nuanced technical interview Q&As distilled from the essence of your resume and the job description.
  • 📖 Document Genesis: Automate the creation of elegant Word documents (.docx), encapsulating your personalized interview Q&As for study and reflection.
  • 🎧 Sonic Refinement: Convert your Q&As into audio files, enabling auditory mastery and convenience for your preparatory rituals.
  • 🌐 Cosmos Customization: Navigate your preparation through customizable orbits—fine-tune preferences for job designation, interview cadence, lingua franca, and narrative complexity.

Commencing Voyage

Welcome to the nexus of your interview preparation odyssey.

Important

Token usage for experimental projects can be high, possibly exhausting paid API tokens quickly. A long-response prompt is now active. Please see the document below to adjust system and user prompts accordingly.

Prerequisites

  • Python >= 3.7: Ensure your command module is updated to version 3.7 or beyond.
  • 🔑 API Keys - OpenAI, Anthropic, Google: Secure your access to the galaxies of OpenAI, Anthropic, and Google, embarking with the keys to unlock the full spectrum of your potential.

Installation 📦

pip install open-interview
git clone https://github.com/dsdanielpark/open-interview.git
pip install -r requirements.txt

Quick Start

Open In Colab

Generate interview content using Claude or GPT models with minimal setup:

Using Claude

Important

Increasing the iteration argument can generate more QAs but may lead to duplicates and excessive token usage, as it's an experimental feature.

from openinterview import InterviewManager

claudeToken = "<your_claude_token>"
claude_interview_manager = InterviewManager(api_key=claudeToken, engine="Claude")

jd = """
The 'jd', 'resume', and other arguments
can accommodate extensive text.
"""

claude_interview_manager.generate_interview(
    jd=jd,
    resume="path/resume.pdf or path/resume.txt or long text.",
    position= "AI Researcher",
    interview_type="techQAsFromResume",
    language="English", # Any language you want
    max_sentence=5,
    output_dir="save/dirs",
    iteration=1, # [Caution] You can make more QAs, But it cost token very fastly.
)

Using GPT

import openai
from openinterview import InterviewManager

openai.api_key = "<your_openai_token>"
gpt_interview_manager = InterviewManager(api_key=openai.api_key, engine="GPT")

gpt_interview_manager.generate_interview(
    jd="This role demands a deep enthusiasm for AI development.", # Feasible for long text
    resume="path/resume.pdf or path/resume.txt or long text.",
    position= "AI Researcher",
    interview_type="techQAsFromResume",
    language="English", # Any language you want
    max_sentence=5,
    output_dir="save/dirs",
    iteration=1, # [Caution] You can make more QAs, But it cost token very fastly.
)

The interview_type arguments as follow:

  • generalQAs: Ask about technical and personal skills in-depth.
  • generalTechQAs: Ask basic professional questions related to the job.
  • techQAsFromResume: Focus on technical skills listed on the resume.
  • techQAsFromExperts: Questions based on interviewer's expertise.
  • techQAs: Questions based on both parties' experiences.
  • personalityQAs: Inquire about personal qualities.
  • reviewResume: Identify and suggest improvements for the resume.

Playing Random Question Audio

To randomly play question.mp3 files from a specified folder, create an instance of the RandomPlayer class with the folder path, and then invoke play_random_mp3:

from openinterview import RandomPlayer

p = RandomPlayer(directory="path/to/output", interval=120)  # Directory containing question.mp3 files
p.play_random_mp3()

Default plays randomly for 2 minutes. Press 'n' for next question, 'q' to quit.


Usage

For detailed examples, refer to the 📋Usage document for example code and prompting engineering or the 💻tutorial script.

  • OpenAI GPT: Use GptGenerator for GPT-based content generation.
  • Anthropic Claude: Use ClaudeGenerator for Claude-based interviews.

You can use LangChain, LangSmith, LangServe, and LangGraph for faster and more efficient coding and services. You can check few-shot prompt template in LangChain. Also, you can try faster RAG with Llama Index. However, this project is used for general and efficient search for other my private projects.


Contribution

For detailed guidance on contributions, please refer to the contribution guide. We appreciate your interest in contributing and look forward to your valuable input.

Thank you for supporting our project.

FAQ & Support

For questions and support, visit our FAQ and Issues pages. Contributors are welcome! Submit issues, feature suggestions, or pull requests. Reach out to the core maintainer, Daniel Park, for direct contributions or queries.

License ©️

Apache 2.0 license, 2024.



Inheritance through LangChain or BaseModel, prompt disambiguation, and refined prompt engineering were omitted for rapid development within one day.

open-interview's People

Contributors

dsdanielpark avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

brianjking

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.