Spaces:
Runtime error
Runtime error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -1
src/streamlit_app.py
CHANGED
|
@@ -41,7 +41,8 @@ synth_map = {
|
|
| 41 |
"poet": df_poet
|
| 42 |
}
|
| 43 |
|
| 44 |
-
|
|
|
|
| 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 |
|