Update app.py
Browse files
app.py
CHANGED
@@ -651,8 +651,8 @@ with gr.Blocks() as app:
|
|
651 |
with gr.Row():
|
652 |
#persona1=gr.Textbox(label="Bot 1 Persona",info="Your personallity can be be described as...")
|
653 |
#persona2=gr.Textbox(label="Bot 2 Persona",info="Your personallity can be be described as...")
|
654 |
-
persona1=gr.Dropdown(label="Bot 1 Persona",choices=[p for p in list(persona[
|
655 |
-
persona2=gr.Dropdown(label="Bot 2 Persona",choices=[p for p in list(persona[
|
656 |
|
657 |
sumbox=gr.Textbox("Summary", max_lines=100)
|
658 |
with gr.Column():
|
|
|
651 |
with gr.Row():
|
652 |
#persona1=gr.Textbox(label="Bot 1 Persona",info="Your personallity can be be described as...")
|
653 |
#persona2=gr.Textbox(label="Bot 2 Persona",info="Your personallity can be be described as...")
|
654 |
+
persona1=gr.Dropdown(label="Bot 1 Persona",choices=[p for p in list(persona['name'])])
|
655 |
+
persona2=gr.Dropdown(label="Bot 2 Persona",choices=[p for p in list(persona['name'])])
|
656 |
|
657 |
sumbox=gr.Textbox("Summary", max_lines=100)
|
658 |
with gr.Column():
|