File size: 698 Bytes
a73efa2
cb253fe
07849f3
a73efa2
 
d77921c
8410800
d77921c
 
 
cb253fe
9667d69
a73efa2
9f528f8
029c535
 
 
d77921c
029c535
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import streamlit as st 

st.title("πŸ€– Tutorial : use ChatGPT to enhance your resume")
st.subheader("Use a specific community GPT")
st.markdown("""
#### In order to use a custom GPT for enhancing your resume, follow the video instructions : 
- First connect to [ChatGPT](https://chatgpt.com/)
- Then Look into GPTs and search for "Resume" or "CV"
- Select an App, for example **CV Writer**
""")

video_file = open("assets/Chatgpt1.mp4", "rb")  
video_bytes = video_file.read()

st.video(video_bytes)

st.markdown("""
#### Then you should upload your current CV and ask for a review : """)

video_file2 = open("assets/chatgpt2.mp4", "rb")  
video_bytes2 = video_file2.read()

st.video(video_bytes2)