improve
Browse files
app.py
CHANGED
@@ -17,7 +17,6 @@ from dataclasses import dataclass
|
|
17 |
api_key = os.getenv("api_key")
|
18 |
|
19 |
data = []
|
20 |
-
user_input = ""
|
21 |
|
22 |
|
23 |
model = GroqModel("llama3-groq-70b-8192-tool-use-preview", api_key = api_key)
|
@@ -81,8 +80,9 @@ def ai_resume(data):
|
|
81 |
asyncio.run(resume_AI(data=data))
|
82 |
|
83 |
def main():
|
|
|
|
|
84 |
uploaded_file = st.file_uploader('Choose your .pdf file', type="pdf")
|
85 |
-
user_input = st.text_area(label="Enter job detail")
|
86 |
if uploaded_file is not None:
|
87 |
extract_data(uploaded_file)
|
88 |
binary_data = uploaded_file.getvalue()
|
|
|
17 |
api_key = os.getenv("api_key")
|
18 |
|
19 |
data = []
|
|
|
20 |
|
21 |
|
22 |
model = GroqModel("llama3-groq-70b-8192-tool-use-preview", api_key = api_key)
|
|
|
80 |
asyncio.run(resume_AI(data=data))
|
81 |
|
82 |
def main():
|
83 |
+
st.header("🚀 Elevate Your Job Applications with AI-Powered Tools")
|
84 |
+
st.title("Resume Builder & Cover Letter Assistant")
|
85 |
uploaded_file = st.file_uploader('Choose your .pdf file', type="pdf")
|
|
|
86 |
if uploaded_file is not None:
|
87 |
extract_data(uploaded_file)
|
88 |
binary_data = uploaded_file.getvalue()
|