Spaces:
Sleeping
Sleeping
File size: 268 Bytes
5a544b9 |
1 2 3 4 5 6 7 8 9 |
import streamlit as st
from transformers import pipeline
# Arcane Sigil to Invoke the Streamlit Interface
st.title('Text to German Translator')
# Scroll of Text Input
user_input = st.text_area("Input your text in Polish, Czech, Slovene, English, or Bulgarian:", "")
|