-
Notifications
You must be signed in to change notification settings - Fork 14
/
run.py
421 lines (377 loc) · 20.9 KB
/
run.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import re
from io import BytesIO
from PIL import Image
import requests
import streamlit as st
import openai
import pandas as pd
from model import gpt_model
import core.functions as funcs
from data import settings
st.set_page_config(
page_title="AI 자소서",
page_icon="🤖",
layout="wide",
initial_sidebar_state="auto",
)
# Get the URL from the Streamlit app
url = st.experimental_get_query_params()
# Extract the access_token from the URL
if 'access_token' in url:
access_token = url['access_token'][0]
else:
access_token = None
if access_token:
if 'access_token' not in st.session_state:
st.session_state.access_token = access_token
profile_data = funcs.get_linked_profile_info(settings.PROFILE_URL, access_token)
settings.user_info[0]['fullname'] = profile_data['lastName']['localized']['ko_KR']+' '+profile_data['firstName']['localized']['ko_KR']
user_linkedin_headline = profile_data['headline']['localized']['ko_KR']
user_profile_photo_url = profile_data['profilePicture']['displayImage~']['elements'][-1]['identifiers'][0]['identifier']
user_profile_photo_url_mid = profile_data['profilePicture']['displayImage~']['elements'][1]['identifiers'][0]['identifier']
linkedin_profile_url = 'linkedin.com/in/'+profile_data['vanityName']
linkedin_profile_string = f'<div align="left">➡ <a href="https://{linkedin_profile_url}" target="_self">지원자 LinkedIn 프로필 바로가기</a> </div>'
response = requests.get(user_profile_photo_url)
st.session_state.linkedin_profile_img = Image.open(BytesIO(response.content))
else:
if 'access_token' in st.session_state:
access_token = st.session_state.access_token
st.session_state.table_names = funcs.table_names
st.session_state.models = ["gpt-4", "gpt-3.5-turbo"]
st.title('GPT-4 채용공고별 이력서&자소서 가이드')
st.caption('본 테스트 서비스는 사용자 분들의 개인정보를 절대 수집하지 않습니다. 소스코드는 깃허브에 공개되어 있습니다.')
with st.sidebar:
st.markdown("[**GPT 모델설정**]")
# st.markdown("[나의 OpenAI API keys 확인](https://platform.openai.com/account/api-keys)")
# st.text_input(
# "OpenAI API Keys 입력(필수) 👇",
# "",
# key="API_KEY"
# )
st.selectbox(
"🤖 GPT Model 선택",
st.session_state.models,
key="model_name"
)
st.slider(
'✒️ 창작성 수치 조절',
0.0, 1.0, 0.7,
help="1에 가까울 수록 창작성이 높습니다.",
key="temperature"
)
st.caption("-------------------------")
st.markdown("[**채용공고 설정**]")
st.selectbox(
"🔭 채용공고 사이트 선택",
st.session_state.table_names,
key="table_name"
)
st.caption("-------------------------")
if access_token:
col_lnb1, col_lnb2 = st.columns([2, 5])
with col_lnb1:
st.image(
st.session_state.linkedin_profile_img,
width=70
)
with col_lnb2:
st.markdown(f"**{settings.user_info[0]['fullname']}**")
st.caption(user_linkedin_headline)
st.caption(linkedin_profile_string, unsafe_allow_html=True)
else:
st.caption(f"🪢 [링크드인으로 로그인]({settings.FLASK_SERVER_URL}/login)")
st.caption(
"""
-------------------------
- 개발자: 이루오
- 이메일: comsa33@kakao.com
- 깃허브: https://github.com/comsa33/GPT4-AI-resume"""
)
model=st.session_state.model_name
temperature=st.session_state.temperature
# if st.session_state.API_KEY:
# openai.api_key = st.session_state.API_KEY
openai.api_key = settings.GPT_SECRET
with st.spinner('데이터 로딩 중...'):
df = funcs.get_data(st.session_state.table_name)
pattern = r"([^\[\]\(\)]+)(?:\[[^\[\]]*\])?(?:\([^\(\)]*\))?"
skills = list(set(map(lambda x: x.lower(), sum(df['skill_tags'].tolist(), []))))
with st.expander('📜 원하는 직무를 검색하고 자소서를 작성할 채용공고를 선택하세요'):
col1, _, col2 = st.columns([8, 1, 10])
with col1:
st.subheader("**채용공고 검색**")
col1_sub1, col1_sub2 = st.columns(2)
with col1_sub1:
st.text_input(
"💼 직무 검색",
help=":grey_question: 지원하고 싶은 직무를 입력하세요.",
key="position"
)
if st.session_state.position != "선택 없음":
temp_df = df[df['position'].str.contains(st.session_state.position, case=False)][['company_name', "position"]]
st.session_state.comp_names = ['선택 없음']+list(set(map(
lambda x: re.search(pattern, x).group(1).strip().lower(),
temp_df['company_name'].unique().tolist()
)))
else:
temp_df = df[['company_name', "position"]]
st.session_state.comp_names = ['선택 없음']+list(set(map(
lambda x: re.search(pattern, x).group(1).strip().lower(),
df['company_name'].unique().tolist()
)))
with col1_sub2:
st.selectbox(
"🏢 회사 검색",
st.session_state.comp_names,
help=":grey_question: 지원하고 싶은 회사명을 직접 선택하거나, 부분을 입력하면 자동완성 됩니다.",
key="comp_name"
)
if st.session_state.comp_name != "선택 없음":
temp_df = temp_df[temp_df['company_name'].str.contains(st.session_state.comp_name, case=False)]
st.caption("-------------------------")
st.caption('※ 지원하고자 하는 채용공고를 ✅ 선택하세요.')
temp_df['선택'] = [False]*len(temp_df)
temp_df = temp_df[['선택', 'company_name', 'position']]
edited_temp_df = st.experimental_data_editor(temp_df, use_container_width=True)
try:
# get index no of row whose '선택' column is True
st.session_state.jp_index = edited_temp_df[edited_temp_df['선택']==True].index.tolist()[0]
except IndexError:
pass
with col2:
st.subheader('**채용공고 상세정보**')
st.caption("-------------------------")
if len(edited_temp_df[edited_temp_df['선택']==True].index.tolist()) > 1:
st.caption('⚠️ 선택된 채용공고가 2개 이상입니다. 1개만 선택해주세요.')
elif len(edited_temp_df[edited_temp_df['선택']==True].index.tolist()) == 0:
st.caption('⚠️ 선택된 채용공고가 없습니다. 채용공고를 선택해주세요.')
else:
posting = df.iloc[int(st.session_state.jp_index)]
posting_url = settings.wanted_url_prefix+str(posting['id'])
company_name = posting['company_name']
position = posting['position']
requirements = funcs.replace_special_chars(posting['requirements'])
main_tasks = funcs.replace_special_chars(posting['main_tasks'])
intro = funcs.replace_special_chars(posting['intro'])
benefits = funcs.replace_special_chars(posting['benefits'])
preferred = funcs.replace_special_chars(posting['preferred_points'])
deadline = posting['due_time'] if posting['due_time'] else "상시 채용"
required_skills = ", ".join(list(map(lambda x: f'`{x}`', posting["skill_tags"]))) if posting["skill_tags"] else "제공된 정보 없음"
with st.container():
st.markdown(f'[채용 기업] **{company_name}**')
st.markdown(f'[채용 직무] **{position}**')
st.caption(intro)
st.caption(f'[지원 마감일] **{deadline}**')
tab1, tab2, tab3, tab4 = st.tabs(["주요업무", "자격요건", "우대사항", "복리후생"])
with tab1:
st.caption(f'{main_tasks}')
st.caption(f'[필요한 기술] \n**{required_skills}**')
with tab2:
st.caption(f'{requirements}')
with tab3:
st.caption(f'{preferred}')
with tab4:
st.caption(f'{benefits}')
application_string = f'<div align="right">➡ <a href="{posting_url}">지원하기 {st.session_state.table_name} 채용공고 링크</a> </div>'
st.markdown(application_string, unsafe_allow_html=True)
st.caption("-------------------------")
with st.expander('ℹ️ 지원자 정보를 자신의 정보에 맞게 수정하세요'):
st.caption(':arrow_down: 테이블의 셀을 더블클릭하면 정보를 수정할 수 있습니다.')
st.markdown('👤 **지원자 기본정보**')
info_df = pd.DataFrame(settings.user_info)
edited_info_df = st.experimental_data_editor(info_df, use_container_width=True)
st.caption("-------------------------")
st.markdown('🏫 **지원자 학력정보**')
edu_df = pd.DataFrame(settings.educations)
edited_edu_df = st.experimental_data_editor(edu_df, num_rows="dynamic", use_container_width=True)
st.caption("-------------------------")
my_skills = st.multiselect(
'⚙️ 지원자 스킬정보를 검색/입력하세요',
skills,
settings.user_skills,
help=":grey_question: 입력시 선택 박스에서 선택하세요."
)
st.caption("-------------------------")
col_user4, _, col_user5 = st.columns([8, 1, 10])
with col_user4:
st.markdown('🖥️ **지원자 경력정보**')
career_df = pd.DataFrame(settings.career_history)
edited_career_df = st.experimental_data_editor(career_df, num_rows="dynamic", use_container_width=True)
with col_user5:
my_achievements = st.text_area(
'✒️ 지원자 경력기술서 및 성과에 대해서 입력하세요',
settings.career_achievements,
height=140,
help=":grey_question: 자신의 역량을 드러낼 수 있는 성과를 입력하세요. 수치화하여 자세히 입력할 수록 결과물의 품질이 좋아집니다."
)
_, _, col_tip = st.columns([8, 1, 10])
with col_tip:
with st.expander('📝 경력기술서 잘 작성하는 방법'):
st.caption(settings.career_achievements_tips)
st.caption("-------------------------")
st.info('AI에게 가이드를 받아보세요', icon="🤖")
col_ai1, _, col_ai2= st.columns([20, 1, 10])
with col_ai1:
st.markdown('✏️ AI가 작성할 글의 주제를 직접 입력하거나 아래 주제 중 하나를 선택할 수 있습니다.')
st.text_input(
'',
key='writing_type1',
label_visibility="collapsed"
)
st.radio(
'',
('자기소개', '지원동기', '나의 장단점', '경력기술서', '이력서'),
key="writing_type2",
label_visibility="collapsed"
)
if not st.session_state.writing_type1:
subject = st.session_state.writing_type2
else:
subject = st.session_state.writing_type1
with col_ai2:
if subject in ['경력기술서', '이력서']:
st.session_state.minmax_disabled = True
else:
st.session_state.minmax_disabled = False
min_letter, max_letter = st.slider(
'✉️ 최소, 최대 글자수를 선택하세요',
100, 1000, (400, 600),
help=":grey_question: AI가 작성할 글의 최소, 최대 글자수를 선택하세요. 경력기술서, 이력서는 글자수 제한이 없습니다.",
disabled=st.session_state.minmax_disabled
)
st.radio(
"🔠 언어를 선택하세요",
('한국어', '영어'),
key="lang_choice"
)
lang1 = f"{st.session_state.lang_choice}와 markdown 스타일로 작성하세요."
lang2 = f"{st.session_state.lang_choice}로 작성하세요."
st.caption("-------------------------")
try:
jp_desc = f"""
- 회사이름: {company_name}
- 채용직무: {position}
- 직무기술: {requirements}
- 맡게 될 업무: {main_tasks}
- 회사에 대한 간단한 소개 및 정보: {intro}"""
except NameError:
jp_desc = ''
user_desc = f"""
- 나의 개인 정보: {edited_info_df.to_dict()}
- 나의 성향: {edited_info_df.to_dict()['mbti'][0]}
- 내 학력: {edited_edu_df.to_dict()}
- 내 보유 스킬: {my_skills}
- 내 경력 정보: {edited_career_df.to_dict()}
- 내 경력기술서 및 성과: {my_achievements}"""
if st.session_state.writing_type2 == "경력기술서":
prompt_msg = f"""회사에 이력서와 함께 제출할 {subject}에 대한 글을 작성하세요.
{settings.prompt_career} {lang1}"""
elif st.session_state.writing_type2 == "이력서":
prompt_msg = f"""회사에 이력서와 함께 제출할 {subject}에 대한 글을 작성하세요.
이력서 사진 주소는 "{user_profile_photo_url_mid}" 입니다.
{settings.prompt_resume} {lang1}"""
else:
prompt_msg = f"""회사에 이력서와 함께 제출할 {subject}에 대한 글을 작성하세요.
{min_letter}~{max_letter} 글자 사이로 작성하세요.
{settings.prompt_default} {lang1}"""
col_gpt1, col_gpt2 = st.columns([5, 10])
with col_gpt1:
with st.expander('🏢 지원하는 회사 정보를 더 확인해보세요.', expanded=True):
st.session_state.typed_text1 = ''
if st.button(f'{st.session_state.model_name}에게 물어보기'):
try:
st.subheader(company_name)
messages_1 = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": f"나는 회사에 지원하는데 너의 도움이 필요해. 회사의 채용정보는 다음과 같아. {jp_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 채용정보를 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"이 회사의 일하는 방식, 인재상, 문화에 대한 정보를 알려줘."}
]
response1 = gpt_model.get_response_from_model(
model, temperature, messages_1
)
placeholder1 = st.empty()
for chunk in response1:
if chunk['choices'][0]['delta'].get('content'):
st.session_state.typed_text1 += chunk['choices'][0]['delta'].get('content')
with placeholder1.container():
st.caption(st.session_state.typed_text1)
st.session_state.comp_info = st.session_state.typed_text1
except:
st.caption("⚠️ 회사의 채용정보를 선택하지 않았습니다.")
else:
try:
st.subheader(company_name)
st.caption(st.session_state.comp_info)
except:
st.caption(f"⚠️ 아직 확인된 정보가 없습니다. [물어보기] 버튼을 눌러주세요.")
with col_gpt2:
with st.expander('📃 지원자님의 정보를 바탕으로 채용공고에 맞는 글을 작성합니다.', expanded=True):
with st.container():
st.session_state.typed_text2 = ''
st.checkbox(f'{st.session_state.model_name}가 생성한 추가된 회사 정보를 포함합니다.', key='addition', value=False)
if st.button('글 생성하기'):
if jp_desc:
_, col_center, _ = st.columns([1, 10, 1])
with col_center:
st.caption("⏳ 글 작성이 끝나면 [다운로드 버튼]이 나타납니다.")
with st.container():
try:
if st.session_state.addition:
if st.session_state.comp_info:
messages_2 = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": f"나는 회사에 지원하는데 너의 도움이 필요해. 회사의 채용정보는 다음과 같아. {jp_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 채용정보를 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"이 회사의 일하는 방식, 인재상, 문화는 다음과 같아. {st.session_state.comp_info}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 정보를 참고하여 작성하겠습니다."},
{"role": "user", "content": f"나는 다음과 같은 이력을 가지고 있어. {user_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 이력을 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"{prompt_msg}"}
]
else:
with st.empty():
st.caption("⚠️ 생성한 추가 회사 정보가 없어 기본 채용정보만 사용합니다.")
messages_2 = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": f"나는 회사에 지원하는데 너의 도움이 필요해. 회사의 채용정보는 다음과 같아. {jp_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 채용정보를 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"나는 다음과 같은 이력을 가지고 있어. {user_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 이력을 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"{prompt_msg}"}
]
else:
messages_2 = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": f"나는 회사에 지원하는데 너의 도움이 필요해. 회사의 채용정보는 다음과 같아. {jp_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 채용정보를 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"나는 다음과 같은 이력을 가지고 있어. {user_desc}"},
{"role": "assistant", "content": "네, 알겠습니다. 위 이력을 기반으로 도와드리겠습니다."},
{"role": "user", "content": f"{prompt_msg}"}
]
response2 = gpt_model.get_response_from_model(
model, temperature, messages_2
)
title = f"### AI 추천 {subject}"
st.markdown(title)
placeholder2 = st.empty()
for chunk in response2:
if chunk['choices'][0]['delta'].get('content'):
st.session_state.typed_text2 += chunk['choices'][0]['delta'].get('content')
with placeholder2.container():
st.caption(st.session_state.typed_text2)
st.session_state.result_text = title + '\n' + st.session_state.typed_text2
st.download_button('결과물 다운로드', st.session_state.result_text)
except Exception as e:
st.write(e)
else:
st.caption("⚠️ 회사의 채용정보를 입력하지 않았습니다.")
else:
_, col_center, _ = st.columns([1, 10, 1])
with col_center:
try:
st.write(st.session_state.result_text)
st.download_button('결과물 다운로드', st.session_state.result_text)
st.caption(f"⚠️ 전에 작성하신 글입니다. 새로 [글 생성하기]를 하시면 이 글은 사라집니다. [다운로드 버튼]을 눌러 다운로드하세요.")
except AttributeError:
st.caption(f"⚠️ 아직 작성한 글이 없습니다. [글 생성하기]를 눌러 글을 작성하세요.")