voidbyname commited on
Commit
1a06de0
·
1 Parent(s): 603c081

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -10,13 +10,13 @@ from langchain.chains import LLMChain
10
  os.environ['OPENAI_API_KEY'] = apikey
11
 
12
  #APP FRAMEWORK
13
- st.title('🦜️🔗 RESUME GPT CREATOR')
14
- prompt = st.text_input("Enter the JD on which you want to generate Resume")
15
 
16
  #PROMPT RESUME TEMPLATE
17
  resume_template = PromptTemplate(
18
  input_variables = ['topic'],
19
- template='write me a resume about the Job Discription of {topic}'
20
  )
21
 
22
  # #COVER LETTER RESUME
 
10
  os.environ['OPENAI_API_KEY'] = apikey
11
 
12
  #APP FRAMEWORK
13
+ st.title('🦜️🔗 COVER-LETTER GPT CREATOR')
14
+ prompt = st.text_input("Enter the JD on which you want to generate Cover Letter")
15
 
16
  #PROMPT RESUME TEMPLATE
17
  resume_template = PromptTemplate(
18
  input_variables = ['topic'],
19
+ template='write me a Cover Letter about the Job Discription of {topic}'
20
  )
21
 
22
  # #COVER LETTER RESUME