resume_guide / app.py
Lauredecaudin's picture
Update app.py
cb963d6 verified
import streamlit as st
def intro():
st.title("πŸš€ Welcome to the AI-Powered CV Enhancer!")
st.markdown("""
#### πŸ’ΈπŸ’ΈπŸ’Έ All the tools presented here are free to use
""")
st.markdown("""
---
### ➑️ What will you find here?
##### Insights :
*Gender Gap and why pushing women to use AI tools is important*
- πŸ“Š **Statistics on Gender Gap in STEM Professions:** Discover key stats on gender inequality in STEM fields and learn how AI can help address these issues.
---
""")
st.markdown("""
##### Tools for enhancing your CV :
**Beginer**:
*The easy way to improve your CV*
- πŸ€– **Enhance your CV with ChatGPT:** How to use ChatGPT to improve your CV format, wording, and structure.
- 🧠 **Enhance your CV with Gemini:** Explore how Gemini, the AI from Google, can provide you with more advanced insights and improvements for your CV.
**Advanced** :
*Use more advanced tools*
- πŸ€— **Enhance your CV with Hugging Face Spaces:** Dive deeper into the spaces available at HuggingFace that can help take your CV to the next level.
- πŸ’¬ **CV Q&A Chatbot:** Upload your CV and discuss with it directly in this app
**For Developpers** :
*Build your own chatbot like a pro*
- 🎁 **Bonus: Chatbot Implementation Tutorial**: A tutorial for developpers to learn how to develop your own CV Q&A chatbot.
""")
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("---")
st.markdown("### Ready to begin? Use the sidebar to navigate through the different options.")
st.markdown("---")
intro()