Spaces:
Sleeping
Sleeping
Update Project_suggestions.py
Browse files- Project_suggestions.py +4 -0
Project_suggestions.py
CHANGED
@@ -54,6 +54,9 @@ def app():
|
|
54 |
|
55 |
if 'analysis' in st.session_state:
|
56 |
analysis = st.session_state['analysis']
|
|
|
|
|
|
|
57 |
st.write("Job Description Analysis:")
|
58 |
st.text(analysis)
|
59 |
|
@@ -71,6 +74,7 @@ def app():
|
|
71 |
domain = st.text_input("Optional: Domain")
|
72 |
industry = st.text_input("Optional: Industry")
|
73 |
|
|
|
74 |
# Suggest projects based on analysis
|
75 |
if st.button("Suggest Projects"):
|
76 |
projects = suggest_projects(skills, roles, topics, level, difficulty,model, domain, industry)
|
|
|
54 |
|
55 |
if 'analysis' in st.session_state:
|
56 |
analysis = st.session_state['analysis']
|
57 |
+
st.header("Select AI:")
|
58 |
+
model = st.radio("Model", [ "Gemini","Open AI",])
|
59 |
+
st.write("Selected option:", model)
|
60 |
st.write("Job Description Analysis:")
|
61 |
st.text(analysis)
|
62 |
|
|
|
74 |
domain = st.text_input("Optional: Domain")
|
75 |
industry = st.text_input("Optional: Industry")
|
76 |
|
77 |
+
|
78 |
# Suggest projects based on analysis
|
79 |
if st.button("Suggest Projects"):
|
80 |
projects = suggest_projects(skills, roles, topics, level, difficulty,model, domain, industry)
|