Skip to content

Commit

Permalink
update experimental SSA code
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVinhLuong102 committed Dec 4, 2023
1 parent 0a535e0 commit d528791
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openssa/contrib/streamlit_ssa_prob_solver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def run(self):
st.write("__EXPERT HEURISTICS__")

if recorded_expert_heuristics := speech_to_text(
start_prompt="Expert Problem-Solving Heuristics: 🎤 here or ⌨️ below",
start_prompt="Expert Heuristics: 🎤 here or ⌨️ below",
stop_prompt="Stop Recording",
just_once=True,
use_container_width=False,
Expand All @@ -350,16 +350,16 @@ def run(self):
)

self.expert_heuristics: str = st.text_area(
label="Expert Problem-Solving Heuristics",
label="Expert Heuristics",
value=self.expert_heuristics,
height=10,
max_chars=None,
key=None,
help="Expert Problem-Solving Heuristics (recorded or typed)",
help="Expert Heuristics (recorded or typed)",
on_change=None,
args=None,
kwargs=None,
placeholder="Expert Problem-Solving Heuristics (recorded or typed)",
placeholder="Expert Heuristics (recorded or typed)",
disabled=False,
label_visibility="collapsed",
)
Expand Down

0 comments on commit d528791

Please sign in to comment.