resume_guide / pages /1-πŸ€– Tutorial : ChatGPT.py
Lauredecaudin's picture
Rename pages/1-Using Chat GPT (beginner).py to pages/1-πŸ€– Tutorial : ChatGPT.py
42ca7a2 verified
raw
history blame
698 Bytes
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)