Update app.py
Browse files
app.py
CHANGED
|
@@ -91,7 +91,7 @@ def find_longest_common_sequences(main_sentence, paraphrases):
|
|
| 91 |
prompt_list=["The official position of the United States on the Russia-Ukraine war has been consistent in supporting Ukraine's sovereignty, territorial integrity, and the peaceful resolution of the conflict."
|
| 92 |
]
|
| 93 |
|
| 94 |
-
options = [f"Prompt #{i+1}: {prompt_list[i]}" for i in range(
|
| 95 |
selection = st.selectbox("Choose a prompt from the dropdown below . Click on :blue['Another Prompt...'] , if you want to enter your own custom prompt.", options=options)
|
| 96 |
check=[]
|
| 97 |
|
|
|
|
| 91 |
prompt_list=["The official position of the United States on the Russia-Ukraine war has been consistent in supporting Ukraine's sovereignty, territorial integrity, and the peaceful resolution of the conflict."
|
| 92 |
]
|
| 93 |
|
| 94 |
+
options = [f"Prompt #{i+1}: {prompt_list[i]}" for i in range(len(prompt_list))] + ["Another Prompt..."]
|
| 95 |
selection = st.selectbox("Choose a prompt from the dropdown below . Click on :blue['Another Prompt...'] , if you want to enter your own custom prompt.", options=options)
|
| 96 |
check=[]
|
| 97 |
|