resume_guide / app.py
Lauredecaudin's picture
Update app.py
d59a1c0 verified
raw
history blame
No virus
2.01 kB
import streamlit as st
def intro():
st.title("Welcome to the AI-Powered CV Enhancer!")
st.subheader("Transform Your CV with the Power of GPTs and Large Language Models (LLMs)")
st.markdown("""
### Why this App?
In today's competitive job market, having a CV that stands out is more important than ever. But how can you make sure your CV not only showcases your skills and experiences, but also captures the attention of recruiters? That's where cutting-edge AI tools like GPTs and LLMs come into play.
This app is designed to guide you through enhancing your CV using the power of AI. Whether you're an individual looking to give your CV a fresh edge, or a developer interested in creating personalized AI bots to help you manage and present your career history, this app has something for you!
""")
st.markdown("""
### What will you find here?
This app is divided into several pages, each focusing on a specific aspect of using AI for CV enhancement:
- **Enhance your CV with ChatGPT:** Learn how to use a GPT-based CV Writer to improve your CV format, wording, and structure.
- **Enhance your CV with Gemini:** Explore how Gemini, the latest innovation in AI, can provide you with more advanced insights and improvements for your CV.
- **Go further exploring tools in Hugging Face:** Dive deeper into the various tools and models available in Hugging Face that can help take your CV to the next level.
- **For developers: Create your own bot that knows your CV with Hugging Face model and RAG:** A step-by-step guide for developers who want to build custom bots using Retrieval-Augmented Generation (RAG) to create intelligent, CV-aware assistants.
Whether you're here to simply enhance your CV or to explore how AI can change the way we present our professional lives, this app is your guide. Let’s get started!
""")
st.markdown("### Ready to begin? Use the sidebar to navigate through the different options.")
intro()