Spaces:
Sleeping
Sleeping
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) |