Spaces:
Sleeping
Sleeping
File size: 1,359 Bytes
5cee749 99691a1 0d07918 daf8b2f 99691a1 31eb75d 99691a1 5cee749 99691a1 74315df daf8b2f 99691a1 6a5c5fd c9893fd 99691a1 57e2ce0 699be8a 74b8313 120ca68 0c2853d 31eb75d fdb52c6 5cee749 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import streamlit as st
from langchain_community.llms import OpenAI
from langchain_google_genai import ChatGoogleGenerativeAI
# Page configuration
st.set_page_config(
page_title="Job Description Analysis",
page_icon=":briefcase:",
layout="wide",
)
def main():
st.sidebar.title("Navigation")
st.sidebar.markdown("Select a page to view")
# Navigation options
page = st.sidebar.radio("Go to", ["Home", "Job Description Analysis", "Interview Preparation","Projects Suggestion","Projects Guide","Profile Detail"])
if page == "Home":
st.title("Welcome to Job Description Analysis App")
st.write("Use the navigation menu to select different pages of the application.")
elif page == "Job Description Analysis":
from Job_description_analysis import app
app()
elif page == "About":
import About
About.app()
elif page == "Interview Preparation":
from Interview_preparation import app
app()
elif page == "Projects Suggestion":
import Project_suggestions
Project_suggestions.app()
elif page == "Projects Guide":
import Project_Guide
Project_Guide.app()
elif page == "Profile Detail":
import Profile_Detail
Profile_Detail.app()
if __name__ == "__main__":
main() |