Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ with col1:
|
|
65 |
sentence = st.text_input(f"Enter sentence for input {i+1} (with <mask>):", key=f'text_input_{i}')
|
66 |
if sentence:
|
67 |
if language:
|
68 |
-
input_sentences[f'{
|
69 |
else:
|
70 |
warnings = []
|
71 |
warnings.append(f"Warning: Choose the language for input {i+1}")
|
|
|
65 |
sentence = st.text_input(f"Enter sentence for input {i+1} (with <mask>):", key=f'text_input_{i}')
|
66 |
if sentence:
|
67 |
if language:
|
68 |
+
input_sentences[f'{i+1}'] = (language.lower(), sentence)
|
69 |
else:
|
70 |
warnings = []
|
71 |
warnings.append(f"Warning: Choose the language for input {i+1}")
|