SciPIP / src /app_pages /homepage.py
lihuigu's picture
change prompt reader & web front
479f67b
raw
history blame
966 Bytes
import streamlit as st
from .locale import _
from .sidebar_components import get_sidebar_header, get_sidebar_supported_fields, get_help_us_improve, get_language_select
def generate_sidebar():
get_sidebar_header()
st.sidebar.markdown("Make AI research easy")
get_sidebar_supported_fields()
get_help_us_improve()
get_language_select()
def generate_mainpage():
st.title("🏠️ 💡SciPIP: An LLM-based Scientific Paper Idea Proposer")
# st.image("./assets/pic/logo.pdf")
st.header("Introduction")
st.markdown("SciPIP is a scientific paper idea generation tool powered by a large language model (LLM) designed to **assist researchers in quickly generating novel research ideas**. Based on the background information provided by the user, SciPIP first conducts a literature review to identify relevant research, then generates fresh ideas for potential studies.")
def home_page():
generate_sidebar()
generate_mainpage()