File size: 9,562 Bytes
479f67b 88253fe 479f67b 88253fe 479f67b 88253fe 479f67b 88253fe 479f67b 88253fe 479f67b 88253fe 479f67b |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
import ast
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_language_select()
get_sidebar_header()
st.sidebar.markdown(
_("SciPIP will generate ideas step by step. The generation pipeline is the same as "
"one-click generation, while you can improve each part manually after SciPIP providing the manuscript.")
)
DONE_COLOR = "black"
UNDONE_COLOR = "gray"
# INPROGRESS_COLOR = "#4d9ee6"
INPROGRESS_COLOR = "black"
color_list = []
pipeline_list = [_("1. Input Background"), _("2. Brainstorming"), _("3. Extracting Entities"), _("4. Retrieving Related Works"),
_("5. Generating Initial Ideas"), _("6. Generating Final Ideas")]
for i in range(1, 8):
if st.session_state["global_state_step"] < i:
color_list.append(UNDONE_COLOR)
elif st.session_state["global_state_step"] == i:
color_list.append(INPROGRESS_COLOR)
elif st.session_state["global_state_step"] > i:
color_list.append(DONE_COLOR)
st.sidebar.header(_("Pipeline"), divider="red")
for i in range(6):
st.sidebar.markdown(f"<font color='{color_list[i]}'>{pipeline_list[i]}</font>", unsafe_allow_html=True)
# if st.session_state["global_state_step"] == i + 1:
# st.sidebar.progress(50, text=None)
get_sidebar_supported_fields()
get_help_us_improve()
def get_textarea_height(text_content):
if text_content is None:
return 100
lines = text_content.split("\n")
count = len(lines)
for line in lines:
count += len(line) // 96
return max(count * 23 + 20, 100) # 23 is a magic number
def generate_mainpage(backend):
st.title(_("π¦ Step-by-step Generation"))
st.header(_("π³ Background"))
with st.form('background_form') as bg_form:
background = st.session_state.get("background", "")
background = st.text_area("Input your field background", background, placeholder="Input your field background", height=200, label_visibility="collapsed")
cols = st.columns(4)
def click_demo_i(i):
st.session_state["background"] = backend.get_demo_i(i)
for i, col in enumerate(cols):
col.form_submit_button(_("Example") + f" {i+1}", use_container_width=True, on_click=click_demo_i, args=(i,))
col1, col2 = st.columns([2, 20])
submitted = col1.form_submit_button(_("Submit"), type="primary")
if submitted:
st.session_state["global_state_step"] = 2.0
with st.spinner(text="Brainstorming..."):
st.session_state["brainstorms"] = backend.background2brainstorm_callback(background)
# st.session_state["brainstorms"] = "Test text"
st.session_state["brainstorms_expand"] = True
st.session_state["global_state_step"] = 2.5
## Brainstorms
st.header(_("π» Brainstorms"))
with st.expander("", expanded=st.session_state.get("brainstorms_expand", False)):
# st.write("<div class='myclass'>")
col1, col2 = st.columns(2)
widget_height = get_textarea_height(st.session_state.get("brainstorms", ""))
brainstorms = col1.text_area(label="brainstorms", value=st.session_state.get("brainstorms", ""),
label_visibility="collapsed", height=widget_height)
st.session_state["brainstorms"] = brainstorms
if brainstorms:
col2.markdown(f"{brainstorms}")
else:
col2.markdown(_("Please input the brainstorms on the left."))
# st.write("</div>")
col1, col2 = st.columns([2, 20])
submitted = col1.button(_("Submit"), type="primary")
if submitted:
st.session_state["global_state_step"] = 3.0
with st.spinner(text="Extracting entities..."):
st.session_state["entities"] = backend.brainstorm2entities_callback(background, brainstorms)
# st.session_state["entities"] = "entities"
st.session_state["global_state_step"] = 3.5
st.session_state["entities_expand"] = True
## Entities
st.header(_("π± Extracted Entities"))
with st.expander("", expanded=st.session_state.get("entities_expand", False)):
## pills
def update_entities():
return
ori_entities = st.session_state.get("entities", [])
entities_updated = st.session_state.get("entities_updated", ori_entities)
entities_updated = st.pills(label="entities", options=ori_entities, selection_mode="multi",
default=ori_entities, label_visibility="collapsed", on_change=update_entities)
st.session_state["entities_updated"] = entities_updated
submitted = st.button(_("Submit"), key="entities_button", type="primary")
if submitted:
st.session_state["global_state_step"] = 4.0
with st.spinner(text="Retrieving related works..."):
st.session_state["related_works"], st.session_state["related_works_intact"] = backend.entities2literature_callback(background, entities_updated)
st.session_state["related_works_use_state"] = [True] * len(st.session_state["related_works"])
st.session_state["global_state_step"] = 4.5
st.session_state["related_works_expand"] = True
## Retrieved related works
st.header(_("π Retrieved Related Works"))
with st.expander("", expanded=st.session_state.get("related_works_expand", False)):
related_works = st.session_state.get("related_works", [])
for i, rw in enumerate(related_works):
checked = st.checkbox(rw, value=st.session_state.get("related_works_use_state")[i])
st.session_state.get("related_works_use_state")[i] = checked
submitted = st.button(_("Submit"), key="related_works_button", type="primary")
if submitted:
st.session_state["global_state_step"] = 5.0
with st.spinner(text="Generating initial ideas..."):
st.session_state["selected_related_works_intact"] = []
for s, p in zip(st.session_state.get("related_works_use_state"), st.session_state["related_works_intact"]):
if s:
st.session_state["selected_related_works_intact"].append(p)
res = backend.literature2initial_ideas_callback(background, brainstorms, st.session_state["selected_related_works_intact"])
st.session_state["initial_ideas"] = res[0]
st.session_state["final_ideas"] = res[1]
# st.session_state["initial_ideas"] = "initial ideas"
st.session_state["global_state_step"] = 5.5
st.session_state["initial_ideas_expand"] = True
## Initial ideas
st.header(_("πΌ Generated Initial Ideas"))
with st.expander("", expanded=st.session_state.get("initial_ideas_expand", False)):
col1, col2 = st.columns(2, )
widget_height = get_textarea_height(st.session_state.get("initial_ideas", ""))
initial_ideas = col1.text_area(label="initial_ideas", value=st.session_state.get("initial_ideas", ""),
label_visibility="collapsed", height=widget_height)
if initial_ideas:
col2.markdown(f"{initial_ideas}")
else:
col2.markdown(_("Please input the initial ideas on the left."))
submitted = col1.button(_("Submit"), key="initial_ideas_button", type="primary")
if submitted:
st.session_state["global_state_step"] = 6.0
with st.spinner(text="Generating final ideas..."):
st.session_state["final_ideas"] = backend.initial2final_callback(initial_ideas, st.session_state["final_ideas"])
# st.session_state["final_ideas"] = "final ideas"
st.session_state["global_state_step"] = 6.5
st.session_state["final_ideas_expand"] = True
## Final ideas
st.header(_("πΈ Generated Final Ideas"))
with st.expander("", expanded=st.session_state.get("final_ideas_expand", False)):
col1, col2 = st.columns(2, )
widget_height = get_textarea_height(st.session_state.get("final_ideas", ""))
user_input = col1.text_area(label="final_ideas", value=st.session_state.get("final_ideas", ""),
label_visibility="collapsed", height=widget_height)
if user_input:
col2.markdown(f"{user_input}")
else:
col2.markdown(_("Please input the final ideas on the left."))
submitted = col1.button(_("Submit"), key="final_ideas_button", type="primary")
def step_by_step_generation(backend):
## Pipeline global state
# 1.0: Input background is in progress
# 2.0: Brainstorming is in progress
# 2.5 Brainstorming is finished
# 3.0: Extracting entities is in progress
# 3.5 Extracting entities is finished
# 4.0: Retrieving literature is in progress
# 4.5 Retrieving ideas is finished
# 5.0: Generating initial ideas is in progress
# 5.5 Generating initial ideas is finished
# 6.0: Generating final ideas is in progress
# 6.5 Generating final ideas is finished
if "global_state_step" not in st.session_state:
st.session_state["global_state_step"] = 1.0
# backend = button_interface.Backend()
generate_mainpage(backend)
generate_sidebar()
|