Threadbourne commited on
Commit
c15f07f
·
verified ·
1 Parent(s): 3538c07

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -1
src/streamlit_app.py CHANGED
@@ -41,7 +41,8 @@ synth_map = {
41
  "poet": df_poet
42
  }
43
 
44
- df_synth = synth_map['poet']
 
45
 
46
  WINDOW = 0.05 # 5% of conversation
47
 
 
41
  "poet": df_poet
42
  }
43
 
44
+ choice = st.selectbox("Select Synthetic Persona", synth_map.keys())
45
+ df_synth = synth_map[choice]
46
 
47
  WINDOW = 0.05 # 5% of conversation
48