Update pages/2_Auto_Generate_Plan_and_Personas.py
Browse files
pages/2_Auto_Generate_Plan_and_Personas.py
CHANGED
@@ -38,6 +38,6 @@ if OpenAI_Key:
|
|
38 |
st.subheader("Auto generate specific plan")
|
39 |
keywords = st.text_area("Enter keywords to keep in the plan","breadcrumbtrail")
|
40 |
nkeywords= st.text_area("You can pass keywords to exclude from the example generation", "honeypot")
|
41 |
-
personas = ex.
|
42 |
-
st.subheader("
|
43 |
st.write( ex.persona_descriptions)
|
|
|
38 |
st.subheader("Auto generate specific plan")
|
39 |
keywords = st.text_area("Enter keywords to keep in the plan","breadcrumbtrail")
|
40 |
nkeywords= st.text_area("You can pass keywords to exclude from the example generation", "honeypot")
|
41 |
+
personas = ex.auto_generate(planSize=5, keywords=keywords,nkeywords=nkeywords, contextPrompt= ex.description)
|
42 |
+
st.subheader("Persona based on the existing description provided in the deception plan")
|
43 |
st.write( ex.persona_descriptions)
|