Spaces:
Sleeping
Sleeping
File size: 1,532 Bytes
91a91fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
from model import *
import streamlit as st
st.title("English to French Transaltor")
if 'input_text' not in st.session_state:
st.session_state['input_text'] = ''
if 'translated_lines' not in st.session_state:
st.session_state['translated_lines'] = []
input_text = st.text_area("Enter your English Text", value=st.session_state['input_text'], key="input_text")
if st.button("Translate"):
if input_text.strip():
lines = input_text.split("\n") # Split input text into lines
translated_lines = [] # List to store translated lines
for line in lines: # Loop through each line
translated_result = translator(line) # Pass each line to the translator
translated_text = translated_result[0]['translation_text'] # Get the translated text
translated_lines.append(translated_text) # Append translated text to the list
st.session_state['translated_lines'] = translated_lines
for translated_line in translated_lines:
st.write(translated_line) # Display each translated line separately
else:
st.write("Error! Please write something in the text area first!")
# Reset button logic
if st.button("Reset"):
if input_text.strip():
# Reset both input and translated text
st.session_state['input_text'] = ' '
st.session_state['translated_lines'] = []
else:
st.write("Error! Please write something in the text area first!")
# HOW TO RUN: streamlit run main.py |