Spaces:
Sleeping
Sleeping
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() |