Spaces:
Sleeping
Sleeping
File size: 855 Bytes
66e260e 1f8a38d 66e260e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#interview.py
from dotenv import load_dotenv
from components.functions import Functions
import streamlit as st
from components.prompts import interview as interview_prompt
def run_interview(llm,doc='',jd='', role=''):
load_dotenv()
interview = Functions()
st.write("Generate Customized Interview Questions.")
submit = st.button("Generate Interview Questions")
if submit:
if doc is not None:
with st.spinner("Generating..."):
response = interview.get_gemini_response(llm=llm,template=interview_prompt,doc=doc,input_text=jd,info=role)
st.subheader("Customized Interview Questions")
st.write(response)
else:
st.write("Please upload the resume")
if __name__ == "__main__":
interview = Functions()
run_interview(interview.model()) |