deepakchawla-cb commited on
Commit
536e3e0
·
1 Parent(s): 0144580

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +78 -0
app.py CHANGED
@@ -1,6 +1,84 @@
1
  import gradio as gr
2
  import whisper
3
  from transformers import pipeline
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  model = whisper.load_model("base")
6
  sentiment_analysis = pipeline("sentiment-analysis", framework="pt", model="SamLowe/roberta-base-go_emotions")
 
1
  import gradio as gr
2
  import whisper
3
  from transformers import pipeline
4
+ import gradio as gr
5
+ import pandas as pd
6
+ from io import StringIO
7
+ import os,re
8
+ from langchain.llms import OpenAI
9
+ import pandas as pd
10
+
11
+ from langchain.document_loaders import UnstructuredPDFLoader
12
+
13
+ from langchain.prompts import PromptTemplate
14
+ from langchain.chains import LLMChain
15
+
16
+ from langchain.embeddings.openai import OpenAIEmbeddings
17
+ from langchain.vectorstores import Chroma
18
+ from langchain.text_splitter import CharacterTextSplitter
19
+ from langchain.llms import OpenAI
20
+ from langchain.chains import RetrievalQA
21
+ from langchain.document_loaders import TextLoader
22
+ from langchain.prompts import PromptTemplate
23
+
24
+ OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
25
+
26
+
27
+ def predict(file_obj):
28
+ loader = UnstructuredPDFLoader(file_obj.orig_name)
29
+ data = loader.load()
30
+ text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)
31
+ texts = text_splitter.split_documents(data)
32
+
33
+ embeddings = OpenAIEmbeddings()
34
+ docsearch = Chroma.from_documents(texts, embeddings)
35
+ qa = RetrievalQA.from_chain_type(llm=OpenAI(), chain_type="map_reduce", retriever=docsearch.as_retriever())
36
+
37
+ prompt_template = """Ignore all previous instructions. You are the world's best interviewer now. I am going to give you a resume of a candidate. Analyze the resume in 4 categories: Education, Work Experience, Projects and Internships, Others including interests, skills etc. Be simple, direct and commanding. Start with greeting the candidate with a 2 line relatable introduction emphasizing your superiority. Ask the candidate if they have a particular company and a role that they want to apply for.
38
+ If the candidate mentions either the company or the role, then ensure all questions that would be asked will are related to it.
39
+ If they don't mention either the company or role clearly, then ignore this and move to the next step.
40
+ Then, give a one line response acknowledging the candidate or if they are not clear about the company or the role then acknowledge positively that you would ask practice interview questions. Then ask the candidate topic would they like to start with. There are 4 categories of questions: educational background related, role related or technical questions, behavioral questions and HR or culture related questions. Here, the candidate will have to put an input.
41
+ Now you will have to ask interview questions. Ensure the questions are good have test the candidate's knowledge. You can choose between longer case based questions, hypothetical questions or academic questions etc. as you deem fit.
42
+ If the candidate types educational background related, ask it 3-4 most relevant questions related to their education based on their resume which are relevant for the role or the company.
43
+ If the candidate types role related or technical related then ask accordingly. Here you can even ask a coding question or test their technical understanding etc.
44
+ Similarly, do it for behavioral questions and HR or culture related questions. You can also be creative, funny, or show emotions at time.
45
+ {context}
46
+ Question: {question}
47
+ Answer in possible questions for interview:"""
48
+ PROMPT = PromptTemplate(
49
+ template=prompt_template, input_variables=["context", "question"]
50
+ )
51
+ chain_type_kwargs = {"prompt": PROMPT}
52
+ qa = RetrievalQA.from_chain_type(llm=OpenAI(), chain_type="stuff", retriever=docsearch.as_retriever(), chain_type_kwargs=chain_type_kwargs)
53
+ response = []
54
+ category = ["Technical", "Education Background", "Behaviour", "Project Specific"]
55
+ for value in category:
56
+
57
+ response.append({value:ai(qa, value)})
58
+
59
+ html_output = ""
60
+ for obj in response:
61
+ # Loop through the key-value pairs in the object
62
+ for key, value in obj.items():
63
+ value = re.sub(r'[\d\.]+', '', value)
64
+ value_list = value.strip().split('\n')
65
+ value_html = "<ol>"
66
+ for item in value_list:
67
+ value_html += "<li>{}</li>".format(item.strip())
68
+ value_html += "</ol>"
69
+ html_output += "<h2>{}</h2>".format(key)
70
+ html_output += value_html
71
+
72
+
73
+ return html_output
74
+
75
+ def ai(qa,category):
76
+ query = "please suggest "+ category +" interview questions"
77
+ data = list(filter(None, qa.run(query).split('\n')))
78
+ results = list(filter(lambda x: x != ' ', data))
79
+ results = "\n".join(results)
80
+
81
+ return results
82
 
83
  model = whisper.load_model("base")
84
  sentiment_analysis = pipeline("sentiment-analysis", framework="pt", model="SamLowe/roberta-base-go_emotions")